Stub out Rails 3 compatible branch.

This commit is contained in:
José Valim 2010-02-06 19:29:41 +01:00
parent ee6cb1b818
commit 151411f54b
3 changed files with 9 additions and 11 deletions

View File

@ -8,17 +8,16 @@ SimpleForm aims to be as flexible as possible while helping you with powerful co
Install the gem:
sudo gem install simple_form --version=1.0
Configure simple_form gem inside your app:
config.gem 'simple_form'
sudo gem install simple_form --version=1.1
Run the generator:
ruby script/generate simple_form_install
rails generate simple_form_install
And you're ready to go.
And you are ready to go. Since this branch is aims Rails 3 support,
if you want to use it with Rails 2.3 you should check this branch:
http://github.com/plataformatec/simple_form/tree/v1.0
== Usage

View File

@ -1 +0,0 @@
require 'simple_form'

View File

@ -1,3 +1,3 @@
module SimpleForm
VERSION = "1.0.0".freeze
VERSION = "1.1.0".freeze
end