open_api_import 0.10.11 → 0.11.0
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/lib/open_api_import/filter.rb +28 -0
- data/lib/open_api_import/get_data_all_of_bodies.rb +22 -0
- data/lib/open_api_import/get_examples.rb +88 -0
- data/lib/open_api_import/get_patterns.rb +67 -0
- data/lib/open_api_import/get_required_data.rb +30 -0
- data/lib/open_api_import/get_response_examples.rb +104 -0
- data/lib/open_api_import/open_api_import.rb +693 -0
- data/lib/open_api_import/pretty_hash_symbolized.rb +18 -0
- data/lib/open_api_import.rb +10 -1027
- metadata +13 -5
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: open_api_import
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mario Ruiz
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2022-
|
|
11
|
+
date: 2022-09-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: oas_parser
|
|
@@ -30,14 +30,14 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0.
|
|
33
|
+
version: '0.13'
|
|
34
34
|
type: :runtime
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0.
|
|
40
|
+
version: '0.13'
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: nice_hash
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -122,6 +122,14 @@ files:
|
|
|
122
122
|
- README.md
|
|
123
123
|
- bin/open_api_import
|
|
124
124
|
- lib/open_api_import.rb
|
|
125
|
+
- lib/open_api_import/filter.rb
|
|
126
|
+
- lib/open_api_import/get_data_all_of_bodies.rb
|
|
127
|
+
- lib/open_api_import/get_examples.rb
|
|
128
|
+
- lib/open_api_import/get_patterns.rb
|
|
129
|
+
- lib/open_api_import/get_required_data.rb
|
|
130
|
+
- lib/open_api_import/get_response_examples.rb
|
|
131
|
+
- lib/open_api_import/open_api_import.rb
|
|
132
|
+
- lib/open_api_import/pretty_hash_symbolized.rb
|
|
125
133
|
- lib/open_api_import/utils.rb
|
|
126
134
|
homepage: https://github.com/MarioRuiz/open_api_import
|
|
127
135
|
licenses:
|
|
@@ -135,7 +143,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
135
143
|
requirements:
|
|
136
144
|
- - ">="
|
|
137
145
|
- !ruby/object:Gem::Version
|
|
138
|
-
version: '2.
|
|
146
|
+
version: '2.5'
|
|
139
147
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
148
|
requirements:
|
|
141
149
|
- - ">="
|