LoginSignup
13
13

More than 5 years have passed since last update.

RailsでTwitterBootstrapを使う

Posted at

インストール

GemFileに下記を追加。

gem 'twitter-bootstrap-rails'
bundle install
rails g bootstrap:install
insert  app/assets/javascripts/application.js
create  app/assets/javascripts/bootstrap.js.coffee
create  app/assets/stylesheets/bootstrap_and_overrides.css.less
  gsub  app/assets/stylesheets/application.css
  gsub  app/assets/stylesheets/application.css

レイアウト作成

全体のレイアウトを可変で作成する。

rails generate bootstrap:layout application fluid

scaffold

普通にscaffoldする。

rails g scaffold Product title:string description:text price:decimal
rake db:migrate

作成されたレイアウトにTwitterBootstrapを適用。

rails g bootstrap:themed Products

twitter-bootstrap-railsのREADME

13
13
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
13
13