Includes:
in Gemfile
gem 'bootstrap-addons-rails'
then bundle it!
https://github.com/twitter/bootstrap/issues/2543
https://github.com/the-teacher/the_role/issues/4
http://www.rqgg.net/topic/mrrkx-compiling-less-twitter-bootstrap-files-in-ubuntu.html
http://railscasts.com/episodes/329-more-on-twitter-bootstrap?view=comments
To fix the issue put this in your application.rb
config.assets.initialize_on_precompile = false
then run again...
Stylesheets:
*= require bootstrap/colorpicker
*= require bootstrap/datepicker
*= require bootstrap/image-gallery
Or using Compass/SASS:
@import "bootstrap/image-gallery";
Javascripts:
//= require bootstrap
//= require bootstrap/colorpicker
//= require bootstrap/datepicker
//= require bootstrap/load-image.min
//= require bootstrap/image-gallery.min
Pleas note that bootstrap
needs to be imported before image_gallery
For convenience, a gallery
script is included that loads everything needed for gallery in the correct order, so the above can be simplified to this:
//= require bootstrap/gallery
//= require bootstrap/colorpicker
//= require bootstrap/datepicker
Gotcha: The gallery
script assumes that bootstrap (js) can be loaded simply as bootstrap
.
To customize Bootstrap, check out:
Copyright (c) 2012 Kristian Mandrup. See LICENSE.txt for further details.