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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 940fdaab049a3d0bad4bec4408f9e63e3ffa6c68710ba1a96505cda64391412d
4
- data.tar.gz: f682ac2c555e34b37fd82eb07d3a178f65f882b5919f9ee424faeccb738637fd
3
+ metadata.gz: 70b97c6896dd7109f46d87929ddb49957b29b3f3035f0c0e51cf27bdb02d46e4
4
+ data.tar.gz: f8741ed40ddacdd494843cd91e75452e5be50b80e6750a527cec9e91a138aaa7
5
5
  SHA512:
6
- metadata.gz: bcc0c07b8e41f19a2a452eca03f5c6c1a331e175f721893d96f724922d487ba3acc42b5f016409c6300beae23e188a94685fe269f8b414cea5f01ef0fe03be2e
7
- data.tar.gz: 7e00649c7c938f9ce585ab45bd2ffcf331912ca8654707d8f8ba61b45679dea0091f1e9f432b6b9b976772601f0945a1a6ca4f70a79d3e7771397274944e32ab
6
+ metadata.gz: d23f4ca306b78442457df00046e77dbf72791bdac75f98a62819b9f476adfdc1b2be88474ceded03a5233f243c1b2698bb5fafe3c8d9b66e8dcd2f4247c151e3
7
+ data.tar.gz: 4634190d45a2c4fd40c3598fd519c7dd8c3c028647c4d3d428f6957369e6b41f174e0620dba4ffb813b2d6d10937c111aa8d25300d32eb03aa76b12514dcc973
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pokemon (0.1.0)
4
+ pokemon (0.1.1)
5
5
  thor
6
6
 
7
7
  GEM
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
- Add this line to your application's Gemfile:
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 'pokedex'
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 as:
23
+ Or install it yourself.
24
+
21
25
  ```bash
22
- $ gem install pokedex
26
+ $ gem install pokemon
23
27
  ```
24
28
 
25
29
  ## Usage
@@ -28,7 +28,7 @@ module Pokedex
28
28
  private
29
29
 
30
30
  def root
31
- Gem::Specification.find_by_name('pokedex').gem_dir
31
+ Gem::Specification.find_by_name('pokemon').gem_dir
32
32
  end
33
33
  end
34
34
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Pokedex
2
- VERSION = "0.1.0"
4
+ VERSION = '0.1.1'
3
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pokemon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - noraworld