poke-api-v2 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +7 -0
  2. data/.codeclimate.yml +8 -0
  3. data/.github/pull_request_template.md +5 -0
  4. data/.gitignore +12 -0
  5. data/.reek.yml +129 -0
  6. data/.rspec +3 -0
  7. data/.rubocop.yml +139 -0
  8. data/CODE_OF_CONDUCT.md +74 -0
  9. data/Gemfile +6 -0
  10. data/Gemfile.lock +110 -0
  11. data/LICENSE.txt +21 -0
  12. data/README.md +9 -0
  13. data/Rakefile +24 -0
  14. data/bin/console +7 -0
  15. data/bin/setup +8 -0
  16. data/lib/config/setup.rb +120 -0
  17. data/lib/config/version.rb +3 -0
  18. data/lib/poke-api-v2.rb +28 -0
  19. data/lib/poke_api/ability.rb +27 -0
  20. data/lib/poke_api/ability/ability_effect_change.rb +16 -0
  21. data/lib/poke_api/ability/ability_flavor_text.rb +16 -0
  22. data/lib/poke_api/ability/ability_pokemon.rb +16 -0
  23. data/lib/poke_api/api_resource_list.rb +21 -0
  24. data/lib/poke_api/berry.rb +29 -0
  25. data/lib/poke_api/berry/berry_flavor_map.rb +14 -0
  26. data/lib/poke_api/berry_firmness.rb +11 -0
  27. data/lib/poke_api/berry_flavor.rb +18 -0
  28. data/lib/poke_api/berry_flavor/flavor_berry_map.rb +14 -0
  29. data/lib/poke_api/characteristic.rb +19 -0
  30. data/lib/poke_api/common/description.rb +14 -0
  31. data/lib/poke_api/common/effect.rb +14 -0
  32. data/lib/poke_api/common/encounter.rb +25 -0
  33. data/lib/poke_api/common/flavor_text.rb +18 -0
  34. data/lib/poke_api/common/generation_game_index.rb +14 -0
  35. data/lib/poke_api/common/machine_version_detail.rb +14 -0
  36. data/lib/poke_api/common/name.rb +14 -0
  37. data/lib/poke_api/common/verbose_effect.rb +16 -0
  38. data/lib/poke_api/common/version_encounter_detail.rb +22 -0
  39. data/lib/poke_api/common/version_game_index.rb +15 -0
  40. data/lib/poke_api/common/version_group_flavor_text.rb +16 -0
  41. data/lib/poke_api/contest_effect.rb +22 -0
  42. data/lib/poke_api/contest_type.rb +11 -0
  43. data/lib/poke_api/egg_group.rb +11 -0
  44. data/lib/poke_api/encounter_condition.rb +17 -0
  45. data/lib/poke_api/encounter_condition_value.rb +19 -0
  46. data/lib/poke_api/encounter_method.rb +11 -0
  47. data/lib/poke_api/evolution_chain.rb +37 -0
  48. data/lib/poke_api/evolution_chain/evolution_detail.rb +50 -0
  49. data/lib/poke_api/evolution_trigger.rb +19 -0
  50. data/lib/poke_api/gender.rb +20 -0
  51. data/lib/poke_api/gender/pokemon_species_gender.rb +14 -0
  52. data/lib/poke_api/generation.rb +22 -0
  53. data/lib/poke_api/growth_rate.rb +19 -0
  54. data/lib/poke_api/growth_rate/growth_rate_experience_level.rb +14 -0
  55. data/lib/poke_api/item.rb +39 -0
  56. data/lib/poke_api/item/item_holder_pokemon.rb +19 -0
  57. data/lib/poke_api/item/item_holder_pokemon_version_detail.rb +14 -0
  58. data/lib/poke_api/item/item_sprites.rb +12 -0
  59. data/lib/poke_api/item_attribute.rb +12 -0
  60. data/lib/poke_api/item_category.rb +18 -0
  61. data/lib/poke_api/item_fling_effect.rb +17 -0
  62. data/lib/poke_api/item_pocket.rb +17 -0
  63. data/lib/poke_api/location.rb +21 -0
  64. data/lib/poke_api/location_area.rb +23 -0
  65. data/lib/poke_api/location_area/encounter_method_rate.rb +19 -0
  66. data/lib/poke_api/location_area/encounter_method_rate/encounter_version_detail.rb +16 -0
  67. data/lib/poke_api/location_area/pokemon_encounter.rb +19 -0
  68. data/lib/poke_api/machine.rb +12 -0
  69. data/lib/poke_api/move.rb +45 -0
  70. data/lib/poke_api/move/contest_combo_detail.rb +16 -0
  71. data/lib/poke_api/move/contest_combo_sets.rb +14 -0
  72. data/lib/poke_api/move/move_flavor_text.rb +16 -0
  73. data/lib/poke_api/move/move_meta_data.rb +34 -0
  74. data/lib/poke_api/move/move_stat_change.rb +14 -0
  75. data/lib/poke_api/move/past_move_stat_value.rb +26 -0
  76. data/lib/poke_api/move_ailment.rb +11 -0
  77. data/lib/poke_api/move_battle_style.rb +10 -0
  78. data/lib/poke_api/move_category.rb +11 -0
  79. data/lib/poke_api/move_damage_class.rb +12 -0
  80. data/lib/poke_api/move_learn_method.rb +12 -0
  81. data/lib/poke_api/move_target.rb +12 -0
  82. data/lib/poke_api/named_api_resource.rb +42 -0
  83. data/lib/poke_api/nature.rb +29 -0
  84. data/lib/poke_api/nature/move_battle_style_preference.rb +17 -0
  85. data/lib/poke_api/nature/nature_stat_change.rb +14 -0
  86. data/lib/poke_api/pal_park_area.rb +17 -0
  87. data/lib/poke_api/pal_park_area/pal_park_encounter_species.rb +16 -0
  88. data/lib/poke_api/pokeathlon_stat.rb +17 -0
  89. data/lib/poke_api/pokeathlon_stat/nature_pokeathlon_stat_affect.rb +15 -0
  90. data/lib/poke_api/pokeathlon_stat/nature_pokeathlon_stat_affect_sets.rb +23 -0
  91. data/lib/poke_api/pokedex.rb +22 -0
  92. data/lib/poke_api/pokedex/pokemon_entry.rb +14 -0
  93. data/lib/poke_api/pokemon.rb +40 -0
  94. data/lib/poke_api/pokemon/location_area_encounter.rb +19 -0
  95. data/lib/poke_api/pokemon/pokemon_ability.rb +16 -0
  96. data/lib/poke_api/pokemon/pokemon_held_item.rb +19 -0
  97. data/lib/poke_api/pokemon/pokemon_held_item_version.rb +14 -0
  98. data/lib/poke_api/pokemon/pokemon_move.rb +19 -0
  99. data/lib/poke_api/pokemon/pokemon_move_version.rb +16 -0
  100. data/lib/poke_api/pokemon/pokemon_sprites.rb +26 -0
  101. data/lib/poke_api/pokemon/pokemon_stat.rb +16 -0
  102. data/lib/poke_api/pokemon/pokemon_type.rb +14 -0
  103. data/lib/poke_api/pokemon_color.rb +11 -0
  104. data/lib/poke_api/pokemon_form.rb +29 -0
  105. data/lib/poke_api/pokemon_form/pokemon_form_sprites.rb +18 -0
  106. data/lib/poke_api/pokemon_habitat.rb +11 -0
  107. data/lib/poke_api/pokemon_shape.rb +18 -0
  108. data/lib/poke_api/pokemon_shape/awesome_name.rb +14 -0
  109. data/lib/poke_api/pokemon_species.rb +49 -0
  110. data/lib/poke_api/pokemon_species/genus.rb +14 -0
  111. data/lib/poke_api/pokemon_species/pal_park_encounter_area.rb +17 -0
  112. data/lib/poke_api/pokemon_species/pokemon_species_dex_entry.rb +14 -0
  113. data/lib/poke_api/pokemon_species/pokemon_species_variety.rb +14 -0
  114. data/lib/poke_api/region.rb +14 -0
  115. data/lib/poke_api/stat.rb +25 -0
  116. data/lib/poke_api/stat/move_stat_affect.rb +14 -0
  117. data/lib/poke_api/stat/move_stat_affect_sets.rb +16 -0
  118. data/lib/poke_api/stat/nature_stat_affect_sets.rb +16 -0
  119. data/lib/poke_api/super_contest_effect.rb +18 -0
  120. data/lib/poke_api/type.rb +26 -0
  121. data/lib/poke_api/type/type_pokemon.rb +14 -0
  122. data/lib/poke_api/type/type_relations.rb +21 -0
  123. data/lib/poke_api/utility/language.rb +15 -0
  124. data/lib/poke_api/version.rb +11 -0
  125. data/lib/poke_api/version_group.rb +15 -0
  126. data/lib/utils/assignment_helpers.rb +36 -0
  127. data/lib/utils/constants.rb +66 -0
  128. data/lib/utils/error_handling.rb +18 -0
  129. data/lib/utils/fetcher.rb +28 -0
  130. data/lib/utils/monkey_patch/symbol.rb +13 -0
  131. data/poke-api-v2.gemspec +42 -0
  132. metadata +315 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 55982a103820663bbb2d0652e8a8e9da58636822
