環境
- Rails 3.2.16
- ruby 1.9.3p484
- gem 1.8.23
- rake 10.1.1
インストール手順
$ rails new bootstrap_test
$ cd bootstrap_test
$ rails g scaffold book title:string value:integer
$ rake db:migrate
$ vim Gemfile
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'less-rails'
gem 'twitter-bootstrap-rails'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer', :platforms => :ruby
gem 'uglifier', '>= 1.0.3'
end
$ bundle install
$ rails g bootstrap:install
$ rails g bootstrap:layout application fluid
$ rails s