pomy
Version:
Based on the concept of a project object model (POM), POMY can manage a project's build, reporting and documentation from a central piece of information.
12 lines • 411 B
JavaScript
var fs = require("fs"),
path = require("path");
module.exports = function(o) {
if ("string" != typeof o) throw new Error("Missing completion type");
var e = path.join(__dirname, "../completion", o);
try {
console.log(fs.readFileSync(e, "utf8")), process.exit(0)
} catch (t) {
console.log('echo "pomy autocompletion rules for', "'" + o + "'", 'not found"'), process.exit(5)
}
};
;