minitest-spec-rails 5.4.0 → 5.5.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/.rubocop.yml +26 -0
  3. data/.travis.yml +8 -5
  4. data/Appraisals +9 -2
  5. data/CHANGELOG.md +5 -1
  6. data/Gemfile +0 -1
  7. data/README.md +17 -28
  8. data/Rakefile +4 -5
  9. data/gemfiles/rails41.gemfile.lock +44 -45
  10. data/gemfiles/rails42.gemfile.lock +64 -67
  11. data/gemfiles/rails50.gemfile +2 -1
  12. data/gemfiles/rails50.gemfile.lock +75 -80
  13. data/gemfiles/rails51.gemfile +8 -0
  14. data/gemfiles/rails51.gemfile.lock +128 -0
  15. data/lib/minitest-spec-rails/dsl.rb +5 -9
  16. data/lib/minitest-spec-rails/init/action_controller.rb +3 -7
  17. data/lib/minitest-spec-rails/init/action_dispatch.rb +1 -3
  18. data/lib/minitest-spec-rails/init/action_mailer.rb +2 -7
  19. data/lib/minitest-spec-rails/init/action_view.rb +1 -5
  20. data/lib/minitest-spec-rails/init/active_job.rb +3 -8
  21. data/lib/minitest-spec-rails/init/active_support.rb +8 -10
  22. data/lib/minitest-spec-rails/init/mini_shoulda.rb +2 -6
  23. data/lib/minitest-spec-rails/railtie.rb +21 -21
  24. data/lib/minitest-spec-rails/version.rb +1 -1
  25. data/minitest-spec-rails.gemspec +5 -5
  26. data/test/cases/action_controller_test.rb +7 -10
  27. data/test/cases/action_dispatch_test.rb +10 -13
  28. data/test/cases/action_mailer_test.rb +7 -10
  29. data/test/cases/action_view_test.rb +13 -16
  30. data/test/cases/active_job_test.rb +38 -36
  31. data/test/cases/active_support_test.rb +22 -12
  32. data/test/cases/mini_shoulda_test.rb +0 -4
  33. data/test/dummy_app/app/controllers/application_controller.rb +1 -3
  34. data/test/dummy_app/app/controllers/users_controller.rb +1 -3
  35. data/test/dummy_app/app/helpers/application_helper.rb +0 -1
  36. data/test/dummy_app/app/helpers/foos_helper.rb +3 -1
  37. data/test/dummy_app/app/helpers/users_helper.rb +1 -3
  38. data/test/dummy_app/app/mailers/user_mailer.rb +2 -4
  39. data/test/dummy_app/app/models/post.rb +0 -3
  40. data/test/dummy_app/app/models/user.rb +0 -3
  41. data/test/dummy_app/config/routes.rb +1 -1
  42. data/test/dummy_app/init.rb +2 -4
  43. data/test/dummy_tests/application_controller_test.rb +3 -9
  44. data/test/dummy_tests/foos_helper_test.rb +0 -3
  45. data/test/dummy_tests/integration_test.rb +2 -8
  46. data/test/dummy_tests/special_users_controller_test.rb +0 -2
  47. data/test/dummy_tests/user_mailer_test.rb +4 -10
  48. data/test/dummy_tests/user_test.rb +2 -8
  49. data/test/dummy_tests/users_controller_test.rb +1 -3
  50. data/test/dummy_tests/users_helper_test.rb +2 -8
  51. data/test/support/shared_test_case_behavior.rb +4 -7
  52. data/test/test_helper.rb +0 -3
  53. data/test/test_helper_dummy.rb +5 -6
  54. metadata +8 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 3cf00434a022b6586ca8fafb0f4ddbf1f644179e
4
- data.tar.gz: c8f5bb3ccf88fe95f6494fb7db61288c8141953e
3
+ metadata.gz: 91f579b3835a673c97eb257ba9e138b6543677db
4
+ data.tar.gz: 9a772420c9d8de8bd15504dba4183408ddf6729c
5
5
  SHA512:
