kovid 0.1.10 → 0.1.11

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d88a60762b84316b69f47dc5ba6b5fe8e00369ab5e98ad96685e49d34e833d5d
4
- data.tar.gz: d535c09d1ce0eb0d14ee197af7e6b7dc7c771ba147e9863b0293c0c4362f6855
3
+ metadata.gz: 69bb9029da31d65ec61e33aca03f1e8719105ae941b37be509761d6b64823d85
4
+ data.tar.gz: c1e49c8b5323ef9e0db516ec6a9b55ab5c906127a6d090accc4afac62d0bd69d
5
5
  SHA512:
6
- metadata.gz: bfb2b119112c48f59c10d63b03949a589fc5dbdedaa9527021047f1840362108383ef9a6faae072dc915e9e28690d4953c21283a955ade2cb419e8e4f93f3844
7
- data.tar.gz: b01e98ef4d23107e9d3922adab7a7b715ff06405ee3891eb485e4df4f31f375c62de4b6fcd577a83c17a558d5ebdc799674d864e0fc226ec6671e430c7e734ac
6
+ metadata.gz: c2bdf77245d95fd7784e6592c390164160b2042d098d713636100efb46f4662973ac0b066a62fed4b8a2f28c4b6e22e277a93b6789856ab56d201213ec14ac77
7
+ data.tar.gz: 33b3716e9cb1f5308ae457a0c5d64720cfe120e52c89d2d1a8a2d3dba01ad5eeb8224e750b8dd82e8d58c7e4d255d04a0e45d3167254e4a2ef15521ca3f3f47b
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- kovid (0.1.9)
4
+ kovid (0.1.10)
5
5
  terminal-table
6
6
  thor
7
7
  typhoeus
data/README.md CHANGED
@@ -19,31 +19,33 @@ After installing:
19
19
 
20
20
  ☝️ Avoid touching your eyes, nose and mouth with unwashed hands later.
21
21
 
22
- ✌️ Disinfect your phones, keys, doorknobs and anything you touch often than you should.
22
+ ✌️ Disinfect your phones, keys, doorknobs and anything you touch more often than you should.
23
23
 
24
24
 
25
25
 
26
26
  ## ⚒️ Usage
27
27
 
28
- You can run `kovid --help` to see full list of available commands.
28
+ You can run `kovid --help` to see the full list of available commands.
29
29
 
30
30
  #### Commands Overview
31
- **Fetching**
31
+ 😷 **Fetching**
32
32
  * `kovid check ghana`
33
33
  * `kovid check ghana -f` OR `kovid check ghana --full`
34
34
 
35
- 🇺🇸 You can fetch US state-specific data with:
35
+ 🇺🇸You can fetch US state-specific data 🇺🇸
36
36
  * `kovid state colorado` OR `kovid state "north carolina"`
37
37
 
38
- **Comparing**
38
+ 😷 **Comparing**
39
39
  * `kovid compare ghana poland` (sorts by cases DESC)
40
40
  * `kovid compare ghana poland -f` OR `kovid compare ghana poland --full` (sorts by cases DESC)
41
41
 
42
42
  You can compare as many countries as you want.
43
43
 
44
- **Total figures**
44
+ 😷 **Total figures**
45
45
  * `kovid cases`
46
46
 
47
+ **PS:** If you find it irritating to have to type `kovid state michigan`, I got your back, `covid state michigan` will work as well.
48
+
47
49
 
48
50
 
49
51
  #### Commands Details
@@ -85,6 +87,9 @@ To check for total figures:
85
87
 
86
88
  ![kovid](https://i.gyazo.com/f8a21ae54152cd945fbb124b72d12ff7.png "Covid data.")
87
89
 
90
+ ## Source
91
+ > https://www.worldometers.info/coronavirus/
92
+
88
93
  ## 👨‍💻 Development
89
94
 
90
95
  After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
@@ -94,7 +99,7 @@ To install this gem onto your local machine, run `bundle exec rake install`.
94
99
 
95
100
  ## 🤲 Contributing
96
101
 
97
- There are multiple areas in this repo that can be improved or use some refactoring and for thats why bug reports and pull requests are welcome here on GitHub. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/siaw23/kovid/blob/master/CODE_OF_CONDUCT.md).
102
+ There are multiple areas in this repo that can be improved or use some refactoring and for that's why bug reports and pull requests are welcome here on GitHub. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [code of conduct](https://github.com/siaw23/kovid/blob/master/CODE_OF_CONDUCT.md).
98
103
 
99
104
 
100
105
  ## 🔖 License
data/bin/covid ADDED
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env ruby
2
+ require 'kovid/cli'
3
+
4
+ Kovid::CLI.start
data/lib/kovid/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kovid
4
- VERSION = '0.1.10'
4
+ VERSION = '0.1.11'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kovid
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Emmanuel Hayford
@@ -113,6 +113,7 @@ email:
113
113
  - siawmensah@gmail.com
114
114
  executables:
115
115
  - console
116
+ - covid
116
117
  - kovid
117
118
  - setup
118
119
  extensions: []
@@ -128,6 +129,7 @@ files:
128
129
  - README.md
129
130
  - Rakefile
130
131
  - bin/console
132
+ - bin/covid
131
133
  - bin/kovid
132
134
  - bin/setup
133
135
  - kovid.gemspec