simple_form 3.2.0 → 3.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 5db9c72e3a5c06c71d99163bfaf4206c37cf6770
4
- data.tar.gz: a79c7066e8584acf008a9c45a13a3055457f131a
3
+ metadata.gz: 9a6c95d6f9a46246e380928d9f811d32400b46af
4
+ data.tar.gz: a1b26b221855af2b653a28da26fec66041b1bfc2
5
5
  SHA512:
6
- metadata.gz: 40e45eac78c5655e3a4675f4dc0227dc55538bee8f641ac561370b8be4effba398d6b77869cdab97447e6b44ffc8dccb3c74592d9b718e25ff9a6edeb1d453b4
7
- data.tar.gz: 9c8ed9f7753bb99bc536b79f37551e13125d5292a3fa071e10370e89bfa37f9d69e56862ab6b2df336699c8a70a256428c1127e8d1555b20e6bc9b810b71523b
6
+ metadata.gz: 381db066326564168e6c9242682b3a699397f8b4dbb3bd2f3662f4f817b51c5f65c6fb3d58e8e1a5e50bed6fa86d62ab024557cd67b221829d900ac81f52df56
7
+ data.tar.gz: 0340f0e2604165e8b266afe34423e1a1dcfc9e86daf08a84d690f9192624d482a846ac83685f198497e6da75317bd70a95c16a77f9d31c783b4ede1e23da211d
@@ -1,3 +1,7 @@
1
+ ## 3.2.1
2
+
3
+ * Updated gem dependency to support Rails 5.0.x.
4
+
1
5
  ## 3.2.0
2
6
 
3
7
  ### bug fix
@@ -1,3 +1,3 @@
1
1
  module SimpleForm
2
- VERSION = "3.2.0".freeze
2
+ VERSION = "3.2.1".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_form
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - José Valim
@@ -10,36 +10,48 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2015-09-22 00:00:00.000000000 Z
13
+ date: 2015-12-20 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: activemodel
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ~>
19
+ - - ">"
20
20
  - !ruby/object:Gem::Version
21
- version: '4.0'
21
+ version: '4'
22
+ - - "<"
23
+ - !ruby/object:Gem::Version
24
+ version: '5.1'
22
25
  type: :runtime
23
26
  prerelease: false
24
27
  version_requirements: !ruby/object:Gem::Requirement
25
28
  requirements:
26
- - - ~>
29
+ - - ">"
30
+ - !ruby/object:Gem::Version
31
+ version: '4'
32
+ - - "<"
27
33
  - !ruby/object:Gem::Version
28
- version: '4.0'
34
+ version: '5.1'
29
35
  - !ruby/object:Gem::Dependency
30
36
  name: actionpack
31
37
  requirement: !ruby/object:Gem::Requirement
32
38
  requirements:
33
- - - ~>
39
+ - - ">"
40
+ - !ruby/object:Gem::Version
41
+ version: '4'
42
+ - - "<"
34
43
  - !ruby/object:Gem::Version
35
- version: '4.0'
44
+ version: '5.1'
36
45
  type: :runtime
37
46
  prerelease: false
38
47
  version_requirements: !ruby/object:Gem::Requirement
39
48
  requirements:
40
- - - ~>
49
+ - - ">"
41
50
  - !ruby/object:Gem::Version
42
- version: '4.0'
51
+ version: '4'
52
+ - - "<"
53
+ - !ruby/object:Gem::Version
54
+ version: '5.1'
43
55
  description: Forms made easy!
44
56
  email: opensource@plataformatec.com.br
45
57
  executables: []
@@ -49,7 +61,9 @@ files:
49
61
  - CHANGELOG.md
50
62
  - MIT-LICENSE
51
63
  - README.md
64
+ - lib/generators/simple_form/USAGE
52
65
  - lib/generators/simple_form/install_generator.rb
66
+ - lib/generators/simple_form/templates/README
53
67
  - lib/generators/simple_form/templates/_form.html.erb