6
- metadata.gz: 5c97a7deaa1a0ba8f6f68c15928f3c47b63ed3171690c4a33565a9e9656457024ba8fdb8643a7e703e9f02a0a3e4ff669ff82ef23f6e1b88f5de13f18bb09d9b
7
- data.tar.gz: 1f90656cfadd650e316fe7d9e443f2e79c1aabffb5a82a75c1e6cb461dde8e502af46bad9e9ec96d84540e8a09ab55b5b4adf445a64ab9a0d982a88e18c996c7
6
+ metadata.gz: 739b72f9c49c83a5376eac368be8d8ce820bbb07d24cff80f82b3ffeb861e9934bcf919b75a1b3bac5bfab87dc905a296b7d2989344ee86b137fb6f375f8410e
7
+ data.tar.gz: 69d8de313030964736d2355e70b152fee2103472f249714ebb93e82997cbb8fb37b9337674184043d75cda15e466efa461aa6c3406a75ab5b285514181854974
@@ -0,0 +1,26 @@
1
+
2
+ Metrics/LineLength:
3
+ Max: 120
4
+
5
+ Metrics/MethodLength:
6
+ Max: 15
7
+
8
+ Metrics/BlockLength:
9
+ Exclude:
10
+ - 'test/dummy_tests/user_mailer_test.rb'
11
+
12
+ Style/Documentation:
13
+ Enabled: false
14
+
15
+ Style/GlobalVars:
16
+ AllowedVariables:
17
+ - '$teardown_ran'
18
+
19
+ Style/FileName:
20
+ Exclude:
21
+ - 'lib/minitest-spec-rails.rb'
22
+ - 'Appraisals'
23
+
24
+ AllCops:
25
+ Exclude:
26
+ - 'gemfiles/*'
@@ -1,22 +1,25 @@
1
1
  sudo: false
2
2
  cache: bundler
3
3
  rvm:
4
- - 2.0
5
4
  - 2.1
6
- - 2.2.3
5
+ - 2.2.5
6
+ - 2.3.1
7
7
  gemfile:
8
8
  - gemfiles/rails41.gemfile
9
9
  - gemfiles/rails42.gemfile
10
10
  - gemfiles/rails50.gemfile
11
+ - gemfiles/rails51.gemfile
11
12
  install:
12
- - gem install bundler
13
+ - gem install rubocop -v 0.57.2
14
+ - gem install bundler -v 1.17.3
13
15
  - bundle --version
14
16
  - bundle install
15
17
  script:
16
18
  - bundle exec rake test
19
+ - rubocop
17
20
  matrix:
18
21
  exclude:
19
- - rvm: 2.0
20
- gemfile: gemfiles/rails50.gemfile
21
22
  - rvm: 2.1
22
23
  gemfile: gemfiles/rails50.gemfile
24
+ - rvm: 2.1
25
+ gemfile: gemfiles/rails51.gemfile
data/Appraisals CHANGED
@@ -1,4 +1,3 @@
1
-
2
1
  appraise 'rails41' do
3
2
  gem 'rails', '~> 4.1.0'
4
3
  end
@@ -8,5 +7,13 @@ appraise 'rails42' do
8
7
  end
9
8
 
10
9
  appraise 'rails50' do
11
- gem 'rails', '5.0.0.rc1'
10
+ gem 'rails', '5.0.0'
11
+ # https://github.com/rails/rails/issues/29031
12
+ gem 'minitest', '5.10.1'
13
+ end
14
+
15
+ appraise 'rails51' do
16
+ gem 'rails', '5.1.0'
17
+ # https://github.com/rails/rails/issues/29031
18
+ gem 'minitest', '5.10.1'
12
19
  end
