Class: Bently::GuardLivereload
- Inherits:
-
RailsRecipe
- Object
- Recipe
- RubyRecipe
- RailsRecipe
- Bently::GuardLivereload
- Defined in:
- lib/bently/recipe/guard-livereload.rb
Constant Summary
Constants inherited from RubyRecipe
Instance Method Summary collapse
-
#initialize ⇒ GuardLivereload
constructor
A new instance of GuardLivereload.
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 ⇒ GuardLivereload
Returns a new instance of GuardLivereload.
7 8 9 10 11 12 13 |
# File 'lib/bently/recipe/guard-livereload.rb', line 7 def initialize gem_group :development do gem 'guard-livereload' end bundle run 'guard init livereload' end |