7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Rails + bootstrap

Last updated at Posted at 2014-01-24

環境

  • 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

7
7
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?