# Booter
One more twitter bootstrap wrapper for Rails.
## Installation
Add `gem "booter"` to your Gemfile and fire `bundle install`.
Include bootstrap.css to your application.css and optionally
bootstrap.js to application.js.
## Usage
Use nice_form_for helper method to draw nice bootstrap forms:
``` haml
= nice_form_for @user do
= f.errors_for
= f.email_field :email
= f.password_field :password
= f.check_box :remember_me
= f.submit "Sign in"
```