Class: Bently::JasmineRails
- Inherits:
-
RailsRecipe
- Object
- Recipe
- RubyRecipe
- RailsRecipe
- Bently::JasmineRails
- Defined in:
- lib/bently/recipe/jasmine-rails.rb
Constant Summary
Constants inherited from RubyRecipe
Instance Method Summary collapse
-
#initialize ⇒ JasmineRails
constructor
A new instance of JasmineRails.
Methods inherited from RailsRecipe
Methods inherited from RubyRecipe
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
#initialize ⇒ JasmineRails
Returns a new instance of JasmineRails.
9 10 11 12 13 14 15 16 17 |
# File 'lib/bently/recipe/jasmine-rails.rb', line 9 def initialize requirement '`brew install qt` for the headless webkit widget' gem_group :test, :development do gem 'jasmine-rails' end bundle create 'spec/javascripts/support/jasmine.yml', template('jasmine.yml') todo 'Modify spec/javascripts/support/jasmine.yml as necessary.' end |