I have the following my (Rails 3.2.13) Gemfile entries:
gem 'twitter-bootstrap-rails'
gem 'bootstrap-sass'
and in app / assets / javascripts / application.js:
//= require twitter/bootstrap
and at the top of app / assets / stylesheets / custom.css.scss:
@import 'bootstrap'
Is this the "right one"? Do I need both twitter-bootstrap-rails and bootstrap-sass (or maybe bootstrap-sass-rails), or are they redundant and possibly conflict? Is javascript required for bootstrap sass for the framework or just CSS?
source
share