Twitter Bootstrap for Rails 3.1 Asset Pipeline
Bootstrap is a toolkit from Twitter designed to kickstart development of webapps and sites. It includes base CSS and HTML for typography, forms, buttons, tables, grids, navigation, and more.
twitter-bootstrap-rails project integrates Bootstrap CSS toolkit for Rails 3.1 Asset Pipeline
Installing Gem
Include Bootstrap in Gemfile;
gem 'twitter-bootstrap-rails'
or you can install from latest build;
gem 'twitter-bootstrap-rails', :git => 'http://github.com/seyhunak/twitter-bootstrap-rails.git'
You can run bundle from command line
bundle install
Installing to App
Run generator to install Twitter Bootstrap You can run generator from command line
rails g bootstrap:install
Generator;
Adds bootstrap requires to application.css and application.js.
Adds bootstrap boilerplate Less and Coffee files to build with Twitter Bootstrap easily.
Using with Less
Bootstrap was built with Preboot, an open-source pack of mixins and variables to be used in conjunction with Less, a CSS preprocessor for faster and easier web development.
Using stylesheets with Less
You have to require Bootstrap LESS (bootstrap.less) in your application.css
/*
*= require twitter/bootstrap
*/
/* Your stylesheets goes here... */
Now, you can override LESS files provided by Twitter Bootstrap
@import "twitter/bootstrap";
// Baseline grid
@basefont: 13px;
@baseline: 18px;
Using Javascripts
You have to require Bootstrap JS (bootstrap.js) in your application.js
//= require twitter/bootstrap
$(document).ready(function(){
/* Your javascripts goes here... */
});
Using With Coffeescript
Using Twitter Bootstrap with the CoffeeScript is easy. Just create a "bootstrap.js.coffee" file to /app/assets/javascripts/ folder and put lines below.
$ ->
$("body > .topbar").scrollSpy()
$ ->
$(".tabs").tabs()
$ ->
$("a[rel=twipsy]").twipsy live: true
$ ->
$("a[rel=popover]").popover offset: 10
$ ->
$(".topbar-wrapper").dropdown()
$ ->
$(".alert-message").alert()
$ ->
domModal = $(".modal").modal(
backdrop: true
closeOnEscape: true
)
$(".open-modal").click ->
domModal.toggle()
$ ->
$(".btn").button "complete"
Using Static CSS, JS (w/o Less)
twitter-bootstrap-rails has seperate branch (w/o Less) that just serves latest static CSS, JS files.
You can install from latest build (from branch);
gem 'twitter-bootstrap-rails', :git => "git://github.com/seyhunak/twitter-bootstrap-rails.git", :branch => "static"
Changelog
- Version 0.0.5 deprecated
- Asset files updated to latest and removed version numbers
- Implemented Less::Rails Railtie to use with LESS
- Fixed railtie to only initialize Less when installed
- Created new branch for the static version of Bootstrap (w/o Less) - check static branch
- Added path to support heroku deploy
- Rake precompile issue fixed
- Updated asset files to 1.4.0
- Updated dependency less-rails (now requires 2.1.0)
- Added generators
Future
- Writing tests (not implemented yet)
Credits
Seyhun Akyürek - seyhunak [at] gmail com
Contributors & Patches
- Daniel Morris
- Bradly Feeley
- Guilherme Moreira
- Alex Behar
- Brandon Keene
- Anthony Corcutt
- Colin Warren
Thanks
Twitter Bootstrap http://twitter.github.com/bootstrap
License
Copyright (c) 2011 Seyhun Akyürek
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.