versioncake 4.0.0 → 4.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/.github/workflows/ruby.yml +33 -0
  3. data/Appraisals +9 -3
  4. data/CHANGELOG.md +42 -1
  5. data/Gemfile.lock +31 -29
  6. data/README.md +13 -11
  7. data/SECURITY.md +9 -0
  8. data/gemfiles/rails5.0.gemfile.lock +77 -72
  9. data/gemfiles/rails5.2.gemfile.lock +66 -62
  10. data/gemfiles/rails6.0.gemfile +3 -3
  11. data/gemfiles/rails6.0.gemfile.lock +73 -67
  12. data/gemfiles/rails7.0.gemfile +9 -0
  13. data/gemfiles/rails7.0.gemfile.lock +127 -0
  14. data/lib/versioncake/controller_additions.rb +0 -6
  15. data/lib/versioncake/railtie.rb +9 -0
  16. data/lib/versioncake/response_strategy/http_content_type_strategy.rb +4 -2
  17. data/lib/versioncake/strategies/extraction_strategy.rb +11 -7
  18. data/lib/versioncake/version.rb +1 -1
  19. data/lib/versioncake/version_checker.rb +2 -1
  20. data/lib/versioncake/version_context_service.rb +1 -1
  21. data/lib/versioncake/versioned_request.rb +1 -1
  22. data/lib/versioncake/view_additions.rb +8 -88
  23. data/lib/versioncake/view_additions_rails5.rb +70 -0
  24. data/lib/versioncake/view_additions_rails6.rb +69 -0
  25. data/lib/versioncake/view_additions_rails7.rb +155 -0
  26. data/lib/versioncake.rb +3 -1
  27. data/spec/integration/controller/unversioned_controller_spec.rb +1 -1
  28. data/spec/integration/view/render_spec.rb +8 -1
  29. data/spec/integration/view/view_additions_rails5_spec.rb +67 -0
  30. data/spec/integration/view/view_additions_rails6_spec.rb +44 -0
  31. data/spec/integration/view/view_additions_rails7_spec.rb +76 -0
  32. data/spec/unit/strategies/extraction_strategy_spec.rb +2 -2
  33. data/spec/unit/version_checker_spec.rb +1 -1
  34. data/spec/unit/versioned_request_spec.rb +0 -7
  35. data/versioncake.gemspec +5 -5
  36. metadata +29 -20
  37. data/.travis.yml +0 -20
  38. data/spec/integration/view/view_additions_spec.rb +0 -42
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 696e791d2898b34ffbe47306b0e7c2aad37dc5a3e9e6b0591805b5b6dd195d13
4
- data.tar.gz: e570aacf53b0bd9fc7342d3a308b84567024771e2b894cd27dc5e740479e8bba
3
+ metadata.gz: 8842743fe7db85ac3a43187bd68943c370198ef81c4a482762e5596d00ef7aec
4
+ data.tar.gz: d8414afd0fa212b93cfcce8fb108ac2f41169db83686be15e84933c9d23da3ae
5
5
  SHA512:
6
- metadata.gz: 78c9959d5e58a4b19a383722e3a002b17025778570f3ff7deff0136b568b5848cb7f5e707c450092f97afe7ea067da551e3e6aa1fbabebd2c3b522a9e4ebdc3f
7
- data.tar.gz: e622bf39372ccbf1c00c7fad62f818c287fb68b218461cccef484924b2943d786443971af0dfdf11acdcb5e1a1ddb477f304bab2b7696107dfd5631b87485301
6
+ metadata.gz: 283e40c62659da970b9717789d3e904dd294ee475b6d89af3dd2b4839232edfb63f15c93c6162c3facf8b7104c453317ed781a8855c161145bef06231e4821f0
7
+ data.tar.gz: bcb5202fd664bf40a682802c8a64630f9f66fa042f87b544aab65730694474ded842e2bc0a04c8c0c9b95d5accaaa0ec35dfc0bd4258499fd30c4058cfb89b9a
@@ -0,0 +1,33 @@
1
+ name: Ruby
2
+
3
+ on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ branches: [ master ]
8
+
9
+ jobs:
10
+ test:
11
+ name: Specs
12
+ runs-on: ubuntu-latest
13
+
14
+ strategy:
15
+ matrix:
16
+ ruby:
17
+ - 2.7
18
+ gemfile:
19
+ - gemfiles/rails5.0.gemfile
20
+ - gemfiles/rails5.2.gemfile
21
+ - gemfiles/rails6.0.gemfile
22
+ - gemfiles/rails7.0.gemfile
23
+
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - name: Set up Ruby ${{ matrix.ruby }}
27
+ uses: ruby/setup-ruby@v1
28
+ with:
29
+ ruby-version: ${{ matrix.ruby }}
30
+ - name: Install dependencies
31
+ run: bundle install --gemfile=${{matrix.gemfile}}
32
+ - name: Run tests
33
+ run: bundle exec --gemfile=${{matrix.gemfile}} rake
data/Appraisals CHANGED
@@ -11,7 +11,13 @@ appraise "rails5.2" do
11
11
  end
