Giter Club home page Giter Club logo

twitter-bootstrap-rails's Introduction

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 (Rails 3.2 supported)

Build Status Dependency Status

Screencasts

Installing twitter-bootstrap-rails, generators, usage and more

Screencasts provided by Railscasts (Ryan Bates)

Twitter Bootstrap Basics in this episode you will learn how to include Twitter Bootstrap into Rails application with the twitter-bootstrap-rails gem.

More on Twitter Bootstrap in this episode continues on the Twitter Bootstrap project showing how to display flash messages, add form validations with SimpleForm, customize layout with variables, and switch to using Sass. (Note: This episode is pro episode)

Installing Gem

Include Bootstrap in Gemfile;

gem "twitter-bootstrap-rails"

or you can install from latest build;

gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'

You can run bundle from command line

bundle install

Installing to App (using Generators)

You can run following generators to get started with Twitter Bootstrap quickly.

Install (requires directives to Asset pipeline.)

Usage:

rails g bootstrap:install

Layout (generates Twitter Bootstrap compatible layout) - (Haml and Slim supported)

Usage:

rails g bootstrap:layout [LAYOUT_NAME] [*fixed or fluid]

Example:

rails g bootstrap:layout application fixed

Themed (generates Twitter Bootstrap compatible scaffold views.) - (Haml and Slim supported)

Usage:

rails g bootstrap:themed [RESOURCE_NAME]

Example:

rails g scaffold post title:string description:text
rake db:migrate
rails g bootstrap:themed Posts

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_and_overrides.css.less) in your application.css

/*
 *= require bootstrap_and_overrides
 */

/* Your stylesheets goes here... */

If you'd like to alter Bootstrap's own variables, or define your LESS styles inheriting Bootstrap's mixins, you can do so inside bootstrap_and_overrides.css.less:

@linkColor: #ff0000;

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 Coffeescript (optionally)

Using Twitter Bootstrap with the CoffeeScript is easy. twitter-bootstrap-rails generates a "bootstrap.js.coffee" file for you to /app/assets/javascripts/ folder.

jQuery ->
  $("a[rel=popover]").popover()
  $(".tooltip").tooltip()
  $("a[rel=tooltip]").tooltip()

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
  • 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
  • Fixed generators
  • Fixed class name conflicts from (bootstrap.js.coffee)
  • Fixed jquery-rails gem version dependency
  • Updated asset files
  • Added new generators (install, layout and themed)
  • Compability to Rails 3.2
  • Transitioning to 2.0
  • Released gem v.2.0rc0
  • Added Haml and Slim support
  • Added Responsive layout support
  • Fixes and release 2.0.0
  • Updated to v2.0.1, versioned v2.0.1.0
  • Released gem v.2.0.3

Contributors & Patches & Forks

  • Daniel Morris
  • Bradly Feeley
  • Guilherme Moreira
  • Alex Behar
  • Brandon Keene
  • Anthony Corcutt
  • Colin Warren
  • Giovanni Cappellotto
  • Masakuni Kato
  • Gudleik Rasch
  • Thomas Volkmar Worm
  • Thiago Almeida

Future

  • Writing tests (not implemented yet)
  • Markup Helpers (alert, tabs, pagination, breadcrumbs etc.)

Credits

Seyhun Akyürek - seyhunak [at] gmail com

Add Me On Twitter

Add Me On Linkedin

Add Me On Facebook

Add Me On Google+

Visit My Blog

Thanks

Twitter Bootstrap and all twitter-bootstrap-rails contributors 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.

twitter-bootstrap-rails's People

Contributors

carlosdp avatar chumpy avatar datl avatar daz avatar djeusette avatar effkay avatar fmhun avatar glanotte avatar gudleik avatar isaac avatar ji avatar jlxw avatar johncolvin avatar josephbridgwaterrowe avatar laserlemon avatar lukeholder avatar matt-wratt avatar mmichaa avatar mrinterweb avatar nunziofiore avatar pierredelacelle avatar potomak avatar pubis avatar rconradharris avatar rmoriz avatar seyhunak avatar thefury avatar thiagopintodev avatar tmichel avatar tvw avatar

Stargazers

 avatar

Watchers

 avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.