rspec-openapi 0.4.5 → 0.4.6
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/CHANGELOG.md +7 -2
- data/lib/rspec/openapi/record_builder.rb +6 -3
- data/lib/rspec/openapi/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f83672f313f4451abb668adf66697c74be2d0ad7866c6fbc433b2ef815e06419
|
|
4
|
+
data.tar.gz: 696c074c32d5ec4f6dfc0f5ea2ab02f9123a4b88a8ce7d09a4c8aada60fe1b6f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 232765a27c157fdbb1bd479b14987d095c0fce190e3b76cc10a4f8f3b990c253456af15a79924be632daaf0d08254e934b9da00f24c9779f4f9c4531b3f36bae
|
|
7
|
+
data.tar.gz: fbf0fb968a2d1afde12566cc472bb72a97b800101e60c640c1b7fa218a5563f993f48070532af6903c0cf1432a4142fd08235c1e9b6443847e5c2e4b6b22dfdb
|
data/CHANGELOG.md
CHANGED
|
@@ -1,11 +1,16 @@
|
|
|
1
|
+
## v0.4.6
|
|
2
|
+
|
|
3
|
+
* Fix "No route matched for" error in engine routes
|
|
4
|
+
[#38](https://github.com/k0kubun/rspec-openapi/pull/38)
|
|
5
|
+
|
|
1
6
|
## v0.4.5
|
|
2
7
|
|
|
3
|
-
|
|
8
|
+
* Fix linter issues for `tags` and `summary`
|
|
4
9
|
[#40](https://github.com/k0kubun/rspec-openapi/pull/40)
|
|
5
10
|
|
|
6
11
|
## v0.4.4
|
|
7
12
|
|
|
8
|
-
|
|
13
|
+
* De-duplicate parameters by a combination of `name` and `in`
|
|
9
14
|
[#39](https://github.com/k0kubun/rspec-openapi/pull/39)
|
|
10
15
|
|
|
11
16
|
## v0.4.3
|
|
@@ -79,10 +79,13 @@ class << RSpec::OpenAPI::RecordBuilder = Object.new
|
|
|
79
79
|
end
|
|
80
80
|
|
|
81
81
|
app.routes.router.recognize(request) do |route|
|
|
82
|
-
|
|
83
|
-
|
|
82
|
+
if route.app.matches?(request)
|
|
83
|
+
if route.app.engine?
|
|
84
|
+
return find_rails_route(request, app: route.app.app, fix_path: false)
|
|
85
|
+
else
|
|
86
|
+
return route
|
|
87
|
+
end
|
|
84
88
|
end
|
|
85
|
-
return route
|
|
86
89
|
end
|
|
87
90
|
raise "No route matched for #{request.request_method} #{request.path_info}"
|
|
88
91
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-openapi
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.6
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Kokubun
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-03-
|
|
11
|
+
date: 2022-03-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: actionpack
|
|
@@ -90,7 +90,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
90
90
|
- !ruby/object:Gem::Version
|
|
91
91
|
version: '0'
|
|
92
92
|
requirements: []
|
|
93
|
-
rubygems_version: 3.
|
|
93
|
+
rubygems_version: 3.1.2
|
|
94
94
|
signing_key:
|
|
95
95
|
specification_version: 4
|
|
96
96
|
summary: Generate OpenAPI schema from RSpec request specs
|