rails-rfc6570 3.0.0 → 3.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e7e8a03b1cefe0054439f9582d9d8befbba54e09c4d01ccc170f8e4be3d49295
4
- data.tar.gz: f45beb2b71490f95993245b3c34b9ff56724dd889486353ac763d1f373cc6346
3
+ metadata.gz: e08c49a682b11d96a082bba20aa20a83e75b941aa52d63526da319a0fd102a45
4
+ data.tar.gz: 99b8365786d3d1be62c62bc07b440a142467ce398d52738ed78e411d2efa7622
5
5
  SHA512:
6
- metadata.gz: 3d52809f1e00ac16f94dd1254601955b722456c23d4cd0c4eb0e322e1e618842ac2c7336acbc7b73f1c35a17cc80d62659dc3d2a94f39fea99f0d15bf8faf5c9
7
- data.tar.gz: f82e393910a7a48f9606de6a79439f35a267be250dd2d3c6eb2dd2efdf087393e7d1ddc87ed31b8ea4947b588b92f732ef1a748a88a4e33093279e553cf832dd
6
+ metadata.gz: caa9fd793ed6e78daeb352a487379e221f10ada497d4e5919cdd7e696ced43c00bb36deab883994887b48c6b9e2732bc7f0b248b9d962a18f574bfe27f986026
7
+ data.tar.gz: 4eda69cef8e02ad3ddb3ec77874b1a129b901562f67ac2d6bfbe70f466f93cdf83e023298629ffb328316c38854093251eb69e97341a6847dd80e67ced951ebc
data/CHANGELOG.md CHANGED
@@ -15,6 +15,14 @@ This project adheres to [Semantic Versioning](http://semver.org/) and [Keep a Ch
15
15
 
16
16
  ### Breaks
17
17
 
18
+ ## 3.1.0 - (2023-11-28)
19
+
20
+ ---
21
+
22
+ ### New
23
+
24
+ - Add support for Rails 7.1 by @jgraichen
25
+
18
26
  ## 3.0.0 - (2023-09-04)
19
27
 
20
28
  ---
data/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![Build Status](https://img.shields.io/github/actions/workflow/status/jgraichen/rails-rfc6570/test.yml?logo=github)](https://github.com/jgraichen/rails-rfc6570/actions/workflows/test.yml)
4
4
 
5
- Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 6.1, 7.0 and Ruby 2.7, 3.0, 3.1, 3.2.
5
+ Pragmatic access to your Rails routes as RFC6570 URI templates. Tested with Rails 6.1, 7.0, 7.1 and Ruby 2.7, 3.0, 3.1, 3.2.
6
6
 
7
7
  ## Installation
8
8
 
@@ -4,7 +4,7 @@ module Rails
4
4
  module RFC6570
5
5
  module VERSION
6
6
  MAJOR = 3
7
- MINOR = 0
7
+ MINOR = 1
8
8
  PATCH = 0
9
9
  STAGE = nil
10
10
 
@@ -27,6 +27,6 @@ Gem::Specification.new do |spec|
27
27
 
28
28
  spec.required_ruby_version = '>= 2.7'
29
29
 
30
- spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 7.1'
30
+ spec.add_runtime_dependency 'actionpack', '>= 4.2', '< 7.2'
31
31
  spec.add_runtime_dependency 'addressable', '~> 2.3'
32
32
  end
@@ -142,3 +142,51 @@ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 602)
142
142
  Started GET "/action" for 127.0.0.1 at 2023-09-04 09:33:48 +0200
143
143
  Processing by APIController#action as HTML
144
144
  Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 680)
145
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
146
+ Processing by APIController#index as HTML
147
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 832)
148
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
149
+ Processing by APIController#index as HTML
150
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 296)
151
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
152
+ Processing by APIController#index as HTML
153
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 296)
154
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
155
+ Processing by APIController#index as HTML
156
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 296)
157
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
158
+ Processing by APIController#index as HTML
159
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 296)
160
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
161
+ Processing by APIController#index as HTML
162
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 296)
163
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
164
+ Processing by APIController#index as HTML
165
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 296)
166
+ Started GET "/" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
167
+ Processing by APIController#index as HTML
168
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 296)
169
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
170
+ Processing by APIController#action as HTML
171
+ Completed 200 OK in 13ms (Views: 0.1ms | Allocations: 53148)
172
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
173
+ Processing by APIController#action as HTML
174
+ Completed 200 OK in 0ms (Views: 0.1ms | Allocations: 515)
175
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
176
+ Processing by APIController#action as HTML
177
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 515)
178
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
179
+ Processing by APIController#action as HTML
180
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 515)
181
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
182
+ Processing by APIController#action as HTML
183
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 515)
184
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
185
+ Processing by APIController#action as HTML
186
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 515)
187
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
188
+ Processing by APIController#action as HTML
189
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 515)
190
+ Started GET "/action" for 127.0.0.1 at 2023-11-28 00:23:53 +0100
191
+ Processing by APIController#action as HTML
192
+ Completed 200 OK in 0ms (Views: 0.0ms | Allocations: 595)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-rfc6570
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.0
4
+ version: 3.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jan Graichen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-09-04 00:00:00.000000000 Z
11
+ date: 2023-11-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: actionpack
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '4.2'
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '7.1'
22
+ version: '7.2'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '4.2'
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '7.1'
32
+ version: '7.2'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: addressable
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -112,7 +112,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
112
112
  - !ruby/object:Gem::Version
113
113
  version: '0'
114
114
  requirements: []
115
- rubygems_version: 3.4.18
115
+ rubygems_version: 3.4.22
116
116
  signing_key:
117
117
  specification_version: 4
118
118
  summary: Pragmatical access to your Rails routes as RFC6570 URI templates.