kristianmandrup / bootstrap-addons-rails

Twitter Bootstrap addons: Color- and Datepicker, Image gallery, ready for use with Rails asset pipeline
MIT License
17 stars 6 forks source link

Twitter Bootstrap addons for Rails asset pipeline

Includes:

Installation

in Gemfile

gem 'bootstrap-addons-rails'

then bundle it!

Gotchas!

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...

Configuration

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.

Extras

To customize Bootstrap, check out:

Contributing to bootstrap-addons-rails

Copyright

Copyright (c) 2012 Kristian Mandrup. See LICENSE.txt for further details.