@@ -1,4 +1,8 @@
1
- ## 5.3.1
1
+ ## 5.5.0
2
+
3
+ * Fix source_location of methods defined with `test`. Fixes #91. Thanks @barrettkingram
4
+
5
+ ## 5.4.0
2
6
 
3
7
  * Use ENV['RAILS_ENV'] for initializer guards vs memo'ed Rails.env. Fixes #72.
4
8
 
data/Gemfile CHANGED
@@ -1,4 +1,3 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  gemspec
4
-
data/README.md CHANGED
@@ -1,13 +1,13 @@
1
- <img src="http://cdn.metaskills.net/minitest-spec-rails.png" width="233" height="154" />
1
+ <img src="https://user-images.githubusercontent.com/2381/34084174-246174da-e34a-11e7-9d36-94c9cde7b63d.png" width="233" height="154" />
2
2
 
3
3
  # Make Rails Use MiniTest::Spec!
4
4
 
5
5
 
6
6
  The minitest-spec-rails gem makes it easy to use the MiniTest::Spec DSL within your existing Rails 2.3, 3.x or 4.x test suite. It does this by forcing ActiveSupport::TestCase to utilize the MiniTest::Spec::DSL.
7
7
 
8
- [![Gem Version](https://badge.fury.io/rb/minitest-spec-rails.png)](http://badge.fury.io/rb/minitest-spec-rails)
9
- [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.png)](http://travis-ci.org/metaskills/minitest-spec-rails)
10
- [![Code Climate](https://codeclimate.com/badge.png)](https://codeclimate.com/github/metaskills/minitest-spec-rails)
8
+ [![Gem Version](https://badge.fury.io/rb/minitest-spec-rails.svg)](http://badge.fury.io/rb/minitest-spec-rails)
9
+ [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.svg)](http://travis-ci.org/metaskills/minitest-spec-rails)
10
+ [![Maintainability](https://api.codeclimate.com/v1/badges/e67addda6fd009b68349/maintainability)](https://codeclimate.com/github/metaskills/minitest-spec-rails/maintainability)
11
11
 
12
12
 
13
13
  ## Usage
@@ -35,26 +35,6 @@ group :test do
35
35
  end
36
36
  ```
37
37
 
38
- #### For Rails 2.3
39
-
40
- Our [2-3-stable](https://github.com/metaskills/minitest-spec-rails/tree/2-3-stable) branch tracks our 3.1 version number and is guaranteed to work on any Rails 2.3 version. Since Rails 2.3 does not have a configurable Railtie, we have enabled the [mini-shoulda](#mini_shoulda) option all the time. This means that if you are on Rails 2.3 under either Ruby 1.8 or 1.9, perhaps using Shoulda, you have a solid upgrade path! Get your tests running with minitest-spec-rails first and nothing in you test stack changes along the way!
41
-
42
- ```ruby
43
- group :test do
44
- gem 'minitest-spec-rails', '~> 3.1'
45
- end
46
- ```
47
-
48
- #### Ruby 1.8 Users!!!
49
-
50
- If you are using Ruby 1.8, you must install a Test::Unit shim that subclasses MiniTest::Unit, just as Ruby 1.9 does. We have kindly packed up Ruby 1.9's `lib/test` directory in the [minitest-spec-rails-tu-shim](https://github.com/metaskills/minitest-spec-rails-tu-shim) gem. So just add this to your Gemfile.
51
-
52
- ```ruby
53
- group :test do
54
- gem 'minitest-spec-rails-tu-shim'
55
- end
56
- ```
57
-
58
38
 
59
39
  ### How is this different than MiniTest::Rails?
60
40
 
@@ -108,7 +88,7 @@ RSpec 3 is also moving away from the outer describe test type inference, as desc
108
88
 
109
89
  > Spec types are no longer inferred by location, they instead need to be explicitly tagged. The old behaviour is enabled by config.infer_spec_type_from_file_location!, which is still supplied in the default generated spec_helper.rb. (Xavier Shay, Myron Marston)
110
90
 
111
- Not that we want to mimic RSpec, but the aim of this gem is very straight forward and minimilistic. We simply want to expose the Minitest Spec::DSL and core assertion style within ActiveSupport. Period. So it is very possible that us matching outer describe to classes is simply going to go away one day soon.
91
+ Not that we want to mimic RSpec, but the aim of this gem is very straight forward and minimalistic. We simply want to expose the Minitest Spec::DSL and core assertion style within ActiveSupport. Period. So it is very possible that us matching outer describe to classes is simply going to go away one day soon.
112
92
 
113
93
  Just for reference, here is a full list of each of Rails test case we support.
114
94
 
@@ -233,6 +213,17 @@ describe Post do
233
213
  end
234
214
  ```
235
215
 
216
+ Alternatively, try the [mintest-matchers_vaccine](https://github.com/rmm5t/minitest-matchers_vaccine) gem to avoid _infecting_ the objects that you want to test.
217
+
218
+ ```ruby
219
+ describe User do
220
+ subject { User.new }
221
+ it "should validate email" do
222
+ must have_valid(:email).when("a@a.com", "foo@bar.com")
223
+ wont have_valid(:email).when(nil, "", "foo", "foo@bar")
224
+ end
225
+ end
226
+ ```
236
227
 
237
228
  ## Gotchas
238
229
 
@@ -293,6 +284,4 @@ We have a few branches for each major Rails version.
293
284
  * master - Currently tracks Rails 4.1 which uses Minitest 5.0.
294
285
 
295
286
  Our current build status is:
296
- [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.png)](http://travis-ci.org/metaskills/minitest-spec-rails)
297
-
298
-
287
+ [![Build Status](https://secure.travis-ci.org/metaskills/minitest-spec-rails.svg)](http://travis-ci.org/metaskills/minitest-spec-rails)
data/Rakefile CHANGED
@@ -1,11 +1,10 @@
1
1
  require 'bundler/gem_tasks'
2
2
  require 'rake/testtask'
3
3
 
4
- Rake::TestTask.new do |t|
5
- t.libs = ['lib','test']
6
- t.test_files = Dir.glob("test/**/*_test.rb").sort
4
+ Rake::TestTask.new do |t|
5
+ t.libs = %w[lib test]
6
+ t.test_files = Dir.glob('test/**/*_test.rb').sort
7
7
  t.verbose = true
8
8
  end
9
9
 
10
- task :default => :test
11
-
10
+ task default: :test
@@ -1,85 +1,84 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- minitest-spec-rails (5.4.0)
4
+ minitest-spec-rails (5.5.0)
5
5
  minitest (~> 5.0)
6
6
  rails (>= 4.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionmailer (4.1.15)
12
- actionpack (= 4.1.15)
13
- actionview (= 4.1.15)
11
+ actionmailer (4.1.16)
12
+ actionpack (= 4.1.16)
13
+ actionview (= 4.1.16)
14
14
  mail (~> 2.5, >= 2.5.4)
15
- actionpack (4.1.15)
16
- actionview (= 4.1.15)
17
- activesupport (= 4.1.15)
15
+ actionpack (4.1.16)
16
+ actionview (= 4.1.16)
17
+ activesupport (= 4.1.16)
18
18
  rack (~> 1.5.2)
19
19
  rack-test (~> 0.6.2)
20
- actionview (4.1.15)
21
- activesupport (= 4.1.15)
20
+ actionview (4.1.16)
21
+ activesupport (= 4.1.16)
22
22
  builder (~> 3.1)
23
23
  erubis (~> 2.7.0)
24
- activemodel (4.1.15)
25
- activesupport (= 4.1.15)
24
+ activemodel (4.1.16)
25
+ activesupport (= 4.1.16)
26
26
  builder (~> 3.1)
27
- activerecord (4.1.15)
28
- activemodel (= 4.1.15)
29
- activesupport (= 4.1.15)
27
+ activerecord (4.1.16)
28
+ activemodel (= 4.1.16)
29
+ activesupport (= 4.1.16)
30
30
  arel (~> 5.0.0)
31
- activesupport (4.1.15)
31
+ activesupport (4.1.16)
32
32
  i18n (~> 0.6, >= 0.6.9)
33
33
  json (~> 1.7, >= 1.7.7)
34
34
  minitest (~> 5.1)
35
35
  thread_safe (~> 0.1)
36
36
  tzinfo (~> 1.1)
37
- appraisal (2.1.0)
37
+ appraisal (2.2.0)
38
38
  bundler
39
39
  rake
40
40
  thor (>= 0.14.0)
41
41
  arel (5.0.1.20140414130214)
42
- builder (3.2.2)
43
- concurrent-ruby (1.0.2)
42
+ builder (3.2.3)
43
+ concurrent-ruby (1.1.4)
44
44
  erubis (2.7.0)
45
- i18n (0.7.0)
46
- json (1.8.3)
47
- mail (2.6.4)
48
- mime-types (>= 1.16, < 4)
49
- mime-types (3.1)
50
- mime-types-data (~> 3.2015)
51
- mime-types-data (3.2016.0521)
52
- minitest (5.9.0)
45
+ i18n (0.9.5)
46
+ concurrent-ruby (~> 1.0)
47
+ json (1.8.6)
48
+ mail (2.7.1)
49
+ mini_mime (>= 0.1.1)
50
+ mini_mime (1.0.1)
51
+ minitest (5.11.3)
53
52
  rack (1.5.5)
54
53
  rack-test (0.6.3)
55
54
  rack (>= 1.0)
56
- rails (4.1.15)
57
- actionmailer (= 4.1.15)
58
- actionpack (= 4.1.15)
59
- actionview (= 4.1.15)
60
- activemodel (= 4.1.15)
61
- activerecord (= 4.1.15)
62
- activesupport (= 4.1.15)
55
+ rails (4.1.16)
56
+ actionmailer (= 4.1.16)
57
+ actionpack (= 4.1.16)
58
+ actionview (= 4.1.16)
59
+ activemodel (= 4.1.16)
60
+ activerecord (= 4.1.16)
61
+ activesupport (= 4.1.16)
63
62
  bundler (>= 1.3.0, < 2.0)
64
- railties (= 4.1.15)
63
+ railties (= 4.1.16)
65
64
  sprockets-rails (~> 2.0)
66
- railties (4.1.15)
67
- actionpack (= 4.1.15)
68
- activesupport (= 4.1.15)
65
+ railties (4.1.16)
66
+ actionpack (= 4.1.16)
67
+ activesupport (= 4.1.16)
69
68
  rake (>= 0.8.7)
70
69
  thor (>= 0.18.1, < 2.0)
71
- rake (11.2.2)
72
- sprockets (3.6.0)
70
+ rake (12.3.2)
71
+ sprockets (3.7.2)
73
72
  concurrent-ruby (~> 1.0)
74
73
  rack (> 1, < 3)
75
74
  sprockets-rails (2.3.3)
76
75
  actionpack (>= 3.0)
77
76
  activesupport (>= 3.0)
78
77
  sprockets (>= 2.8, < 4.0)
79
- sqlite3 (1.3.11)
80
- thor (0.19.1)
81
- thread_safe (0.3.5)
82
- tzinfo (1.2.2)
78
+ sqlite3 (1.3.13)
79
+ thor (0.20.3)
80
+ thread_safe (0.3.6)
81
+ tzinfo (1.2.5)
83
82
  thread_safe (~> 0.1)
84
83
 
85
84
  PLATFORMS
@@ -93,4 +92,4 @@ DEPENDENCIES
93
92
  sqlite3
94
93
 
95
94
  BUNDLED WITH
96
- 1.12.4
95
+ 1.17.2
@@ -1,112 +1,109 @@
1
1
  PATH
2
- remote: ../
2
+ remote: ..
3
3
  specs:
4
- minitest-spec-rails (5.4.0)
4
+ minitest-spec-rails (5.5.0)
5
5
  minitest (~> 5.0)
6
6
  rails (>= 4.1)
7
7
 
8
8
  GEM
9
9
  remote: https://rubygems.org/
10
10
  specs:
11
- actionmailer (4.2.6)
12
- actionpack (= 4.2.6)
13
- actionview (= 4.2.6)
14
- activejob (= 4.2.6)
11
+ actionmailer (4.2.11)
12
+ actionpack (= 4.2.11)
13
+ actionview (= 4.2.11)
14
+ activejob (= 4.2.11)
15
15
  mail (~> 2.5, >= 2.5.4)
16
16
  rails-dom-testing (~> 1.0, >= 1.0.5)
17
- actionpack (4.2.6)
18
- actionview (= 4.2.6)
19
- activesupport (= 4.2.6)
17
+ actionpack (4.2.11)
18
+ actionview (= 4.2.11)
19
+ activesupport (= 4.2.11)
20
20
  rack (~> 1.6)
21
21
  rack-test (~> 0.6.2)
22
22
  rails-dom-testing (~> 1.0, >= 1.0.5)
23
23
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
24
- actionview (4.2.6)
25
- activesupport (= 4.2.6)
24
+ actionview (4.2.11)
25
+ activesupport (= 4.2.11)
26
26
  builder (~> 3.1)
27
27
  erubis (~> 2.7.0)
28
28
  rails-dom-testing (~> 1.0, >= 1.0.5)
29
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
30
- activejob (4.2.6)
31
- activesupport (= 4.2.6)
29
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
30
+ activejob (4.2.11)
31
+ activesupport (= 4.2.11)
32
32
  globalid (>= 0.3.0)
33
- activemodel (4.2.6)
34
- activesupport (= 4.2.6)
33
+ activemodel (4.2.11)
34
+ activesupport (= 4.2.11)
35
35
  builder (~> 3.1)
36
- activerecord (4.2.6)
37
- activemodel (= 4.2.6)
38
- activesupport (= 4.2.6)
36
+ activerecord (4.2.11)
37
+ activemodel (= 4.2.11)
38
+ activesupport (= 4.2.11)
39
39
  arel (~> 6.0)
40
- activesupport (4.2.6)
40
+ activesupport (4.2.11)
41
41
  i18n (~> 0.7)
42
- json (~> 1.7, >= 1.7.7)
43
42
  minitest (~> 5.1)
44
43
  thread_safe (~> 0.3, >= 0.3.4)
45
44
  tzinfo (~> 1.1)
46
- appraisal (2.1.0)
45
+ appraisal (2.2.0)
47
46
  bundler
48
47
  rake
49
48
  thor (>= 0.14.0)
50
- arel (6.0.3)
51
- builder (3.2.2)
52
- concurrent-ruby (1.0.2)
49
+ arel (6.0.4)
50
+ builder (3.2.3)
51
+ concurrent-ruby (1.1.4)
52
+ crass (1.0.4)
53
53
  erubis (2.7.0)
54
- globalid (0.3.6)
55
- activesupport (>= 4.1.0)
56
- i18n (0.7.0)
57
- json (1.8.3)
58
- loofah (2.0.3)
54
+ globalid (0.4.2)
55
+ activesupport (>= 4.2.0)
56
+ i18n (0.9.5)
57
+ concurrent-ruby (~> 1.0)
58
+ loofah (2.2.3)
59
+ crass (~> 1.0.2)
59
60
  nokogiri (>= 1.5.9)
60
- mail (2.6.4)
61
- mime-types (>= 1.16, < 4)
62
- mime-types (3.1)
63
- mime-types-data (~> 3.2015)
64
- mime-types-data (3.2016.0521)
65
- mini_portile2 (2.1.0)
66
- minitest (5.9.0)
67
- nokogiri (1.6.8)
68
- mini_portile2 (~> 2.1.0)
69
- pkg-config (~> 1.1.7)
70
- pkg-config (1.1.7)
71
- rack (1.6.4)
61
+ mail (2.7.1)
62
+ mini_mime (>= 0.1.1)
63
+ mini_mime (1.0.1)
64
+ mini_portile2 (2.4.0)
65
+ minitest (5.11.3)
66
+ nokogiri (1.9.1)
67
+ mini_portile2 (~> 2.4.0)
68
+ rack (1.6.11)
72
69
  rack-test (0.6.3)
73
70
  rack (>= 1.0)
74
- rails (4.2.6)
75
- actionmailer (= 4.2.6)
76
- actionpack (= 4.2.6)
77
- actionview (= 4.2.6)
78
- activejob (= 4.2.6)
79
- activemodel (= 4.2.6)
80
- activerecord (= 4.2.6)
81
- activesupport (= 4.2.6)
71
+ rails (4.2.11)
72
+ actionmailer (= 4.2.11)
73
+ actionpack (= 4.2.11)
74
+ actionview (= 4.2.11)
75
+ activejob (= 4.2.11)
76
+ activemodel (= 4.2.11)
77
+ activerecord (= 4.2.11)
78
+ activesupport (= 4.2.11)
82
79
  bundler (>= 1.3.0, < 2.0)
83
- railties (= 4.2.6)
80
+ railties (= 4.2.11)
84
81
  sprockets-rails
85
82
  rails-deprecated_sanitizer (1.0.3)
86
83
  activesupport (>= 4.2.0.alpha)
87
- rails-dom-testing (1.0.7)
88
- activesupport (>= 4.2.0.beta, < 5.0)
89
- nokogiri (~> 1.6.0)
84
+ rails-dom-testing (1.0.9)
85
+ activesupport (>= 4.2.0, < 5.0)
86
+ nokogiri (~> 1.6)
90
87
  rails-deprecated_sanitizer (>= 1.0.1)
91
- rails-html-sanitizer (1.0.3)
92
- loofah (~> 2.0)
93
- railties (4.2.6)
94
- actionpack (= 4.2.6)
95
- activesupport (= 4.2.6)
88
+ rails-html-sanitizer (1.0.4)
89
+ loofah (~> 2.2, >= 2.2.2)
90
+ railties (4.2.11)
91
+ actionpack (= 4.2.11)
92
+ activesupport (= 4.2.11)
96
93
  rake (>= 0.8.7)
97
94
  thor (>= 0.18.1, < 2.0)
98
- rake (11.2.2)
99
- sprockets (3.6.0)
95
+ rake (12.3.2)
96
+ sprockets (3.7.2)
100
97
  concurrent-ruby (~> 1.0)
101
98
  rack (> 1, < 3)
102
- sprockets-rails (3.0.4)
99
+ sprockets-rails (3.2.1)
103
100
  actionpack (>= 4.0)
104
101
  activesupport (>= 4.0)
105
102
  sprockets (>= 3.0.0)
106
- sqlite3 (1.3.11)
107
- thor (0.19.1)
108
- thread_safe (0.3.5)
109
- tzinfo (1.2.2)
103
+ sqlite3 (1.3.13)
104
+ thor (0.20.3)
105
+ thread_safe (0.3.6)
106
+ tzinfo (1.2.5)
110
107
  thread_safe (~> 0.1)
111
108
 
112
109
  PLATFORMS
@@ -120,4 +117,4 @@ DEPENDENCIES
120
117
  sqlite3
121
118
 
122
119
  BUNDLED WITH
123
- 1.12.4
120
+ 1.17.2