Class: Bently::RspecRails
- Inherits:
-
RailsRecipe
- Object
- Recipe
- RubyRecipe
- RailsRecipe
- Bently::RspecRails
- Defined in:
- lib/bently/recipe/rspec-rails.rb
Constant Summary
Constants inherited from RubyRecipe
Instance Method Summary collapse
-
#initialize ⇒ RspecRails
constructor
A new instance of RspecRails.
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 ⇒ RspecRails
Returns a new instance of RspecRails.
10 11 12 13 14 15 16 |
# File 'lib/bently/recipe/rspec-rails.rb', line 10 def initialize gem_group :test, :development do gem "rspec-rails", "~> 2.0" end bundle generate 'rspec:install' end |