simple_form 3.2.0 → 3.2.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of simple_form might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/simple_form/version.rb +1 -1
- metadata +32 -20
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9a6c95d6f9a46246e380928d9f811d32400b46af
|
4
|
+
data.tar.gz: a1b26b221855af2b653a28da26fec66041b1bfc2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 381db066326564168e6c9242682b3a699397f8b4dbb3bd2f3662f4f817b51c5f65c6fb3d58e8e1a5e50bed6fa86d62ab024557cd67b221829d900ac81f52df56
|
7
|
+
data.tar.gz: 0340f0e2604165e8b266afe34423e1a1dcfc9e86daf08a84d690f9192624d482a846ac83685f198497e6da75317bd70a95c16a77f9d31c783b4ede1e23da211d
|
data/CHANGELOG.md
CHANGED
data/lib/simple_form/version.rb
CHANGED
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.
|
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-
|
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
|
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: '
|
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: '
|
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
|
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/
|
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.
|
181
|
+
rubygems_version: 2.4.5.1
|
170
182
|
signing_key:
|
171
183
|
specification_version: 4
|
172
184
|
summary: Forms made easy!
|