1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2024-11-05 09:56:22 +00:00
This commit is contained in:
hacksalot 2016-01-11 08:21:06 -05:00
parent b224c8939b
commit 376e720f4b

View File

@ -1,9 +1,9 @@
/**
Implementation of the 'generate' verb for HackMyResume.
Implementation of the 'build' verb for HackMyResume.
@module generate.js
@license MIT. See LICENSE.md for details.
*/
// TODO: EventEmitter
(function() {
@ -27,11 +27,15 @@ Implementation of the 'generate' verb for HackMyResume.
, extend = require('../utils/extend')
, chalk = require('chalk')
, pad = require('string-padding')
, Verb = require('../verbs/verb')
, _err, _log, rez;
, Verb = require('../verbs/verb');
var _err, _log, rez;
/**
An invokable resume generation command.
*/
var BuildVerb = module.exports = Verb.extend({
init: function() {
@ -44,6 +48,8 @@ Implementation of the 'generate' verb for HackMyResume.
});
/**
Given a source resume in FRESH or JRS format, a destination resume path, and a
theme file, generate 0..N resumes in the desired formats.