4
+ data.tar.gz: cf6ee064ea3d3805a35f7ad20610a3664aa5bb48
5
+ SHA512:
6
+ metadata.gz: 5b1eba96ccc46ed87a8ffda8642b85397b7826ff2ebe3bd53e122d7f57ee6314e4d1dc6a199eed014822f75e43ecb1363236db16e8f93790b7be37e9e91efad7
7
+ data.tar.gz: de867553cc0bda3b6d61661862d875a2f284c37a58e7491d8052be62fecfd026834dd063885f38835d0591800a513f3d327ef5ba0373457b03474ec2fd64051c
data/.codeclimate.yml ADDED
@@ -0,0 +1,8 @@
1
+ ---
2
+ version: "2"
3
+ plugins:
4
+ rubocop:
5
+ enabled: true
6
+ channel: rubocop-0-65
7
+ reek:
8
+ enabled: true
@@ -0,0 +1,5 @@
1
+ Relates To: #
2
+
3
+ #### Changes Included:
4
+
5
+ - add a description of work item
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+ coverage
data/.reek.yml ADDED
@@ -0,0 +1,129 @@
1
+ ---
2
+ detectors:
3
+ Attribute:
4
+ enabled: true
5
+ exclude: []
6
+ BooleanParameter:
7
+ enabled: true
8
+ exclude: []
9
+ ClassVariable:
10
+ enabled: true
11
+ exclude: []
12
+ ControlParameter:
13
+ enabled: true
14
+ exclude: []
15
+ DataClump:
16
+ enabled: true
17
+ exclude: []
18
+ max_copies: 2
19
+ min_clump_size: 2
20
+ DuplicateMethodCall:
21
+ enabled: true
22
+ exclude: []
23
+ max_calls: 1
24
+ allow_calls: []
25
+ FeatureEnvy:
26
+ enabled: true
27
+ exclude: []
28
+ InstanceVariableAssumption:
29
+ enabled: true
30
+ exclude: []
31
+ IrresponsibleModule:
32
+ enabled: true
33
+ exclude: []
34
+ LongParameterList:
35
+ enabled: true
36
+ exclude: []
37
+ max_params: 3
38
+ overrides:
39
+ initialize:
40
+ max_params: 5
41
+ LongYieldList:
42
+ enabled: true
43
+ exclude: []
44
+ max_params: 3
45
+ ManualDispatch:
46
+ enabled: true
47
+ exclude: []
48
+ MissingSafeMethod:
49
+ enabled: true
50
+ exclude: []
51
+ ModuleInitialize:
52
+ enabled: true
53
+ exclude: []
54
+ NestedIterators:
55
+ enabled: true
56
+ exclude: []
57
+ max_allowed_nesting: 1
58
+ ignore_iterators:
59
+ - tap
60
+ NilCheck:
61
+ enabled: true
62
+ exclude: []
63
+ RepeatedConditional:
64
+ enabled: true
65
+ exclude: []
66
+ max_ifs: 2
67
+ SubclassedFromCoreClass:
68
+ enabled: true
69
+ exclude: []
70
+ TooManyConstants:
71
+ enabled: true
72
+ exclude: []
73
+ max_constants: 5
74
+ TooManyInstanceVariables:
75
+ enabled: false
76
+ exclude: []
77
+ max_instance_variables: 4
78
+ TooManyMethods:
79
+ enabled: true
80
+ exclude: []
81
+ max_methods: 15
82
+ TooManyStatements:
83
+ enabled: true
84
+ exclude:
85
+ - initialize
86
+ max_statements: 5
87
+ UncommunicativeMethodName:
88
+ enabled: true
89
+ exclude: []
90
+ reject:
91
+ - "/^[a-z]$/"
92
+ - "/[0-9]$/"
93
+ - "/[A-Z]/"
94
+ accept: []
95
+ UncommunicativeModuleName:
96
+ enabled: true
97
+ exclude: []
98
+ reject:
99
+ - "/^.$/"
100
+ - "/[0-9]$/"
101
+ accept: []
102
+ UncommunicativeParameterName:
103
+ enabled: true
104
+ exclude: []
105
+ reject:
106
+ - "/^.$/"
107
+ - "/[0-9]$/"
108
+ - "/[A-Z]/"
109
+ - "/^_/"
110
+ accept: []
111
+ UncommunicativeVariableName:
112
+ enabled: true
113
+ exclude: []
114
+ reject:
115
+ - "/^.$/"
116
+ - "/[0-9]$/"
117
+ - "/[A-Z]/"
118
+ accept:
119
+ - "/^_$/"
120
+ UnusedParameters:
121
+ enabled: true
122
+ exclude: []
123
+ UnusedPrivateMethod:
124
+ enabled: false
125
+ exclude: []
126
+ UtilityFunction:
127
+ enabled: true
128
+ exclude: []
129
+ public_methods_only: false
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
data/.rubocop.yml ADDED
@@ -0,0 +1,139 @@
1
+ AllCops:
2
+ # Include common Ruby source files.
3
+ Include:
4
+ - '**/*.rb'
5
+ - '**/*.arb'
6
+ - '**/*.axlsx'
7
+ - '**/*.builder'
8
+ - '**/*.fcgi'
9
+ - '**/*.gemfile'
10
+ - '**/*.god'
11
+ - '**/*.jb'
12
+ - '**/*.jbuilder'
13
+ - '**/*.mspec'
14
+ - '**/*.opal'
15
+ - '**/*.pluginspec'
16
+ - '**/*.podspec'
17
+ - '**/*.rabl'
18
+ - '**/*.rake'
19
+ - '**/*.rbuild'
20
+ - '**/*.rbw'
21
+ - '**/*.rbx'
22
+ - '**/*.ru'
23
+ - '**/*.ruby'
24
+ - '**/*.spec'
25
+ - '**/*.thor'
26
+ - '**/*.watchr'
27
+ - '**/.irbrc'
28
+ - '**/.pryrc'
29
+ - '**/buildfile'
30
+ - '**/Appraisals'
31
+ - '**/Berksfile'
32
+ - '**/Brewfile'
33
+ - '**/Buildfile'
34
+ - '**/Capfile'
35
+ - '**/Cheffile'
36
+ - '**/Dangerfile'
37
+ - '**/Deliverfile'
38
+ - '**/Fastfile'
39
+ - '**/*Fastfile'
40
+ - '**/Guardfile'
41
+ - '**/Jarfile'
42
+ - '**/Mavenfile'
43
+ - '**/Podfile'
44
+ - '**/Puppetfile'
45
+ - '**/Rakefile'
46
+ - '**/Snapfile'
47
+ - '**/Thorfile'
48
+ - '**/Vagabondfile'
49
+ - '**/Vagrantfile'
50
+ Exclude:
51
+ - 'node_modules/**/*'
52
+ - 'vendor/**/*'
53
+ - '.git/**/*'
54
+ - 'Gemfile'
55
+ - 'poke-api-v2.gemspec'
56
+ - 'spec/**/*'
57
+
58
+ Metrics/LineLength:
59
+ Description: 'Limit lines to 100 characters.'
60
+ StyleGuide: '#100-character-limits'
61
+ Enabled: true
62
+ Max: 100
63
+ # To make it possible to copy or click on URIs in the code, we allow lines
64
+ # containing a URI to be longer than Max.
65
+ AllowHeredoc: true
66
+ AllowURI: true
67
+ URISchemes:
68
+ - http
69
+ - https
70
+ # The IgnoreCopDirectives option causes the LineLength rule to ignore cop
71
+ # directives like '# rubocop: enable ...' when calculating a line's length.
72
+ IgnoreCopDirectives: false
73
+ # The IgnoredPatterns option is a list of !ruby/regexp and/or string
74
+ # elements. Strings will be converted to Regexp objects. A line that matches
75
+ # any regular expression listed in this option will be ignored by LineLength.
76
+ IgnoredPatterns: []
77
+
78
+ Naming/FileName:
79
+ Description: 'Use snake_case for source file names.'
80
+ StyleGuide: '#snake-case-files'
81
+ Enabled: true
82
+ # Camel case file names listed in `AllCops:Include` and all file names listed
83
+ # in `AllCops:Exclude` are excluded by default. Add extra excludes here.
84
+ Exclude: [poke-api-v2.gemspec]
85
+ # When `true`, requires that each source file should define a class or module
86
+ # with a name which matches the file name (converted to ... case).
87
+ # It further expects it to be nested inside modules which match the names
88
+ # of subdirectories in its path.
89
+ ExpectMatchingDefinition: false
90
+ # If non-`nil`, expect all source file names to match the following regex.
91
+ # Only the file name itself is matched, not the entire file path.
92
+ # Use anchors as necessary if you want to match the entire name rather than
93
+ # just a part of it.
94
+ Regex: ~
95
+ # With `IgnoreExecutableScripts` set to `true`, this cop does not
96
+ # report offending filenames for executable scripts (i.e. source
97
+ # files with a shebang in the first line).
98
+ IgnoreExecutableScripts: true
99
+ AllowedAcronyms:
100
+ - CLI
101
+ - DSL
102
+ - ACL
103
+ - API
104
+ - ASCII
105
+ - CPU
106
+ - CSS
107
+ - DNS
108
+ - EOF
109
+ - GUID
110
+ - HTML
111
+ - HTTP
112
+ - HTTPS
113
+ - ID
114
+ - IP
115
+ - JSON
116
+ - LHS
117
+ - QPS
118
+ - RAM
119
+ - RHS
120
+ - RPC
121
+ - SLA
122
+ - SMTP
123
+ - SQL
124
+ - SSH
125
+ - TCP
126
+ - TLS
127
+ - TTL
128
+ - UDP
129
+ - UI
130
+ - UID
131
+ - UUID
132
+ - URI
133
+ - URL
134
+ - UTF8
135
+ - VM
136
+ - XML
137
+ - XMPP
138
+ - XSRF
139
+ - XSS
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at rdavid1099@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [http://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: http://contributor-covenant.org
74
+ [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,6 @@
1
+ source 'https://rubygems.org'
2
+
3
+ git_source(:github) {|repo_name| 'https://github.com/#{repo_name}' }
4
+
5
+ # Specify your gem's dependencies in poke-api-v2.gemspec
6
+ gemspec
data/Gemfile.lock ADDED
@@ -0,0 +1,110 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ poke-api-v2 (0.1.0)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ addressable (2.6.0)
10
+ public_suffix (>= 2.0.2, < 4.0)
11
+ ast (2.4.0)
12
+ axiom-types (0.1.1)
13
+ descendants_tracker (~> 0.0.4)
14
+ ice_nine (~> 0.11.0)
15
+ thread_safe (~> 0.3, >= 0.3.1)
16
+ codeclimate-engine-rb (0.4.1)
17
+ virtus (~> 1.0)
18
+ coderay (1.1.2)
19
+ coercible (1.0.0)
20
+ descendants_tracker (~> 0.0.1)
21
+ crack (0.4.3)
22
+ safe_yaml (~> 1.0.0)
23
+ descendants_tracker (0.0.4)
24
+ thread_safe (~> 0.3, >= 0.3.1)
25
+ diff-lcs (1.3)
26
+ docile (1.3.1)
27
+ equalizer (0.0.11)
28
+ hashdiff (0.3.8)
29
+ ice_nine (0.11.2)
30
+ jaro_winkler (1.5.2)
31
+ json (2.2.0)
32
+ kwalify (0.7.2)
33
+ method_source (0.9.2)
34
+ parallel (1.17.0)
35
+ parser (2.5.3.0)
36
+ ast (~> 2.4.0)
37
+ powerpack (0.1.2)
38
+ pry (0.12.2)
39
+ coderay (~> 1.1.0)
40
+ method_source (~> 0.9.0)
41
+ psych (3.1.0)
42
+ public_suffix (3.0.3)
43
+ rainbow (3.0.0)
44
+ rake (10.5.0)
45
+ rb-readline (0.5.5)
46
+ reek (5.0.2)
47
+ codeclimate-engine-rb (~> 0.4.0)
48
+ kwalify (~> 0.7.0)
49
+ parser (>= 2.5.0.0, < 2.6, != 2.5.1.1)
50
+ rainbow (>= 2.0, < 4.0)
51
+ rspec (3.8.0)
52
+ rspec-core (~> 3.8.0)
53
+ rspec-expectations (~> 3.8.0)
54
+ rspec-mocks (~> 3.8.0)
55
+ rspec-core (3.8.0)
56
+ rspec-support (~> 3.8.0)
57
+ rspec-expectations (3.8.2)
58
+ diff-lcs (>= 1.2.0, < 2.0)
59
+ rspec-support (~> 3.8.0)
60
+ rspec-mocks (3.8.0)
61
+ diff-lcs (>= 1.2.0, < 2.0)
62
+ rspec-support (~> 3.8.0)
63
+ rspec-support (3.8.0)
64
+ rubocop (0.65.0)
65
+ jaro_winkler (~> 1.5.1)
66
+ parallel (~> 1.10)
67
+ parser (>= 2.5, != 2.5.1.1)
68
+ powerpack (~> 0.1)
69
+ psych (>= 3.1.0)
70
+ rainbow (>= 2.2.2, < 4.0)
71
+ ruby-progressbar (~> 1.7)
72
+ unicode-display_width (~> 1.4.0)
73
+ ruby-progressbar (1.10.0)
74
+ safe_yaml (1.0.5)
75
+ simplecov (0.16.1)
76
+ docile (~> 1.1)
77
+ json (>= 1.8, < 3)
78
+ simplecov-html (~> 0.10.0)
79
+ simplecov-html (0.10.2)
80
+ thread_safe (0.3.6)
81
+ unicode-display_width (1.4.1)
82
+ vcr (4.0.0)
83
+ virtus (1.0.5)
84
+ axiom-types (~> 0.1)
85
+ coercible (~> 1.0)
86
+ descendants_tracker (~> 0.0, >= 0.0.3)
87
+ equalizer (~> 0.0, >= 0.0.9)
88
+ webmock (3.5.1)
89
+ addressable (>= 2.3.6)
90
+ crack (>= 0.3.2)
91
+ hashdiff
92
+
93
+ PLATFORMS
94
+ ruby
95
+
96
+ DEPENDENCIES
97
+ bundler (~> 2.0)
98
+ poke-api-v2!
99
+ pry
100
+ rake (~> 10.0)
101
+ rb-readline
102
+ reek (= 5.0.2)
103
+ rspec (~> 3.0)
104
+ rubocop (~> 0.65.0)
105
+ simplecov
106
+ vcr (~> 4.0.0)
107
+ webmock
108
+
109
+ BUNDLED WITH
110
+ 2.0.1