sinatra_more 0.3.26 → 0.3.27

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.26
1
+ 0.3.27
@@ -55,8 +55,8 @@ class AbstractFormBuilder
55
55
  unchecked_value = options.delete(:uncheck_value) || '0'
56
56
  options.reverse_merge!(:id => field_id(field), :value => '1')
57
57
  options.merge!(:checked => true) if values_matches_field?(field, options[:value])
58
- html = @template.check_box_tag field_name(field), options
59
- html << hidden_field(field, :value => unchecked_value, :id => nil)
58
+ html = hidden_field(field, :value => unchecked_value, :id => nil)
59
+ html << @template.check_box_tag(field_name(field), options)
60
60
  end
61
61
 
62
62
  # f.radio_button :gender, :value => 'male'
data/sinatra_more.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{sinatra_more}
8
- s.version = "0.3.26"
8
+ s.version = "0.3.27"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Nathan Esquenazi"]
12
- s.date = %q{2009-11-30}
12
+ s.date = %q{2009-12-21}
13
13
  s.default_executable = %q{sinatra_gen}
14
14
  s.description = %q{Expands sinatra with standard helpers and tools to allow for complex applications}
15
15
  s.email = %q{nesquena@gmail.com}
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sinatra_more
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.26
4
+ version: 0.3.27
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nathan Esquenazi
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2009-11-30 00:00:00 -08:00
12
+ date: 2009-12-21 00:00:00 -08:00
13
13
  default_executable: sinatra_gen
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency