のぶLab.

流しのソフトウェアエンジニアの雑記帳. Android, Scala, Clojure, Ruby on Railsなど

RailsでBootstrap Materialを導入する

BootstrapをベースにMaterialデザインなUIを実装できるBootstrap MaterialRailsに導入してみました

Gemfileの編集

Gemfileに以下を追加します

gem 'bootstrap3-rails'
gem 'bootstrap-material-design'

Install

bundle install

application.jsの編集

"app/assets/javascripts/application.js"に以下を追加

//= require bootstrap
//= require bootstrap-material-design

application.cssの編集

"app/assets/javascripts/application.css"に以下を追加

*= require bootstrap
*= require bootstrap-material-design

これでBootstrap Materialが使えるようになると思います