Top Level Namespace
Defined Under Namespace
Constant Summary collapse
- ADOBE_CRX_VERSION =
"0.0.4"
Instance Method Summary collapse
Instance Method Details
#validate_global_options(command, options) ⇒ Object
14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/adobe_crx/cli.rb', line 14 def (command, ) if !.host .host = ask 'CRX host:' end if !.port .port = ask 'CRX port:' else .port = .port.to_i end if !.username .username = ask 'CRX username:' end if !.password .password = password('CRX password:') end end |