12
12
 
13
13
  appraise "rails6.0" do
14
- gem('actionpack', '~> 5.2.0')
15
- gem('activesupport', '~> 5.2.0')
16
- gem('railties', '~> 5.2.0')
14
+ gem('actionpack', '~> 6.0.0')
15
+ gem('activesupport', '~> 6.0.0')
16
+ gem('railties', '~> 6.0.0')
17
+ end
18
+
19
+ appraise "rails7.0" do
20
+ gem('actionpack', '~> 7.0.0')
21
+ gem('activesupport', '~> 7.0.0')
22
+ gem('railties', '~> 7.0.0')
17
23
  end
data/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ## Unreleased Changes
2
2
 
3
- [Full Changelog](https://github.com/bwillis/versioncake/compare/v4.0...master)
3
+ [Full Changelog](https://github.com/bwillis/versioncake/compare/v4.1...master)
4
4
 
5
5
  Bug Fixes:
6
6
 
@@ -11,7 +11,48 @@ Enhancements:
11
11
  * None
12
12
 
13
13
  Deprecations:
14
+ * None
15
+
16
+ ## 4.1.0 (March 31, 2022)
17
+
18
+ Bug Fixes:
19
+
20
+ * FronzeError bug in content type strategy (#100)
21
+ *
22
+
23
+ Enhancements:
24
+
25
+ * Rails 7 support (#108)
26
+ * Raise (and catch) more specific exceptions (#105)
27
+
28
+ Deprecations:
29
+ * None
30
+
31
+ ## 4.0.2 (June 5, 2020)
32
+
33
+ Bug Fixes:
34
+
35
+ * Responses error in Rails API only (#76) thanks [JamesCarscadden](https://github.com/JamesCarscadden)
36
+
37
+ Enhancements:
38
+
39
+ * None
40
+
41
+ Deprecations:
42
+
43
+ * None
44
+
45
+ ## 4.0.1 (March 11, 2020)
14
46
 
47
+ Bug Fixes:
48
+
49
+ * Dependencies not set properly for Rails 6 (#87)
50
+
51
+ Enhancements:
52
+
53
+ * None
54
+
55
+ Deprecations:
15
56
  * None
16
57
 
17
58
  ## 4.0.0 (March 10, 2020)
data/Gemfile.lock CHANGED
@@ -1,29 +1,29 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- versioncake (4.0.0)
5
- actionpack (~> 5.0)
6
- activesupport (~> 5.0)
7
- railties (~> 5.0)
8
- tzinfo (~> 1.2)
4
+ versioncake (4.1.0)
5
+ actionpack (> 5.0)
6
+ activesupport (> 5.0)
7
+ railties (> 5.0)
8
+ tzinfo (> 1.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionpack (5.2.4.1)
14
- actionview (= 5.2.4.1)
15
- activesupport (= 5.2.4.1)
13
+ actionpack (5.2.6.2)
14
+ actionview (= 5.2.6.2)
15
+ activesupport (= 5.2.6.2)
16
16
  rack (~> 2.0, >= 2.0.8)
17
17
  rack-test (>= 0.6.3)
18
18
  rails-dom-testing (~> 2.0)
19
19
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
20
- actionview (5.2.4.1)
21
- activesupport (= 5.2.4.1)
20
+ actionview (5.2.6.2)
21
+ activesupport (= 5.2.6.2)
22
22
  builder (~> 3.1)
23
23
  erubi (~> 1.4)
24
24
  rails-dom-testing (~> 2.0)
25
25
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
26
- activesupport (5.2.4.1)
26
+ activesupport (5.2.6.2)
27
27
  concurrent-ruby (~> 1.0, >= 1.0.2)
28
28
  i18n (>= 0.7, < 2)
29
29
  minitest (~> 5.1)
@@ -33,7 +33,7 @@ GEM
33
33
  rake
34
34
  thor (>= 0.14.0)
35
35
  builder (3.2.4)
36
- concurrent-ruby (1.1.6)
36
+ concurrent-ruby (1.1.9)
37
37
  coveralls (0.8.21)
38
38
  json (>= 1.8, < 3)
39
39
  simplecov (~> 0.14.1)
@@ -43,29 +43,31 @@ GEM
43
43
  crass (1.0.6)
44
44
  diff-lcs (1.3)
45
45
  docile (1.1.5)
46
- erubi (1.9.0)
47
- i18n (1.8.2)
46
+ erubi (1.10.0)
47
+ i18n (1.9.1)
48
48
  concurrent-ruby (~> 1.0)
49
- json (2.1.0)
50
- loofah (2.4.0)
49
+ json (2.3.0)
50
+ loofah (2.14.0)
51
51
  crass (~> 1.0.2)
52
52
  nokogiri (>= 1.5.9)
53
- method_source (0.9.2)
54
- mini_portile2 (2.4.0)
55
- minitest (5.14.0)
56
- nokogiri (1.10.9)
57
- mini_portile2 (~> 2.4.0)
58
- rack (2.2.2)
53
+ method_source (1.0.0)
54
+ mini_portile2 (2.8.0)
55
+ minitest (5.15.0)
56
+ nokogiri (1.13.3)
57
+ mini_portile2 (~> 2.8.0)
58
+ racc (~> 1.4)
59
+ racc (1.6.0)
60
+ rack (2.2.3)
59
61
  rack-test (1.1.0)
60
62
  rack (>= 1.0, < 3)
61
63
  rails-dom-testing (2.0.3)
62
64
  activesupport (>= 4.2.0)
63
65
  nokogiri (>= 1.6)
64
- rails-html-sanitizer (1.3.0)
66
+ rails-html-sanitizer (1.4.2)
65
67
  loofah (~> 2.3)
66
- railties (5.2.4.1)
67
- actionpack (= 5.2.4.1)
68
- activesupport (= 5.2.4.1)
68
+ railties (5.2.6.2)
69
+ actionpack (= 5.2.6.2)
70
+ activesupport (= 5.2.6.2)
69
71
  method_source
70
72
  rake (>= 0.8.7)
71
73
  thor (>= 0.19.0, < 2.0)
@@ -101,7 +103,7 @@ GEM
101
103
  thor (0.19.4)
102
104
  thread_safe (0.3.6)
103
105
  tins (1.15.0)
104
- tzinfo (1.2.6)
106
+ tzinfo (1.2.9)
105
107
  thread_safe (~> 0.1)
106
108
 
107
109
  PLATFORMS
@@ -110,10 +112,10 @@ PLATFORMS
110
112
  DEPENDENCIES
111
113
  appraisal (~> 2.2)
112
114
  coveralls (~> 0.8)
113
- rake (~> 13.0)
115
+ rake (> 12.0)
114
116
  rspec (~> 3.6)
115
117
  rspec-rails (~> 3.6)
116
118
  versioncake!
117
119
 
118
120
  BUNDLED WITH
119
- 1.17.2
121
+ 2.2.15
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  ![Version Cake](https://raw.github.com/alicial/versioncake/master/images/versioncake-logo450x100.png)
2
2
 
3
- [![Build Status](https://secure.travis-ci.org/bwillis/versioncake.png?branch=master)](http://travis-ci.org/bwillis/versioncake)
3
+ ![Ruby](https://github.com/bwillis/versioncake/workflows/Ruby/badge.svg?branch=master)
4
4
  [![Code Climate](https://codeclimate.com/github/bwillis/versioncake.png)](https://codeclimate.com/github/bwillis/versioncake)
5
5
  [![Coverage Status](https://coveralls.io/repos/bwillis/versioncake/badge.png?branch=master)](https://coveralls.io/r/bwillis/versioncake)
6
6
  [![Gem Version](https://badge.fury.io/rb/versioncake.png)](http://badge.fury.io/rb/versioncake)
@@ -33,16 +33,17 @@ rails g versioncake:install
33
33
 
34
34
  ### Requirements
35
35
 
36
- | Version | Rails 3.2 Support? | Rails 4 Support? | Rails >4.1 Support? | Rails >5 Support? | Rails >5.2 Support? | [Rails API](https://github.com/rails-api/rails-api) 0.2 Support? |
37
- | -------:|:---------:| -------:| -------:| -------:| -------:| -------:|
38
- | [1.0](CHANGELOG.md#100-march-14-2013) | Yes | No | No | No | No | No |
39
- | [1.1](CHANGELOG.md#110-may-18-2013) | Yes | No | No | No | No | No |
40
- | [1.2](CHANGELOG.md#120-may-26-2013) | Yes | Yes | No | No | No | No |
41
- | [1.3](CHANGELOG.md#130-sept-26-2013) | Yes | Yes | No | No | No | No |
42
- | [>2.0](CHANGELOG.md#200-feb-6-2014) | Yes | Yes | Yes | No | No | No |
43
- | [>2.4](CHANGELOG.md#200-feb-6-2014) | Yes | Yes | Yes | No | No | Yes |
44
- | [>3.0](CHANGELOG.md) | Yes | Yes | Yes | Yes | No | Yes |
45
- | [>3.3](CHANGELOG.md) | Yes | Yes | Yes | Yes | Yes | Yes |
36
+ | Version | Rails 3.2 Support? | Rails 4 Support? | Rails >4.1 Support? | Rails >5 Support? | Rails >5.2 Support? | Rails 6 Support? | [Rails API](https://github.com/rails-api/rails-api) 0.2 Support? |
37
+ | -------:|:---------:| -------:| -------:| -------:| -------:| -------:| -------:|
38
+ | [1.0](CHANGELOG.md#100-march-14-2013) | Yes | No | No | No | No | No | No |
39
+ | [1.1](CHANGELOG.md#110-may-18-2013) | Yes | No | No | No | No | No | No |
40
+ | [1.2](CHANGELOG.md#120-may-26-2013) | Yes | Yes | No | No | No | No | No |
41
+ | [1.3](CHANGELOG.md#130-sept-26-2013) | Yes | Yes | No | No | No | No | No |
42
+ | [>2.0](CHANGELOG.md#200-feb-6-2014) | Yes | Yes | Yes | No | No | No | No |
43
+ | [>2.4](CHANGELOG.md#200-feb-6-2014) | Yes | Yes | Yes | No | No | No | Yes |
44
+ | [>3.0](CHANGELOG.md#300-aug-3-2015) | Yes | Yes | Yes | Yes | No | No | Yes |
45
+ | [>3.3](CHANGELOG.md#330-may-7-2017) | Yes | Yes | Yes | Yes | Yes | No | Yes |
46
+ | [>4.0](CHANGELOG.md) | No | No | Yes | Yes | Yes | Yes | Yes |
46
47
 
47
48
  ## Upgrade v2.0 -> v3.0
48
49
 
@@ -436,6 +437,7 @@ Thanks to all those who have helped make Version Cake really sweet:
436
437
  * [Ersin Akinci](https://github.com/earksiinni)
437
438
  * [Bartosz Bonisławski](https://github.com/bbonislawski)
438
439
  * [Harry Lascelles](https://github.com/hlascelles)
440
+ * [James Carscadden](https://github.com/JamesCarscadden)
439
441
 
440
442
  # Related Material
441
443
 
data/SECURITY.md ADDED
@@ -0,0 +1,9 @@
1
+ # Security Policy
2
+
3
+ ## Supported Versions
4
+
5
+ Only the latest major version will be supported for security patches. We may consider backporting depending on severity of the issue.
6
+
7
+ ## Reporting a Vulnerability
8
+
9
+ If you think you have a security vulnerability, please submit the issue and the details to https://hackerone.com/versioncake
@@ -1,106 +1,111 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- versioncake (3.4.0)
5
- actionpack (>= 5.0)
6
- activesupport (>= 5.0)
7
- railties (>= 5.0)
8
- tzinfo
4
+ versioncake (4.1.0)
5
+ actionpack (> 5.0)
6
+ activesupport (> 5.0)
7
+ railties (> 5.0)
8
+ tzinfo (> 1.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionpack (5.0.0)
14
- actionview (= 5.0.0)
15
- activesupport (= 5.0.0)
13
+ actionpack (5.0.7.2)
14
+ actionview (= 5.0.7.2)
15
+ activesupport (= 5.0.7.2)
16
16
  rack (~> 2.0)
17
17
  rack-test (~> 0.6.3)
18
18
  rails-dom-testing (~> 2.0)
19
19
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
20
- actionview (5.0.0)
21
- activesupport (= 5.0.0)
20
+ actionview (5.0.7.2)
21
+ activesupport (= 5.0.7.2)
22
22
  builder (~> 3.1)
23
23
  erubis (~> 2.7.0)
24
24
  rails-dom-testing (~> 2.0)
25
- rails-html-sanitizer (~> 1.0, >= 1.0.2)
26
- activesupport (5.0.0)
25
+ rails-html-sanitizer (~> 1.0, >= 1.0.3)
26
+ activesupport (5.0.7.2)
27
27
  concurrent-ruby (~> 1.0, >= 1.0.2)
28
- i18n (~> 0.7)
28
+ i18n (>= 0.7, < 2)
29
29
  minitest (~> 5.1)
30
30
  tzinfo (~> 1.1)
31
- appraisal (2.1.0)
31
+ appraisal (2.4.1)
32
32
  bundler
33
33
  rake
34
34
  thor (>= 0.14.0)
35
- builder (3.2.2)
36
- concurrent-ruby (1.0.2)
37
- coveralls (0.8.15)
35
+ builder (3.2.4)
36
+ concurrent-ruby (1.1.9)
37
+ coveralls (0.8.23)
38
38
  json (>= 1.8, < 3)
39
- simplecov (~> 0.12.0)
39
+ simplecov (~> 0.16.1)
40
40
  term-ansicolor (~> 1.3)
41
- thor (~> 0.19.1)
42
- tins (>= 1.6.0, < 2)
43
- diff-lcs (1.2.5)
44
- docile (1.1.5)
41
+ thor (>= 0.19.4, < 2.0)
42
+ tins (~> 1.6)
43
+ crass (1.0.6)
44
+ diff-lcs (1.5.0)
45
+ docile (1.4.0)
45
46
  erubis (2.7.0)
46
- i18n (0.7.0)
47
- json (2.0.2)
48
- loofah (2.0.3)
47
+ i18n (1.8.11)
48
+ concurrent-ruby (~> 1.0)
49
+ json (2.6.1)
50
+ loofah (2.13.0)
51
+ crass (~> 1.0.2)
49
52
  nokogiri (>= 1.5.9)
50
- method_source (0.8.2)
51
- mini_portile2 (2.1.0)
52
- minitest (5.9.0)
53
- nokogiri (1.6.8)
54
- mini_portile2 (~> 2.1.0)
55
- pkg-config (~> 1.1.7)
56
- pkg-config (1.1.7)
57
- rack (2.0.1)
53
+ method_source (1.0.0)
54
+ mini_portile2 (2.7.1)
55
+ minitest (5.15.0)
56
+ nokogiri (1.13.1)
57
+ mini_portile2 (~> 2.7.0)
58
+ racc (~> 1.4)
59
+ racc (1.6.0)
60
+ rack (2.2.3)
58
61
  rack-test (0.6.3)
59
62
  rack (>= 1.0)
60
- rails-dom-testing (2.0.1)
61
- activesupport (>= 4.2.0, < 6.0)
62
- nokogiri (~> 1.6.0)
63
- rails-html-sanitizer (1.0.3)
64
- loofah (~> 2.0)
65
- railties (5.0.0)
66
- actionpack (= 5.0.0)
67
- activesupport (= 5.0.0)
63
+ rails-dom-testing (2.0.3)
64
+ activesupport (>= 4.2.0)
65
+ nokogiri (>= 1.6)
66
+ rails-html-sanitizer (1.4.2)
67
+ loofah (~> 2.3)
68
+ railties (5.0.7.2)
69
+ actionpack (= 5.0.7.2)
70
+ activesupport (= 5.0.7.2)
68
71
  method_source
69
72
  rake (>= 0.8.7)
70
73
  thor (>= 0.18.1, < 2.0)
71
- rake (11.2.2)
72
- rspec (3.5.0)
73
- rspec-core (~> 3.5.0)
74
- rspec-expectations (~> 3.5.0)
75
- rspec-mocks (~> 3.5.0)
76
- rspec-core (3.5.2)
77
- rspec-support (~> 3.5.0)
78
- rspec-expectations (3.5.0)
74
+ rake (13.0.6)
75
+ rspec (3.9.0)
76
+ rspec-core (~> 3.9.0)
77
+ rspec-expectations (~> 3.9.0)
78
+ rspec-mocks (~> 3.9.0)
79
+ rspec-core (3.9.3)
80
+ rspec-support (~> 3.9.3)
81
+ rspec-expectations (3.9.4)
79
82
  diff-lcs (>= 1.2.0, < 2.0)
80
- rspec-support (~> 3.5.0)
81
- rspec-mocks (3.5.0)
83
+ rspec-support (~> 3.9.0)
84
+ rspec-mocks (3.9.1)
82
85
  diff-lcs (>= 1.2.0, < 2.0)
83
- rspec-support (~> 3.5.0)
84
- rspec-rails (3.5.1)
86
+ rspec-support (~> 3.9.0)
87
+ rspec-rails (3.9.1)
85
88
  actionpack (>= 3.0)
86
89
  activesupport (>= 3.0)
87
90
  railties (>= 3.0)
88
- rspec-core (~> 3.5.0)
89
- rspec-expectations (~> 3.5.0)
90
- rspec-mocks (~> 3.5.0)
91
- rspec-support (~> 3.5.0)
92
- rspec-support (3.5.0)
93
- simplecov (0.12.0)
94
- docile (~> 1.1.0)
91
+ rspec-core (~> 3.9.0)
92
+ rspec-expectations (~> 3.9.0)
93
+ rspec-mocks (~> 3.9.0)
94
+ rspec-support (~> 3.9.0)
95
+ rspec-support (3.9.4)
96
+ simplecov (0.16.1)
97
+ docile (~> 1.1)
95
98
  json (>= 1.8, < 3)
96
99
  simplecov-html (~> 0.10.0)
97
- simplecov-html (0.10.0)
98
- term-ansicolor (1.3.2)
100
+ simplecov-html (0.10.2)
101
+ sync (0.5.0)
102
+ term-ansicolor (1.7.1)
99
103
  tins (~> 1.0)
100
- thor (0.19.1)
101
- thread_safe (0.3.5)
102
- tins (1.12.0)
103
- tzinfo (1.2.2)
104
+ thor (1.2.1)
105
+ thread_safe (0.3.6)
106
+ tins (1.31.0)
107
+ sync
108
+ tzinfo (1.2.9)
104
109
  thread_safe (~> 0.1)
105
110
 
106
111
  PLATFORMS
@@ -109,13 +114,13 @@ PLATFORMS
109
114
  DEPENDENCIES
110
115
  actionpack (~> 5.0.0)
111
116
  activesupport (~> 5.0.0)
112
- appraisal
113
- coveralls
117
+ appraisal (~> 2.2)
118
+ coveralls (~> 0.8)
114
119
  railties (~> 5.0.0)
115
- rake
116
- rspec
117
- rspec-rails
120
+ rake (> 12.0)
121
+ rspec (~> 3.6)
122
+ rspec-rails (~> 3.6)
118
123
  versioncake!
119
124
 
120
125
  BUNDLED WITH
121
- 1.17.2
126
+ 2.2.15
@@ -1,107 +1,111 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- versioncake (3.4.0)
5
- actionpack (>= 5.0)
6
- activesupport (>= 5.0)
7
- railties (>= 5.0)
8
- tzinfo
4
+ versioncake (4.1.0)
5
+ actionpack (> 5.0)
6
+ activesupport (> 5.0)
7
+ railties (> 5.0)
8
+ tzinfo (> 1.2)
9
9
 
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- actionpack (5.2.3)
14
- actionview (= 5.2.3)
15
- activesupport (= 5.2.3)
16
- rack (~> 2.0)
13
+ actionpack (5.2.6)
14
+ actionview (= 5.2.6)
15
+ activesupport (= 5.2.6)
16
+ rack (~> 2.0, >= 2.0.8)
17
17
  rack-test (>= 0.6.3)
18
18
  rails-dom-testing (~> 2.0)
19
19
  rails-html-sanitizer (~> 1.0, >= 1.0.2)
20
- actionview (5.2.3)
21
- activesupport (= 5.2.3)
20
+ actionview (5.2.6)
21
+ activesupport (= 5.2.6)
22
22
  builder (~> 3.1)
23
23
  erubi (~> 1.4)
24
24
  rails-dom-testing (~> 2.0)
25
25
  rails-html-sanitizer (~> 1.0, >= 1.0.3)
26
- activesupport (5.2.3)
26
+ activesupport (5.2.6)
27
27
  concurrent-ruby (~> 1.0, >= 1.0.2)
28
28
  i18n (>= 0.7, < 2)
29
29
  minitest (~> 5.1)
30
30
  tzinfo (~> 1.1)
31
- appraisal (2.2.0)
31
+ appraisal (2.4.1)
32
32
  bundler
33
33
  rake
34
34
  thor (>= 0.14.0)
35
35
  builder (3.2.4)
36
- concurrent-ruby (1.1.6)
37
- coveralls (0.8.21)
36
+ concurrent-ruby (1.1.9)
37
+ coveralls (0.8.23)
38
38
  json (>= 1.8, < 3)
39
- simplecov (~> 0.14.1)
39
+ simplecov (~> 0.16.1)
40
40
  term-ansicolor (~> 1.3)
41
- thor (~> 0.19.4)
41
+ thor (>= 0.19.4, < 2.0)
42
42
  tins (~> 1.6)
43
43
  crass (1.0.6)
44
- diff-lcs (1.3)
45
- docile (1.1.5)
46
- erubi (1.9.0)
47
- i18n (1.8.2)
44
+ diff-lcs (1.5.0)
45
+ docile (1.4.0)
46
+ erubi (1.10.0)
47
+ i18n (1.8.11)
48
48
  concurrent-ruby (~> 1.0)
49
- json (2.2.0)
50
- loofah (2.4.0)
49
+ json (2.6.1)
50
+ loofah (2.13.0)
51
51
  crass (~> 1.0.2)
52
52
  nokogiri (>= 1.5.9)
53
- method_source (0.9.2)
54
- mini_portile2 (2.4.0)
55
- minitest (5.14.0)
56
- nokogiri (1.10.9)
57
- mini_portile2 (~> 2.4.0)
58
- rack (2.2.2)
53
+ method_source (1.0.0)
54
+ mini_portile2 (2.7.1)
55
+ minitest (5.15.0)
56
+ nokogiri (1.13.1)
57
+ mini_portile2 (~> 2.7.0)
58
+ racc (~> 1.4)
59
+ racc (1.6.0)
60
+ rack (2.2.3)
59
61
  rack-test (1.1.0)
60
62
  rack (>= 1.0, < 3)
61
63
  rails-dom-testing (2.0.3)
62
64
  activesupport (>= 4.2.0)
63
65
  nokogiri (>= 1.6)
64
- rails-html-sanitizer (1.3.0)
66
+ rails-html-sanitizer (1.4.2)
65
67
  loofah (~> 2.3)
66
- railties (5.2.3)
67
- actionpack (= 5.2.3)
68
- activesupport (= 5.2.3)
68
+ railties (5.2.6)
69
+ actionpack (= 5.2.6)
70
+ activesupport (= 5.2.6)
69
71
  method_source
70
72
  rake (>= 0.8.7)
71
73
  thor (>= 0.19.0, < 2.0)
72
- rake (13.0.1)
73
- rspec (3.7.0)
74
- rspec-core (~> 3.7.0)
75
- rspec-expectations (~> 3.7.0)
76
- rspec-mocks (~> 3.7.0)
77
- rspec-core (3.7.1)
78
- rspec-support (~> 3.7.0)
79
- rspec-expectations (3.7.0)
74
+ rake (13.0.6)
75
+ rspec (3.9.0)
76
+ rspec-core (~> 3.9.0)
77
+ rspec-expectations (~> 3.9.0)
78
+ rspec-mocks (~> 3.9.0)
79
+ rspec-core (3.9.3)
80
+ rspec-support (~> 3.9.3)
81
+ rspec-expectations (3.9.4)
80
82
  diff-lcs (>= 1.2.0, < 2.0)
81
- rspec-support (~> 3.7.0)
82
- rspec-mocks (3.7.0)
83
+ rspec-support (~> 3.9.0)
84
+ rspec-mocks (3.9.1)
83
85
  diff-lcs (>= 1.2.0, < 2.0)
84
- rspec-support (~> 3.7.0)
85
- rspec-rails (3.7.2)
86
+ rspec-support (~> 3.9.0)
87
+ rspec-rails (3.9.1)
86
88
  actionpack (>= 3.0)
87
89
  activesupport (>= 3.0)
88
90
  railties (>= 3.0)
89
- rspec-core (~> 3.7.0)
90
- rspec-expectations (~> 3.7.0)
91
- rspec-mocks (~> 3.7.0)
92
- rspec-support (~> 3.7.0)
93
- rspec-support (3.7.1)
94
- simplecov (0.14.1)
95
- docile (~> 1.1.0)
91
+ rspec-core (~> 3.9.0)
92
+ rspec-expectations (~> 3.9.0)
93
+ rspec-mocks (~> 3.9.0)
94
+ rspec-support (~> 3.9.0)
95
+ rspec-support (3.9.4)
96
+ simplecov (0.16.1)
97
+ docile (~> 1.1)
96
98
  json (>= 1.8, < 3)
97
99
  simplecov-html (~> 0.10.0)
98
100
  simplecov-html (0.10.2)
99
- term-ansicolor (1.6.0)
101
+ sync (0.5.0)
102
+ term-ansicolor (1.7.1)
100
103
  tins (~> 1.0)
101
- thor (0.19.4)
104
+ thor (1.2.1)
102
105
  thread_safe (0.3.6)
103
- tins (1.15.0)
104
- tzinfo (1.2.6)
106
+ tins (1.31.0)
107
+ sync
108
+ tzinfo (1.2.9)
105
109
  thread_safe (~> 0.1)
106
110
 
107
111
  PLATFORMS
@@ -110,13 +114,13 @@ PLATFORMS
110
114
  DEPENDENCIES
111
115
  actionpack (~> 5.2.0)
112
116
  activesupport (~> 5.2.0)
113
- appraisal
114
- coveralls
117
+ appraisal (~> 2.2)
118
+ coveralls (~> 0.8)
115
119
  railties (~> 5.2.0)
116
- rake
117
- rspec
118
- rspec-rails
120
+ rake (> 12.0)
121
+ rspec (~> 3.6)
122
+ rspec-rails (~> 3.6)
119
123
  versioncake!
120
124
 
121
125
  BUNDLED WITH
122
- 1.17.2
126
+ 2.2.15