README.md in booter-0.2.3 vs README.md in booter-0.3.0
- old
+ new
@@ -1,27 +1,23 @@
# Booter
-Twitter bootstrap framework for Rails.
+One more twitter bootstrap wrapper for Rails.
-## Usage
+## Installation
-Add bootstrap.css to your application.css and bootstrap.js to your application.js file.
+Add `gem "booter"` to your Gemfile and fire `bundle install`.
-Use <tt>nice_form_for</tt> helper method to draw bootstrap forms:
+Include <tt>bootstrap.css</tt> to your <tt>application.css</tt> and optionally
+<tt>bootstrap.js</tt> to <tt>application.js</tt>.
+## Usage
+
+Use <tt>nice_form_for</tt> 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"
```
-
-## Changelog
-
-### Booter 0.2.3 (March 19, 2012)
-
-* Add select field support
-
-### Booter 0.2.2 (March 18, 2012)
-
-* First public release