pokemon 0.1.0 → 0.1.1
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 +1 -1
- data/README.md +9 -5
- data/lib/pokedex.rb +1 -1
- data/lib/pokedex/version.rb +3 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 70b97c6896dd7109f46d87929ddb49957b29b3f3035f0c0e51cf27bdb02d46e4
|
4
|
+
data.tar.gz: f8741ed40ddacdd494843cd91e75452e5be50b80e6750a527cec9e91a138aaa7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d23f4ca306b78442457df00046e77dbf72791bdac75f98a62819b9f476adfdc1b2be88474ceded03a5233f243c1b2698bb5fafe3c8d9b66e8dcd2f4247c151e3
|
7
|
+
data.tar.gz: 4634190d45a2c4fd40c3598fd519c7dd8c3c028647c4d3d428f6957369e6b41f174e0620dba4ffb813b2d6d10937c111aa8d25300d32eb03aa76b12514dcc973
|
data/Gemfile.lock
CHANGED
data/README.md
CHANGED
@@ -6,20 +6,24 @@ Search pokemons you want to know by CLI and Ruby interface.
|
|
6
6
|
:warning: **This project is WIP!** Stay tuned!
|
7
7
|
|
8
8
|
## Installation
|
9
|
-
|
9
|
+
:warning: **The gem name is pokemon, not pokedex**. Please be careful.
|
10
|
+
|
11
|
+
Add this line to your application’s Gemfile.
|
10
12
|
|
11
13
|
```ruby
|
12
|
-
gem '
|
14
|
+
gem 'pokemon'
|
13
15
|
```
|
14
16
|
|
15
|
-
And then execute
|
17
|
+
And then execute this.
|
18
|
+
|
16
19
|
```bash
|
17
20
|
$ bundle install
|
18
21
|
```
|
19
22
|
|
20
|
-
Or install it yourself
|
23
|
+
Or install it yourself.
|
24
|
+
|
21
25
|
```bash
|
22
|
-
$ gem install
|
26
|
+
$ gem install pokemon
|
23
27
|
```
|
24
28
|
|
25
29
|
## Usage
|
data/lib/pokedex.rb
CHANGED
data/lib/pokedex/version.rb
CHANGED