Class: Bently::TwitterBootstrapRails

Inherits:
RailsRecipe show all
Defined in:
lib/bently/recipe/twitter-bootstrap-rails.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

#initializeTwitterBootstrapRails

Returns a new instance of TwitterBootstrapRails.



10
11
12
13
14
15
16
# File 'lib/bently/recipe/twitter-bootstrap-rails.rb', line 10

def initialize
  gem 'therubyracer'
  gem 'less-rails'
  gem 'twitter-bootstrap-rails', '~> 2.2.0'
  bundle
  generate 'bootstrap:install less'
end