UNPKG

hubot-dolar-blue

Version:

Displays dolar blue values for the argentinian market from different sources, including dolarblue.net.

12 lines (11 loc) 392 B
fs = require 'fs' path = require 'path' module.exports = (robot, scripts) -> scriptsPath = path.resolve(__dirname, 'src') fs.exists scriptsPath, (exists) -> if exists for script in fs.readdirSync(scriptsPath) if scripts? and '*' not in scripts robot.loadFile(scriptsPath, script) if script in scripts else robot.loadFile(scriptsPath, script)