Permalink
Please sign in to comment.
Browse files
Merge branch 'master' of git://github.com/plataformatec/simple_form
- Loading branch information...
Showing
with
208 additions
and 158 deletions.
- +7 −0 CHANGELOG.rdoc
- +8 −5 Gemfile
- +5 −5 Gemfile.lock
- +1 −20 Rakefile
- +0 −2 TODO.rdoc
- +2 −2 lib/generators/simple_form/templates/_form.html.haml
- +2 −2 lib/simple_form/components/labels.rb
- +15 −15 lib/simple_form/form_builder.rb
- +11 −4 lib/simple_form/inputs/base.rb
- +46 −16 lib/simple_form/inputs/collection_input.rb
- +4 −0 lib/simple_form/inputs/date_time_input.rb
- +5 −1 lib/simple_form/inputs/priority_input.rb
- +1 −1 lib/simple_form/version.rb
- +15 −78 simple_form.gemspec
- +1 −1 test/components/error_test.rb
- +1 −1 test/components/hint_test.rb
- +1 −1 test/components/label_test.rb
- +21 −0 test/form_builder_test.rb
- +62 −0 test/inputs_test.rb
- +0 −4 test/test_helper.rb
@@ -1,10 +1,13 @@ | ||
source "http://rubygems.org" | ||
gem "rails", "~> 3.0.0" | ||
-gem "mocha" | ||
-if RUBY_VERSION < "1.9" | ||
- gem "ruby-debug" | ||
-else | ||
- gem "test-unit" | ||
+group :test do | ||
+ gem "mocha", :require => false | ||
+ | ||
+ if RUBY_VERSION < "1.9" | ||
+ gem "ruby-debug", :require => false | ||
+ else | ||
+ gem "test-unit", :require => false | ||
+ end | ||
end |
10
Gemfile.lock
@@ -1,2 +0,0 @@ | ||
-* Add unobstrusive javascript validations support | ||
-* Add mask support (same as hint, but with JS) |
@@ -1,3 +1,3 @@ | ||
module SimpleForm | ||
- VERSION = "1.2.2".freeze | ||
+ VERSION = "1.3.0".freeze | ||
end |

Oops, something went wrong.
0 comments on commit
e8b1a23