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
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokeathlonStatApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokeathlon_stat_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokeathlonStatApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokeathlon_stat_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokedexApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokedex_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokedexApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokedex_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokemonApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokemon_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokemonApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokemon_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokemonColorApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokemon_color_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokemonColorApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokemon_color_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokemonFormApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokemon_form_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokemonFormApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokemon_form_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokemonHabitatApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokemon_habitat_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokemonHabitatApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokemon_habitat_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokemonShapeApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokemon_shape_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokemonShapeApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokemon_shape_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'PokemonSpeciesApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'pokemon_species_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'PokemonSpeciesApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'pokemon_species_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
data/spec/api/region_api_spec.rb
CHANGED
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'RegionApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'region_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'RegionApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'region_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
data/spec/api/stat_api_spec.rb
CHANGED
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'StatApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'stat_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'StatApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'stat_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'SuperContestEffectApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'super_contest_effect_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'SuperContestEffectApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'super_contest_effect_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
data/spec/api/type_api_spec.rb
CHANGED
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'TypeApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'type_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'TypeApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'type_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'VersionApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'version_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'VersionApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'version_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
@@ -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
|
|
@@ -37,7 +39,7 @@ describe 'VersionGroupApi' do
|
|
37
39
|
# @return [String]
|
38
40
|
describe 'version_group_list test' do
|
39
41
|
it 'should work' do
|
40
|
-
# assertion here. ref: https://
|
42
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
41
43
|
end
|
42
44
|
end
|
43
45
|
|
@@ -47,7 +49,7 @@ describe 'VersionGroupApi' do
|
|
47
49
|
# @return [String]
|
48
50
|
describe 'version_group_read test' do
|
49
51
|
it 'should work' do
|
50
|
-
# assertion here. ref: https://
|
52
|
+
# assertion here. ref: https://rspec.info/features/3-12/rspec-expectations/built-in-matchers/
|
51
53
|
end
|
52
54
|
end
|
53
55
|
|
data/spec/spec_helper.rb
CHANGED
@@ -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
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pokeapi_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
8
|
-
autorequire:
|
7
|
+
- OpenAPI Clients Factory
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: typhoeus
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
version: 3.6.0
|
53
53
|
description: No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
54
54
|
email:
|
55
|
-
- blah@cliffano.com
|
55
|
+
- blah+oapicf@cliffano.com
|
56
56
|
executables: []
|
57
57
|
extensions: []
|
58
58
|
extra_rdoc_files: []
|
@@ -67,6 +67,7 @@ files:
|
|
67
67
|
- bin/htmldiff
|
68
68
|
- bin/ldiff
|
69
69
|
- bin/pry
|
70
|
+
- bin/racc
|
70
71
|
- bin/rake
|
71
72
|
- bin/rspec
|
72
73
|
- bin/rubocop
|
@@ -223,14 +224,12 @@ files:
|
|
223
224
|
- spec/api/type_api_spec.rb
|
224
225
|
- spec/api/version_api_spec.rb
|
225
226
|
- spec/api/version_group_api_spec.rb
|
226
|
-
- spec/api_client_spec.rb
|
227
|
-
- spec/configuration_spec.rb
|
228
227
|
- spec/spec_helper.rb
|
229
|
-
homepage: https://github.com/
|
228
|
+
homepage: https://github.com/oapicf/pokeapi-clients
|
230
229
|
licenses:
|
231
230
|
- MIT
|
232
231
|
metadata: {}
|
233
|
-
post_install_message:
|
232
|
+
post_install_message:
|
234
233
|
rdoc_options: []
|
235
234
|
require_paths:
|
236
235
|
- lib
|
@@ -246,58 +245,56 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
246
245
|
version: '0'
|
247
246
|
requirements: []
|
248
247
|
rubygems_version: 3.1.2
|
249
|
-
signing_key:
|
248
|
+
signing_key:
|
250
249
|
specification_version: 4
|
251
250
|
summary: Ruby Gem
|
252
251
|
test_files:
|
253
|
-
- spec/api/
|
254
|
-
- spec/api/
|
255
|
-
- spec/api/
|
252
|
+
- spec/api/berry_flavor_api_spec.rb
|
253
|
+
- spec/api/language_api_spec.rb
|
254
|
+
- spec/api/pokemon_habitat_api_spec.rb
|
255
|
+
- spec/api/pokemon_color_api_spec.rb
|
256
|
+
- spec/api/pal_park_area_api_spec.rb
|
257
|
+
- spec/api/ability_api_spec.rb
|
256
258
|
- spec/api/encounter_condition_value_api_spec.rb
|
257
|
-
- spec/api/
|
258
|
-
- spec/api/
|
259
|
-
- spec/api/
|
260
|
-
- spec/api/
|
261
|
-
- spec/api/nature_api_spec.rb
|
262
|
-
- spec/api/location_area_api_spec.rb
|
263
|
-
- spec/api/item_attribute_api_spec.rb
|
264
|
-
- spec/api/contest_type_api_spec.rb
|
259
|
+
- spec/api/evolution_chain_api_spec.rb
|
260
|
+
- spec/api/version_group_api_spec.rb
|
261
|
+
- spec/api/stat_api_spec.rb
|
262
|
+
- spec/api/location_api_spec.rb
|
265
263
|
- spec/api/evolution_trigger_api_spec.rb
|
266
264
|
- spec/api/pokemon_species_api_spec.rb
|
267
|
-
- spec/api/characteristic_api_spec.rb
|
268
265
|
- spec/api/move_category_api_spec.rb
|
269
|
-
- spec/api/
|
270
|
-
- spec/api/pokedex_api_spec.rb
|
271
|
-
- spec/api/encounter_method_api_spec.rb
|
272
|
-
- spec/api/move_damage_class_api_spec.rb
|
273
|
-
- spec/api/move_ailment_api_spec.rb
|
274
|
-
- spec/api/move_target_api_spec.rb
|
275
|
-
- spec/api/pokemon_habitat_api_spec.rb
|
266
|
+
- spec/api/generation_api_spec.rb
|
276
267
|
- spec/api/move_learn_method_api_spec.rb
|
277
|
-
- spec/api/
|
278
|
-
- spec/api/ability_api_spec.rb
|
279
|
-
- spec/api/pokemon_color_api_spec.rb
|
268
|
+
- spec/api/characteristic_api_spec.rb
|
280
269
|
- spec/api/item_fling_effect_api_spec.rb
|
281
|
-
- spec/api/berry_api_spec.rb
|
282
|
-
- spec/api/pokemon_shape_api_spec.rb
|
283
|
-
- spec/api/version_api_spec.rb
|
284
|
-
- spec/api/version_group_api_spec.rb
|
285
|
-
- spec/api/item_pocket_api_spec.rb
|
286
|
-
- spec/api/egg_group_api_spec.rb
|
287
|
-
- spec/api/generation_api_spec.rb
|
288
|
-
- spec/api/pokemon_api_spec.rb
|
289
270
|
- spec/api/move_api_spec.rb
|
290
|
-
- spec/api/
|
291
|
-
- spec/api/
|
271
|
+
- spec/api/encounter_condition_api_spec.rb
|
272
|
+
- spec/api/contest_effect_api_spec.rb
|
273
|
+
- spec/api/item_category_api_spec.rb
|
274
|
+
- spec/api/pokedex_api_spec.rb
|
275
|
+
- spec/api/region_api_spec.rb
|
276
|
+
- spec/api/move_ailment_api_spec.rb
|
277
|
+
- spec/api/move_damage_class_api_spec.rb
|
278
|
+
- spec/api/pokemon_shape_api_spec.rb
|
279
|
+
- spec/api/item_attribute_api_spec.rb
|
280
|
+
- spec/api/type_api_spec.rb
|
292
281
|
- spec/api/berry_firmness_api_spec.rb
|
293
|
-
- spec/api/
|
294
|
-
- spec/api/
|
295
|
-
- spec/api/
|
282
|
+
- spec/api/encounter_method_api_spec.rb
|
283
|
+
- spec/api/move_target_api_spec.rb
|
284
|
+
- spec/api/contest_type_api_spec.rb
|
285
|
+
- spec/api/super_contest_effect_api_spec.rb
|
286
|
+
- spec/api/location_area_api_spec.rb
|
287
|
+
- spec/api/pokemon_api_spec.rb
|
288
|
+
- spec/api/gender_api_spec.rb
|
289
|
+
- spec/api/item_api_spec.rb
|
290
|
+
- spec/api/nature_api_spec.rb
|
291
|
+
- spec/api/pokeathlon_stat_api_spec.rb
|
296
292
|
- spec/api/machine_api_spec.rb
|
297
293
|
- spec/api/move_battle_style_api_spec.rb
|
298
|
-
- spec/api/location_api_spec.rb
|
299
294
|
- spec/api/growth_rate_api_spec.rb
|
300
|
-
- spec/api/
|
301
|
-
- spec/
|
302
|
-
- spec/
|
295
|
+
- spec/api/pokemon_form_api_spec.rb
|
296
|
+
- spec/api/item_pocket_api_spec.rb
|
297
|
+
- spec/api/version_api_spec.rb
|
298
|
+
- spec/api/egg_group_api_spec.rb
|
299
|
+
- spec/api/berry_api_spec.rb
|
303
300
|
- spec/spec_helper.rb
|