2015-02-26 15:47:56 +00:00
|
|
|
(function() {
|
2015-03-12 16:03:59 +00:00
|
|
|
var _;
|
|
|
|
|
|
|
|
_ = require('lodash');
|
|
|
|
|
2015-02-26 15:47:56 +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-02-26 15:47:56 +00:00
|
|
|
signature: 'application',
|
|
|
|
parameter: 'application',
|
2015-03-23 12:17:55 +00:00
|
|
|
description: 'application name',
|
2015-03-12 16:03:59 +00:00
|
|
|
alias: ['a', 'app']
|
2015-02-26 15:47:56 +00:00
|
|
|
};
|
|
|
|
|
2015-03-12 16:03:59 +00:00
|
|
|
exports.application = _.defaults({
|
|
|
|
required: 'You have to specify an application'
|
|
|
|
}, exports.optionalApplication);
|
|
|
|
|
2015-02-26 15:47:56 +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'
|
|
|
|
};
|
|
|
|
|
|
|
|
}).call(this);
|