Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PATH
remote: .
specs:
poke-api-v2 (0.1.0)
poke-api-v2 (0.1.1)

GEM
remote: https://rubygems.org/
specs:
addressable (2.6.0)
public_suffix (>= 2.0.2, < 4.0)
addressable (2.8.0)
public_suffix (>= 2.0.2, < 5.0)
ast (2.4.0)
axiom-types (0.1.1)
descendants_tracker (~> 0.0.4)
Expand Down Expand Up @@ -39,7 +39,7 @@ GEM
coderay (~> 1.1.0)
method_source (~> 0.9.0)
psych (3.1.0)
public_suffix (3.0.3)
public_suffix (4.0.6)
rainbow (3.0.0)
rake (13.0.1)
rb-readline (0.5.5)
Expand Down Expand Up @@ -107,4 +107,4 @@ DEPENDENCIES
webmock

BUNDLED WITH
2.0.1
2.1.4
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ PokeApi.get(pokemon_shape: {limit: 5, page: 2})
# #<PokeApi::PokemonShape:0x007fe36c18f9f0 @name="tentacles", @url="https://pokeapi.co/api/v2/pokemon-shape/10/">]>
```

All of the data presented follows the identical patterns described by the API. For a complete list of endpoints and keys, please check out the [PokéAPI Docs](https://pokeapi.co/docs/v2.html).
All of the data presented follows the identical patterns described by the API. For a complete list of endpoints and keys, please check out the [PokéAPI Docs](https://pokeapi.co/docs/v2).

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion lib/config/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module PokeApi
VERSION = '0.1.0'.freeze
VERSION = '0.1.1'.freeze
end
2 changes: 1 addition & 1 deletion spec/unit/poke-api-v2_spec.rb
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
RSpec.describe PokeApi, :vcr do
describe 'version' do
it 'should be the correct number' do
expect(PokeApi::VERSION).to eq('0.1.0')
expect(PokeApi::VERSION).to eq('0.1.1')
end
end

Expand Down