2017-07-27 11:07:05 +00:00
|
|
|
// Generated by CoffeeScript 1.12.7
|
2016-01-11 19:58:35 +00:00
|
|
|
|
|
|
|
/*
|
2017-06-14 21:20:15 +00:00
|
|
|
Copyright 2016-2017 Resin.io
|
2016-01-11 19:58:35 +00:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
2017-03-22 09:46:06 +00:00
|
|
|
var _, capitano, nplugm, patterns;
|
2016-01-11 19:58:35 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
nplugm = require('nplugm');
|
2015-08-19 15:21:08 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
_ = require('lodash');
|
2015-08-19 15:21:08 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
capitano = require('capitano');
|
2015-08-19 15:21:08 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
patterns = require('./patterns');
|
2015-08-19 15:21:08 +00:00
|
|
|
|
2017-03-22 09:46:06 +00:00
|
|
|
exports.register = function(regex) {
|
|
|
|
return nplugm.list(regex).map(function(plugin) {
|
|
|
|
var command;
|
|
|
|
command = require(plugin);
|
|
|
|
command.plugin = true;
|
|
|
|
if (!_.isArray(command)) {
|
|
|
|
return capitano.command(command);
|
|
|
|
}
|
|
|
|
return _.each(command, capitano.command);
|
|
|
|
})["catch"](function(error) {
|
|
|
|
return patterns.printErrorMessage(error.message);
|
|
|
|
});
|
|
|
|
};
|