1
0
mirror of https://github.com/JuanCanham/HackMyResume.git synced 2025-07-13 13:41:07 +01:00

Refactor verbs to CoffeeScript classes.

Retire Resig's class implementation.
This commit is contained in:
hacksalot
2016-02-01 23:16:49 -05:00
parent fd39cc9fd9
commit 63a0c78fc5
14 changed files with 123 additions and 69 deletions

View File

@ -39,10 +39,10 @@ verifyTheme = null
loadTheme = null
###* An invokable resume generation command. ###
BuildVerb = module.exports = Verb.extend
module.exports = class BuildVerb extends Verb
###* Create a new build verb. ###
init: () -> @_super 'build', _build
constructor: () -> super 'build', _build