UNPKG

generator-steroids

Version:
60 lines (46 loc) 2.01 kB
path = require "path" yeoman = require "yeoman-generator" chalk = require "chalk" Bower = require "../../lib/Bower" module.exports = class NgResourceGenerator extends yeoman.generators.NamedBase constructor: (args, options, config) -> yeoman.generators.Base.apply this, arguments @default = args[0] @on "end", -> @log.writeln( """ \n#{chalk.bold("ng-resource")} created! Set the location of your app to "http://localhost/views/#{@resourceName}/index.html" and then modify the data in "www/data/#{@resourceName}.json" In the meantime, we'll install the following Bower dependencies: """ ) bower = new Bower bower.install([ 'angular#1.0.7', 'underscore#1.5.1', 'restangular#1.0.7' ], { save: true }); askFor: -> cb = @async() # select base filename for example prompts = [ name: "resourceName" message: "What would you like to name your ng-resource?" default: @default validate: (input)-> if input.indexOf(" ") is -1 and /^[a-z]/.test(input) return true else return "Resource name must start with lowercase letter and not contain whitespace." ] @prompt prompts, (props) => @resourceName = props.resourceName cb() app: -> @mkdir "app/controllers" @mkdir "app/models" @mkdir "app/views" @copy "app/views/layouts/resourceName.html", "app/views/layouts/#{@resourceName}.html" @copy "www/vendor/angular-hammer/angular-hammer.js", "www/vendor/angular-hammer/angular-hammer.js" @template "app/controllers/_resourceName.js", "app/controllers/#{@resourceName}.js" @template "app/models/_resourceName.js", "app/models/#{@resourceName}.js" @template "app/views/resourceName/_index.html", "app/views/#{@resourceName}/index.html" @template "app/views/resourceName/_show.html", "app/views/#{@resourceName}/show.html" @template "www/data/_resourceName.json", "www/data/#{@resourceName}.json"