54
68
  - lib/generators/simple_form/templates/_form.html.haml
55
69
  - lib/generators/simple_form/templates/_form.html.slim
@@ -57,10 +71,10 @@ files:
57
71
  - lib/generators/simple_form/templates/config/initializers/simple_form_bootstrap.rb
58
72
  - lib/generators/simple_form/templates/config/initializers/simple_form_foundation.rb
59
73
  - lib/generators/simple_form/templates/config/locales/simple_form.en.yml
60
- - lib/generators/simple_form/templates/README
61
- - lib/generators/simple_form/USAGE
74
+ - lib/simple_form.rb
62
75
  - lib/simple_form/action_view_extensions/builder.rb
63
76
  - lib/simple_form/action_view_extensions/form_helper.rb
77
+ - lib/simple_form/components.rb
64
78
  - lib/simple_form/components/errors.rb
65
79
  - lib/simple_form/components/hints.rb
66
80
  - lib/simple_form/components/html5.rb
@@ -71,16 +85,16 @@ files:
71
85
  - lib/simple_form/components/pattern.rb
72
86
  - lib/simple_form/components/placeholders.rb
73
87
  - lib/simple_form/components/readonly.rb
74
- - lib/simple_form/components.rb
75
88
  - lib/simple_form/error_notification.rb
76
89
  - lib/simple_form/form_builder.rb
90
+ - lib/simple_form/helpers.rb
77
91
  - lib/simple_form/helpers/autofocus.rb
78
92
  - lib/simple_form/helpers/disabled.rb
79
93
  - lib/simple_form/helpers/readonly.rb
80
94
  - lib/simple_form/helpers/required.rb
81
95
  - lib/simple_form/helpers/validators.rb
82
- - lib/simple_form/helpers.rb
83
96
  - lib/simple_form/i18n_cache.rb
97
+ - lib/simple_form/inputs.rb
84
98
  - lib/simple_form/inputs/base.rb
85
99
  - lib/simple_form/inputs/block_input.rb
86
100
  - lib/simple_form/inputs/boolean_input.rb
@@ -98,18 +112,16 @@ files:
98
112
  - lib/simple_form/inputs/range_input.rb
99
113
  - lib/simple_form/inputs/string_input.rb
100
114
  - lib/simple_form/inputs/text_input.rb
101
- - lib/simple_form/inputs.rb
102
115
  - lib/simple_form/map_type.rb
103
116
  - lib/simple_form/railtie.rb
104
117
  - lib/simple_form/tags.rb
105
118
  - lib/simple_form/version.rb
119
+ - lib/simple_form/wrappers.rb
106
120
  - lib/simple_form/wrappers/builder.rb
107
121
  - lib/simple_form/wrappers/leaf.rb
108
122
  - lib/simple_form/wrappers/many.rb
109
123
  - lib/simple_form/wrappers/root.rb
110
124
  - lib/simple_form/wrappers/single.rb
111
- - lib/simple_form/wrappers.rb
112
- - lib/simple_form.rb
113
125
  - test/action_view_extensions/builder_test.rb
114
126
  - test/action_view_extensions/form_helper_test.rb
115
127
  - test/components/label_test.rb
@@ -156,17 +168,17 @@ require_paths:
156
168
  - lib
157
169
  required_ruby_version: !ruby/object:Gem::Requirement
158
170
  requirements:
159
- - - '>='
171
+ - - ">="
160
172
  - !ruby/object:Gem::Version
161
173
  version: '0'
162
174
  required_rubygems_version: !ruby/object:Gem::Requirement
163
175
  requirements:
164
- - - '>='
176
+ - - ">="
165
177
  - !ruby/object:Gem::Version
166
178
  version: '0'
167
179
  requirements: []
168
180
  rubyforge_project: simple_form
169
- rubygems_version: 2.0.3
181
+ rubygems_version: 2.4.5.1
170
182
  signing_key:
171
183
  specification_version: 4
172
184
  summary: Forms made easy!