pokeapi_client 0.9.1 → 1.0.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/Gemfile.lock +28 -26
- data/README.md +7 -5
- data/bin/bundle +5 -10
- data/bin/byebug +1 -1
- data/bin/coderay +1 -1
- data/bin/htmldiff +1 -1
- data/bin/ldiff +1 -1
- data/bin/pry +1 -1
- data/bin/racc +27 -0
- data/bin/rake +1 -1
- data/bin/rspec +1 -1
- data/bin/rubocop +1 -1
- data/bin/ruby-parse +1 -1
- data/bin/ruby-rewrite +1 -1
- data/lib/pokeapi_client/api/ability_api.rb +4 -2
- data/lib/pokeapi_client/api/berry_api.rb +4 -2
- data/lib/pokeapi_client/api/berry_firmness_api.rb +4 -2
- data/lib/pokeapi_client/api/berry_flavor_api.rb +4 -2
- data/lib/pokeapi_client/api/characteristic_api.rb +4 -2
- data/lib/pokeapi_client/api/contest_effect_api.rb +4 -2
- data/lib/pokeapi_client/api/contest_type_api.rb +4 -2
- data/lib/pokeapi_client/api/egg_group_api.rb +4 -2
- data/lib/pokeapi_client/api/encounter_condition_api.rb +4 -2
- data/lib/pokeapi_client/api/encounter_condition_value_api.rb +4 -2
- data/lib/pokeapi_client/api/encounter_method_api.rb +4 -2
- data/lib/pokeapi_client/api/evolution_chain_api.rb +4 -2
- data/lib/pokeapi_client/api/evolution_trigger_api.rb +4 -2
- data/lib/pokeapi_client/api/gender_api.rb +4 -2
- data/lib/pokeapi_client/api/generation_api.rb +4 -2
- data/lib/pokeapi_client/api/growth_rate_api.rb +4 -2
- data/lib/pokeapi_client/api/item_api.rb +4 -2
- data/lib/pokeapi_client/api/item_attribute_api.rb +4 -2
- data/lib/pokeapi_client/api/item_category_api.rb +4 -2
- data/lib/pokeapi_client/api/item_fling_effect_api.rb +4 -2
- data/lib/pokeapi_client/api/item_pocket_api.rb +4 -2
- data/lib/pokeapi_client/api/language_api.rb +4 -2
- data/lib/pokeapi_client/api/location_api.rb +4 -2
- data/lib/pokeapi_client/api/location_area_api.rb +4 -2
- data/lib/pokeapi_client/api/machine_api.rb +4 -2
- data/lib/pokeapi_client/api/move_ailment_api.rb +4 -2
- data/lib/pokeapi_client/api/move_api.rb +4 -2
- data/lib/pokeapi_client/api/move_battle_style_api.rb +4 -2
- data/lib/pokeapi_client/api/move_category_api.rb +4 -2
- data/lib/pokeapi_client/api/move_damage_class_api.rb +4 -2
- data/lib/pokeapi_client/api/move_learn_method_api.rb +4 -2
- data/lib/pokeapi_client/api/move_target_api.rb +4 -2
- data/lib/pokeapi_client/api/nature_api.rb +4 -2
- data/lib/pokeapi_client/api/pal_park_area_api.rb +4 -2
- data/lib/pokeapi_client/api/pokeathlon_stat_api.rb +4 -2
- data/lib/pokeapi_client/api/pokedex_api.rb +4 -2
- data/lib/pokeapi_client/api/pokemon_api.rb +4 -2
- data/lib/pokeapi_client/api/pokemon_color_api.rb +4 -2
- data/lib/pokeapi_client/api/pokemon_form_api.rb +4 -2
- data/lib/pokeapi_client/api/pokemon_habitat_api.rb +4 -2
- data/lib/pokeapi_client/api/pokemon_shape_api.rb +4 -2
- data/lib/pokeapi_client/api/pokemon_species_api.rb +4 -2
- data/lib/pokeapi_client/api/region_api.rb +4 -2
- data/lib/pokeapi_client/api/stat_api.rb +4 -2
- data/lib/pokeapi_client/api/super_contest_effect_api.rb +4 -2
- data/lib/pokeapi_client/api/type_api.rb +4 -2
- data/lib/pokeapi_client/api/version_api.rb +4 -2
- data/lib/pokeapi_client/api/version_group_api.rb +4 -2
- data/lib/pokeapi_client/api_client.rb +29 -23
- data/lib/pokeapi_client/api_error.rb +5 -2
- data/lib/pokeapi_client/configuration.rb +32 -10
- data/lib/pokeapi_client/version.rb +5 -3
- data/lib/pokeapi_client.rb +4 -2
- data/pokeapi_client.gemspec +8 -5
- data/spec/api/ability_api_spec.rb +6 -4
- data/spec/api/berry_api_spec.rb +6 -4
- data/spec/api/berry_firmness_api_spec.rb +6 -4
- data/spec/api/berry_flavor_api_spec.rb +6 -4
- data/spec/api/characteristic_api_spec.rb +6 -4
- data/spec/api/contest_effect_api_spec.rb +6 -4
- data/spec/api/contest_type_api_spec.rb +6 -4
- data/spec/api/egg_group_api_spec.rb +6 -4
- data/spec/api/encounter_condition_api_spec.rb +6 -4
- data/spec/api/encounter_condition_value_api_spec.rb +6 -4
- data/spec/api/encounter_method_api_spec.rb +6 -4
- data/spec/api/evolution_chain_api_spec.rb +6 -4
- data/spec/api/evolution_trigger_api_spec.rb +6 -4
- data/spec/api/gender_api_spec.rb +6 -4
- data/spec/api/generation_api_spec.rb +6 -4
- data/spec/api/growth_rate_api_spec.rb +6 -4
- data/spec/api/item_api_spec.rb +6 -4
- data/spec/api/item_attribute_api_spec.rb +6 -4
- data/spec/api/item_category_api_spec.rb +6 -4
- data/spec/api/item_fling_effect_api_spec.rb +6 -4
- data/spec/api/item_pocket_api_spec.rb +6 -4
- data/spec/api/language_api_spec.rb +6 -4
- data/spec/api/location_api_spec.rb +6 -4
- data/spec/api/location_area_api_spec.rb +6 -4
- data/spec/api/machine_api_spec.rb +6 -4
- data/spec/api/move_ailment_api_spec.rb +6 -4
- data/spec/api/move_api_spec.rb +6 -4
- data/spec/api/move_battle_style_api_spec.rb +6 -4
- data/spec/api/move_category_api_spec.rb +6 -4
- data/spec/api/move_damage_class_api_spec.rb +6 -4
- data/spec/api/move_learn_method_api_spec.rb +6 -4
- data/spec/api/move_target_api_spec.rb +6 -4
- data/spec/api/nature_api_spec.rb +6 -4
- data/spec/api/pal_park_area_api_spec.rb +6 -4
- data/spec/api/pokeathlon_stat_api_spec.rb +6 -4
- data/spec/api/pokedex_api_spec.rb +6 -4
- data/spec/api/pokemon_api_spec.rb +6 -4
- data/spec/api/pokemon_color_api_spec.rb +6 -4
- data/spec/api/pokemon_form_api_spec.rb +6 -4
- data/spec/api/pokemon_habitat_api_spec.rb +6 -4
- data/spec/api/pokemon_shape_api_spec.rb +6 -4
- data/spec/api/pokemon_species_api_spec.rb +6 -4
- data/spec/api/region_api_spec.rb +6 -4
- data/spec/api/stat_api_spec.rb +6 -4
- data/spec/api/super_contest_effect_api_spec.rb +6 -4
- data/spec/api/type_api_spec.rb +6 -4
- data/spec/api/version_api_spec.rb +6 -4
- data/spec/api/version_group_api_spec.rb +6 -4
- data/spec/spec_helper.rb +4 -2
- metadata +46 -49
- data/spec/api_client_spec.rb +0 -224
- data/spec/configuration_spec.rb +0 -40
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 15c38bf403b6c8b400c8ca66d8e0da37997d6b80ad41fdeb3b19f97c369df831
|
4
|
+
data.tar.gz: b819179f6d490cf28598ed9ce13d12bc0c1cf992dfb2aff8e59333a4a0cf306b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53cd8ed9dab06fd382748337887fcef69e2f9bf5dfc084cb86813006a34b3c43b3822c282c1d9ea4339c0833694396390065ad786391e54119944a290b362671
|
7
|
+
data.tar.gz: 3e0e0d4406a604effc55f737992f301e59c588db3b9c57571ff1739f0ba6af57685183eb71c0e0facc8999df66d465de878d54d7a9be37e10a14ef730eea8aa6
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
pokeapi_client (0.
|
4
|
+
pokeapi_client (1.0.0)
|
5
5
|
typhoeus (~> 1.0, >= 1.0.1)
|
6
6
|
|
7
7
|
GEM
|
@@ -10,38 +10,40 @@ GEM
|
|
10
10
|
ast (2.4.2)
|
11
11
|
byebug (11.1.3)
|
12
12
|
coderay (1.1.3)
|
13
|
-
diff-lcs (1.5.
|
14
|
-
ethon (0.
|
13
|
+
diff-lcs (1.5.1)
|
14
|
+
ethon (0.16.0)
|
15
15
|
ffi (>= 1.15.0)
|
16
|
-
ffi (1.
|
17
|
-
jaro_winkler (1.5.
|
16
|
+
ffi (1.16.3)
|
17
|
+
jaro_winkler (1.5.6)
|
18
18
|
method_source (1.0.0)
|
19
|
-
parallel (1.
|
20
|
-
parser (3.
|
19
|
+
parallel (1.24.0)
|
20
|
+
parser (3.3.0.5)
|
21
21
|
ast (~> 2.4.1)
|
22
|
-
|
22
|
+
racc
|
23
|
+
pry (0.14.2)
|
23
24
|
coderay (~> 1.1)
|
24
25
|
method_source (~> 1.0)
|
25
|
-
pry-byebug (3.
|
26
|
+
pry-byebug (3.10.1)
|
26
27
|
byebug (~> 11.0)
|
27
|
-
pry (
|
28
|
-
psych (
|
28
|
+
pry (>= 0.13, < 0.15)
|
29
|
+
psych (5.1.2)
|
29
30
|
stringio
|
31
|
+
racc (1.7.3)
|
30
32
|
rainbow (3.1.1)
|
31
33
|
rake (13.0.6)
|
32
|
-
rspec (3.
|
33
|
-
rspec-core (~> 3.
|
34
|
-
rspec-expectations (~> 3.
|
35
|
-
rspec-mocks (~> 3.
|
36
|
-
rspec-core (3.
|
37
|
-
rspec-support (~> 3.
|
38
|
-
rspec-expectations (3.
|
34
|
+
rspec (3.13.0)
|
35
|
+
rspec-core (~> 3.13.0)
|
36
|
+
rspec-expectations (~> 3.13.0)
|
37
|
+
rspec-mocks (~> 3.13.0)
|
38
|
+
rspec-core (3.13.0)
|
39
|
+
rspec-support (~> 3.13.0)
|
40
|
+
rspec-expectations (3.13.0)
|
39
41
|
diff-lcs (>= 1.2.0, < 2.0)
|
40
|
-
rspec-support (~> 3.
|
41
|
-
rspec-mocks (3.
|
42
|
+
rspec-support (~> 3.13.0)
|
43
|
+
rspec-mocks (3.13.0)
|
42
44
|
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
-
rspec-support (~> 3.
|
44
|
-
rspec-support (3.
|
45
|
+
rspec-support (~> 3.13.0)
|
46
|
+
rspec-support (3.13.1)
|
45
47
|
rubocop (0.66.0)
|
46
48
|
jaro_winkler (~> 1.5.1)
|
47
49
|
parallel (~> 1.10)
|
@@ -50,9 +52,9 @@ GEM
|
|
50
52
|
rainbow (>= 2.2.2, < 4.0)
|
51
53
|
ruby-progressbar (~> 1.7)
|
52
54
|
unicode-display_width (>= 1.4.0, < 1.6)
|
53
|
-
ruby-progressbar (1.
|
54
|
-
stringio (3.0
|
55
|
-
typhoeus (1.4.
|
55
|
+
ruby-progressbar (1.13.0)
|
56
|
+
stringio (3.1.0)
|
57
|
+
typhoeus (1.4.1)
|
56
58
|
ethon (>= 0.9.0)
|
57
59
|
unicode-display_width (1.5.0)
|
58
60
|
|
@@ -67,4 +69,4 @@ DEPENDENCIES
|
|
67
69
|
rubocop (~> 0.66.0)
|
68
70
|
|
69
71
|
BUNDLED WITH
|
70
|
-
2.
|
72
|
+
2.4.22
|
data/README.md
CHANGED
@@ -7,8 +7,10 @@ No description provided (generated by Openapi Generator https://github.com/opena
|
|
7
7
|
This SDK is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
8
8
|
|
9
9
|
- API version: 20220523
|
10
|
-
- Package version: 0.
|
10
|
+
- Package version: 1.0.0
|
11
|
+
- Generator version: 7.4.0
|
11
12
|
- Build package: org.openapitools.codegen.languages.RubyClientCodegen
|
13
|
+
For more information, please visit [https://github.com/oapicf/pokeapi-clients](https://github.com/oapicf/pokeapi-clients)
|
12
14
|
|
13
15
|
## Installation
|
14
16
|
|
@@ -23,16 +25,16 @@ gem build pokeapi_client.gemspec
|
|
23
25
|
Then either install the gem locally:
|
24
26
|
|
25
27
|
```shell
|
26
|
-
gem install ./pokeapi_client-0.
|
28
|
+
gem install ./pokeapi_client-1.0.0.gem
|
27
29
|
```
|
28
30
|
|
29
|
-
(for development, run `gem install --dev ./pokeapi_client-0.
|
31
|
+
(for development, run `gem install --dev ./pokeapi_client-1.0.0.gem` to install the development dependencies)
|
30
32
|
|
31
33
|
or publish the gem to a gem hosting service, e.g. [RubyGems](https://rubygems.org/).
|
32
34
|
|
33
35
|
Finally add this to the Gemfile:
|
34
36
|
|
35
|
-
gem 'pokeapi_client', '~> 0.
|
37
|
+
gem 'pokeapi_client', '~> 1.0.0'
|
36
38
|
|
37
39
|
### Install from Git
|
38
40
|
|
@@ -181,5 +183,5 @@ Class | Method | HTTP request | Description
|
|
181
183
|
|
182
184
|
## Documentation for Authorization
|
183
185
|
|
184
|
-
|
186
|
+
Endpoints do not require authorization.
|
185
187
|
|
data/bin/bundle
CHANGED
@@ -47,7 +47,7 @@ m = Module.new do
|
|
47
47
|
def lockfile
|
48
48
|
lockfile =
|
49
49
|
case File.basename(gemfile)
|
50
|
-
when "gems.rb" then gemfile.sub(/\.rb$/,
|
50
|
+
when "gems.rb" then gemfile.sub(/\.rb$/, ".locked")
|
51
51
|
else "#{gemfile}.lock"
|
52
52
|
end
|
53
53
|
File.expand_path(lockfile)
|
@@ -62,8 +62,9 @@ m = Module.new do
|
|
62
62
|
|
63
63
|
def bundler_requirement
|
64
64
|
@bundler_requirement ||=
|
65
|
-
env_var_version ||
|
66
|
-
|
65
|
+
env_var_version ||
|
66
|
+
cli_arg_version ||
|
67
|
+
bundler_requirement_for(lockfile_version)
|
67
68
|
end
|
68
69
|
|
69
70
|
def bundler_requirement_for(version)
|
@@ -71,13 +72,7 @@ m = Module.new do
|
|
71
72
|
|
72
73
|
bundler_gem_version = Gem::Version.new(version)
|
73
74
|
|
74
|
-
|
75
|
-
|
76
|
-
return requirement unless Gem.rubygems_version < Gem::Version.new("2.7.0")
|
77
|
-
|
78
|
-
requirement += ".a" if bundler_gem_version.prerelease?
|
79
|
-
|
80
|
-
requirement
|
75
|
+
bundler_gem_version.approximate_recommendation
|
81
76
|
end
|
82
77
|
|
83
78
|
def load_bundler!
|
data/bin/byebug
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/coderay
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/htmldiff
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/ldiff
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/pry
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/racc
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
#!/usr/bin/env ruby2.7
|
2
|
+
# frozen_string_literal: true
|
3
|
+
|
4
|
+
#
|
5
|
+
# This file was generated by Bundler.
|
6
|
+
#
|
7
|
+
# The application 'racc' is installed as part of a gem, and
|
8
|
+
# this file is here to facilitate running it.
|
9
|
+
#
|
10
|
+
|
11
|
+
ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
12
|
+
|
13
|
+
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
|
+
|
15
|
+
if File.file?(bundle_binstub)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
|
+
load(bundle_binstub)
|
18
|
+
else
|
19
|
+
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
20
|
+
Replace `bin/bundle` by running `bundle binstubs bundler --force`, then run this command again.")
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
require "rubygems"
|
25
|
+
require "bundler/setup"
|
26
|
+
|
27
|
+
load Gem.bin_path("racc", "racc")
|
data/bin/rake
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/rspec
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/rubocop
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/ruby-parse
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
data/bin/ruby-rewrite
CHANGED
@@ -13,7 +13,7 @@ ENV["BUNDLE_GEMFILE"] ||= File.expand_path("../Gemfile", __dir__)
|
|
13
13
|
bundle_binstub = File.expand_path("bundle", __dir__)
|
14
14
|
|
15
15
|
if File.file?(bundle_binstub)
|
16
|
-
if File.read(bundle_binstub, 300)
|
16
|
+
if File.read(bundle_binstub, 300).include?("This file was generated by Bundler")
|
17
17
|
load(bundle_binstub)
|
18
18
|
else
|
19
19
|
abort("Your `bin/bundle` was not generated by Bundler, so this binstub cannot run.
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|
@@ -1,10 +1,12 @@
|
|
1
1
|
=begin
|
2
|
+
#
|
3
|
+
|
2
4
|
#No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
3
5
|
|
4
6
|
The version of the OpenAPI document: 20220523
|
5
|
-
|
7
|
+
Contact: blah+oapicf@cliffano.com
|
6
8
|
Generated by: https://openapi-generator.tech
|
7
|
-
|
9
|
+
Generator version: 7.4.0
|
8
10
|
|
9
11
|
=end
|
10
12
|
|