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.

Rails4 + bootstrap3

Posted at

環境

  • Mac OS X 10.9.4 Darwin
  • Rails 4.1.5
  • Ruby 2.1.2p95
  • gem 2.2.2
  • bundle 1.7.2
  • rbenv 0.4.0
  • rake 10.3.2

インストール手順

$ rails new bootstrap_test
$ cd bootstrap_test
$ rails g scaffold book title:string value:integer
$ rake db:migrate
$ vim Gemfile

# Twitter Bootstrap
gem 'twitter-bootstrap-rails'
gem "therubyracer"
gem "less-rails"

$ 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?