新規プロジェクト作成
rails new hoge -TB --skip-turbolinks --skip-coffee --skip-active-storage --skip-action-mailer
- -Tは--skip-test-unit
- -Bは--skip-bundle
Gemfileに以下追記
gem "twitter-bootstrap-rails" gem "slim-rails"
ライブラリインストール
bundle
Bootstrapを使えるようにする
rails g bootstrap:install static
Application LayoutもerbからイケてるSlim+Bootstrapに変更
rails g bootstrap:layout application fluid
適当にScaffoldしてBootstrapもそれに合わせる
rails g scaffold Post title description:text rake db:migrate rails g bootstrap:themed Posts