tomograph 3.1.3 → 3.1.4
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 +5 -0
- data/lib/tomograph/openapi/openapi2.rb +1 -0
- data/lib/tomograph/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8a6059c535fdbd1fff30f3199819041bb0644bff1c4f929838a3437aafbb41f9
|
|
4
|
+
data.tar.gz: a9f11fbdef09295dc5c608ee17bd53361565690f1833e2becb4adeaf3072fc55
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: '094e3770c8886e01a84a6bdacee39c2f4a89717aaf6ba5de6d39957d1a3f6218a65b0855c27761038d1a31f4030d0b97fb650fa01a605e4400dd48afca86e826'
|
|
7
|
+
data.tar.gz: 9a91a2874c9a3fc4c925d9b9f184e475d2ccb50b44f41aee1d99dfbb68f3414e69fa3657c705fd602f08209b691974e1ed7c5505a776881c572edc571a612862
|
data/CHANGELOG.md
CHANGED
|
@@ -11,6 +11,7 @@ module Tomograph
|
|
|
11
11
|
def to_tomogram
|
|
12
12
|
@tomogram ||= @documentation['paths'].each_with_object([]) do |action, result|
|
|
13
13
|
action[1].keys.each do |method|
|
|
14
|
+
next result if method == 'parameters'
|
|
14
15
|
result.push(Tomograph::Tomogram::Action.new(
|
|
15
16
|
path: "#{@prefix}#{action[0]}",
|
|
16
17
|
method: method.upcase,
|
data/lib/tomograph/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tomograph
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.4
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- d.efimov
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2023-02-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: methadone
|
|
@@ -184,7 +184,7 @@ homepage: https://github.com/funbox/tomograph
|
|
|
184
184
|
licenses:
|
|
185
185
|
- MIT
|
|
186
186
|
metadata: {}
|
|
187
|
-
post_install_message:
|
|
187
|
+
post_install_message:
|
|
188
188
|
rdoc_options: []
|
|
189
189
|
require_paths:
|
|
190
190
|
- lib
|
|
@@ -199,8 +199,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
199
199
|
- !ruby/object:Gem::Version
|
|
200
200
|
version: '0'
|
|
201
201
|
requirements: []
|
|
202
|
-
rubygems_version: 3.
|
|
203
|
-
signing_key:
|
|
202
|
+
rubygems_version: 3.2.22
|
|
203
|
+
signing_key:
|
|
204
204
|
specification_version: 4
|
|
205
205
|
summary: Convert API Blueprint, Swagger and OpenAPI to Tomogram
|
|
206
206
|
test_files: []
|