simple_form-bootstrap 1.1.2 → 1.2.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.
@@ -0,0 +1,3 @@
1
+ RSpec.configure do |config|
2
+ config.include RSpecHtmlMatchers
3
+ end
@@ -0,0 +1,10 @@
1
+ module MockViewAdditions
2
+ def simple_form_for(*args, &proc)
3
+ concat super(*args, &proc)
4
+ end
5
+ end
6
+
7
+ RSpec.configure do |config|
8
+ config.include SimpleForm::ActionViewExtensions::FormHelper, type: :view
9
+ config.include MockViewAdditions, type: :view
10
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: simple_form-bootstrap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.2
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Joel Low
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-05-20 00:00:00.000000000 Z
11
+ date: 2015-10-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bootstrap-sass
@@ -157,6 +157,13 @@ executables: []
157
157
  extensions: []
158
158
  extra_rdoc_files: []
159
159
  files:
160
+ - ".gitignore"
161
+ - ".rspec"
162
+ - ".travis.yml"
163
+ - CHANGELOG.md
164
+ - Gemfile
165
+ - LICENSE
166
+ - README.md
160
167
  - Rakefile
161
168
  - app/assets/javascripts/simple_form-bootstrap.js
162
169
  - app/assets/javascripts/simple_form-bootstrap/date_time_input.js
@@ -171,6 +178,17 @@ files:
171
178
  - lib/simple_form/bootstrap/railtie.rb
172
179
  - lib/simple_form/bootstrap/setup.rb
173
180
  - lib/simple_form/bootstrap/version.rb
181
+ - simple_form-bootstrap.gemspec
182
+ - spec/coverage_helper.rb
183
+ - spec/rails_helper.rb
184
+ - spec/simple_form/bootstrap/form_builders/button_spec.rb
185
+ - spec/simple_form/bootstrap/form_builders/date_time_spec.rb
186
+ - spec/simple_form/simple_form_spec.rb
187
+ - spec/spec_helper.rb
188
+ - spec/support/action_controller.rb
189
+ - spec/support/mock_controller.rb
190
+ - spec/support/rspec_html_matchers.rb
191
+ - spec/support/simple_form.rb
174
192
  homepage: https://github.com/lowjoel/simple_form-bootstrap
175
193
  licenses:
176
194
  - MIT