I try to add bootstrap but it doesn't work! http://hkar.ru/BMMZ
Steps to include bootstrap with rails
1) Add Bootstrap gem in Gemfile
gem 'bootstrap-sass'
gem 'sass-rails'
2) bundle install
3)Add bootstrap css to assets
Rename application.css in app/assets/stylesheets/application.css to app/assets/stylesheets/application.css.sass then you can import bootstrap assets
@import "bootstrap-sprockets" @import "bootstrap"
4)Add bootstrap javascript to assets
Go to app/assets/javascripts/application.js
//= require bootstrap-sprockets
/*Use this after the jquery require in this file*/
This steps work fine for me.
The problem is with using bootstrap-sass. It most likely is a problem with that gem's dependencies. You need to include sass-rails.
bootstrap-sass
sass-rails
gem 'sass-rails', '~> 4.0.0'
This should solve it.
Steps to include bootstrap with rails
1) Add Bootstrap gem in Gemfile
gem 'bootstrap-sass'
gem 'sass-rails'
2) bundle install
3)Add bootstrap css to assets
Rename application.css in app/assets/stylesheets/application.css to app/assets/stylesheets/application.css.sass then you can import bootstrap assets
4)Add bootstrap javascript to assets
Go to app/assets/javascripts/application.js
This steps work fine for me.