2015-03-12 16:03:59 +00:00
|
|
|
_ = require('lodash')
|
|
|
|
|
2015-01-15 17:10:14 +00:00
|
|
|
exports.yes =
|
|
|
|
signature: 'yes'
|
|
|
|
description: 'confirm non interactively'
|
|
|
|
boolean: true
|
|
|
|
alias: 'y'
|
|
|
|
|
2015-03-12 16:03:59 +00:00
|
|
|
exports.optionalApplication =
|
2015-01-15 17:10:14 +00:00
|
|
|
signature: 'application'
|
|
|
|
parameter: 'application'
|
2015-03-23 12:17:55 +00:00
|
|
|
description: 'application name'
|
2015-01-15 17:10:14 +00:00
|
|
|
alias: [ 'a', 'app' ]
|
2015-03-12 16:03:59 +00:00
|
|
|
|
|
|
|
exports.application = _.defaults
|
2015-01-15 17:10:14 +00:00
|
|
|
required: 'You have to specify an application'
|
2015-03-12 16:03:59 +00:00
|
|
|
, exports.optionalApplication
|
2015-02-03 18:52:17 +00:00
|
|
|
|
2015-05-28 16:32:08 +00:00
|
|
|
exports.optionalDevice =
|
|
|
|
signature: 'device'
|
|
|
|
parameter: 'device'
|
|
|
|
description: 'device name'
|
|
|
|
alias: 'd'
|
|
|
|
|
|
|
|
exports.booleanDevice =
|
|
|
|
signature: 'device'
|
|
|
|
description: 'device name'
|
|
|
|
boolean: true
|
|
|
|
alias: 'd'
|
|
|
|
|
2015-02-03 18:52:17 +00:00
|
|
|
exports.network =
|
|
|
|
signature: 'network'
|
|
|
|
parameter: 'network'
|
|
|
|
description: 'network type'
|
|
|
|
alias: 'n'
|
|
|
|
|
|
|
|
exports.wifiSsid =
|
|
|
|
signature: 'ssid'
|
|
|
|
parameter: 'ssid'
|
|
|
|
description: 'wifi ssid, if network is wifi'
|
|
|
|
alias: 's'
|
|
|
|
|
|
|
|
exports.wifiKey =
|
|
|
|
signature: 'key'
|
|
|
|
parameter: 'key'
|
|
|
|
description: 'wifi key, if network is wifi'
|
|
|
|
alias: 'k'
|