bootstrap_form 2.2.0 → 2.3.0
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 +4 -4
- data/README.md +61 -6
- data/lib/bootstrap_form/form_builder.rb +95 -31
- data/lib/bootstrap_form/version.rb +1 -1
- data/test/bootstrap_checkbox_test.rb +66 -0
- data/test/bootstrap_fields_test.rb +1 -1
- data/test/bootstrap_form_group_test.rb +52 -14
- data/test/bootstrap_form_test.rb +35 -7
- data/test/bootstrap_other_components_test.rb +1 -1
- data/test/bootstrap_radio_button_test.rb +77 -0
- data/test/dummy/app/models/super_user.rb +2 -0
- data/test/dummy/db/migrate/20140922133133_add_type_to_users.rb +5 -0
- data/test/dummy/db/schema.rb +2 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +957 -1084
- data/test/test_helper.rb +1 -0
- metadata +23 -5
data/test/test_helper.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bootstrap_form
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Stephen Potenza
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2015-02-18 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rails
|
@@ -45,14 +45,28 @@ dependencies:
|
|
45
45
|
requirements:
|
46
46
|
- - "~>"
|
47
47
|
- !ruby/object:Gem::Version
|
48
|
-
version: 0.
|
48
|
+
version: 0.7.1
|
49
49
|
type: :development
|
50
50
|
prerelease: false
|
51
51
|
version_requirements: !ruby/object:Gem::Requirement
|
52
52
|
requirements:
|
53
53
|
- - "~>"
|
54
54
|
- !ruby/object:Gem::Version
|
55
|
-
version: 0.
|
55
|
+
version: 0.7.1
|
56
|
+
- !ruby/object:Gem::Dependency
|
57
|
+
name: mocha
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
59
|
+
requirements:
|
60
|
+
- - ">="
|
61
|
+
- !ruby/object:Gem::Version
|
62
|
+
version: '0'
|
63
|
+
type: :development
|
64
|
+
prerelease: false
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
66
|
+
requirements:
|
67
|
+
- - ">="
|
68
|
+
- !ruby/object:Gem::Version
|
69
|
+
version: '0'
|
56
70
|
description: bootstrap_form is a rails form builder that makes it super easy to create
|
57
71
|
beautiful-looking forms using Twitter Bootstrap 3+
|
58
72
|
email:
|
@@ -88,6 +102,7 @@ files:
|
|
88
102
|
- test/dummy/app/controllers/application_controller.rb
|
89
103
|
- test/dummy/app/helpers/application_helper.rb
|
90
104
|
- test/dummy/app/models/address.rb
|
105
|
+
- test/dummy/app/models/super_user.rb
|
91
106
|
- test/dummy/app/models/user.rb
|
92
107
|
- test/dummy/app/views/layouts/application.html.erb
|
93
108
|
- test/dummy/bin/bundle
|
@@ -114,6 +129,7 @@ files:
|
|
114
129
|
- test/dummy/db/migrate/20130703191937_create_addresses.rb
|
115
130
|
- test/dummy/db/migrate/20130912171202_add_preferences_to_user.rb
|
116
131
|
- test/dummy/db/migrate/20140327190145_add_terms_to_user.rb
|
132
|
+
- test/dummy/db/migrate/20140922133133_add_type_to_users.rb
|
117
133
|
- test/dummy/db/schema.rb
|
118
134
|
- test/dummy/db/seeds.rb
|
119
135
|
- test/dummy/db/test.sqlite3
|
@@ -148,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
148
164
|
version: '0'
|
149
165
|
requirements: []
|
150
166
|
rubyforge_project:
|
151
|
-
rubygems_version: 2.2.
|
167
|
+
rubygems_version: 2.2.2
|
152
168
|
signing_key:
|
153
169
|
specification_version: 4
|
154
170
|
summary: Rails form builder that makes it easy to style forms using Twitter Bootstrap
|
@@ -166,6 +182,7 @@ test_files:
|
|
166
182
|
- test/dummy/app/controllers/application_controller.rb
|
167
183
|
- test/dummy/app/helpers/application_helper.rb
|
168
184
|
- test/dummy/app/models/address.rb
|
185
|
+
- test/dummy/app/models/super_user.rb
|
169
186
|
- test/dummy/app/models/user.rb
|
170
187
|
- test/dummy/app/views/layouts/application.html.erb
|
171
188
|
- test/dummy/bin/bundle
|
@@ -192,6 +209,7 @@ test_files:
|
|
192
209
|
- test/dummy/db/migrate/20130703191937_create_addresses.rb
|
193
210
|
- test/dummy/db/migrate/20130912171202_add_preferences_to_user.rb
|
194
211
|
- test/dummy/db/migrate/20140327190145_add_terms_to_user.rb
|
212
|
+
- test/dummy/db/migrate/20140922133133_add_type_to_users.rb
|
195
213
|
- test/dummy/db/schema.rb
|
196
214
|
- test/dummy/db/seeds.rb
|
197
215
|
- test/dummy/db/test.sqlite3
|