Ruby on Rails with Twitter Bootstrap Guide Tips and Tutorial Video with Sample Code

Ruby on Rails with Twitter Bootstrap Guide Tips and Tutorial Video with Sample Code Simple Ruby on Rails application that use Simple Form and Twitter Bootstrap

With bootstrap you need to import it in your manifest. Read a bit about the assets pipeline
in RoR guide.

To import bootstrap, create a file in your app/assets/stylesheets directory, with the name you want, but with the extension .css.scss, and place in it the following line:

@import "bootstrap";
Also if you need to use the javascript helpers from bootstrap, you need to add the following line in your app/assets/javascript/application.js file:

//= require bootstrap
Download 
Bootstrap
Compiled and minified CSS, JavaScript, and fonts. No docs or original source files are included.

Source code
Source Less, JavaScript, and font files, along with our docs. Requires a Less compiler and some setup.

Sass
Bootstrap ported from Less to Sass for easy inclusion in Rails, Compass, or Sass-only projects.

Install with Bower Install and manage Bootstrap's Less, CSS, JavaScript, and fonts using Bower.
 $ bower install bootstrap

Comments