Skip to content

acorcutt/twitter-bootstrap-rails

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

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.

Installing Less

Include Less in Gemfile;

gem 'less'

Include less-rails in Gemfile;

gem 'less-rails', :git => 'git://github.com/metaskills/less-rails.git'

Using stylesheets with Less

You have to require Bootstrap LESS (bootstrap.less) in your application.css

/*
 *= require bootstrap
*/

/* Your stylesheets goes here... */

Now, you can override LESS files provided by Twitter Bootstrap

 @import "bootstrap";
 
 // Baseline grid
 @basefont:          13px;
 @baseline:          18px;

Using javascripts

You have to require Bootstrap JS (bootstrap.js) in your application.js

//= require bootstrap

$(document).ready(function(){
  /* Your javascripts goes here... */
});

Using with coffeescript

Using Twitter Bootstrap with the CoffeeScript is easy. Just create a application.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()

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

Credits

Seyhun Akyürek - seyhunak [at] gmail com

Follow me on Twitter

Contributors

  • Daniel Morris
  • Bradly Feeley
  • Guilherme Moreira
  • Alex Behar
  • Brandon Keene

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.

About

Twitter Bootstrap for Rails 3.1 Asset Pipeline

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Ruby 100.0%