Class: Bently::GuardCoffeescript

Inherits:
RailsRecipe show all
Defined in:
lib/bently/recipe/guard-coffeescript.rb

Constant Summary

Constants inherited from RubyRecipe

RubyRecipe::GEMFILE

Instance Method Summary collapse

Methods inherited from RailsRecipe

#generate, #migrate

Methods inherited from RubyRecipe

#bundle, #gem, #gem_group

Methods inherited from Recipe

#append, breakdown, category, #code, #create, description, homepage, #insert, #modify, #operate, #operations, #prepend, #remove, #requirement, #run, #say, title, #todo, #usage, version, #warn

Constructor Details

#initializeGuardCoffeescript

Returns a new instance of GuardCoffeescript.



8
9
10
11
12
13
14
# File 'lib/bently/recipe/guard-coffeescript.rb', line 8

def initialize
  gem_group :development do
    gem 'guard-coffeescript'
  end
  bundle
  run 'guard init coffeescript'
end