kovid 0.1.10 → 0.1.11
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 +12 -7
- data/bin/covid +4 -0
- data/lib/kovid/version.rb +1 -1
- metadata +3 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 69bb9029da31d65ec61e33aca03f1e8719105ae941b37be509761d6b64823d85
|
|
4
|
+
data.tar.gz: c1e49c8b5323ef9e0db516ec6a9b55ab5c906127a6d090accc4afac62d0bd69d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2bdf77245d95fd7784e6592c390164160b2042d098d713636100efb46f4662973ac0b066a62fed4b8a2f28c4b6e22e277a93b6789856ab56d201213ec14ac77
|
|
7
|
+
data.tar.gz: 33b3716e9cb1f5308ae457a0c5d64720cfe120e52c89d2d1a8a2d3dba01ad5eeb8224e750b8dd82e8d58c7e4d255d04a0e45d3167254e4a2ef15521ca3f3f47b
|
data/Gemfile.lock
CHANGED
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
|
-
🇺🇸
|
|
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
|

|
|
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
|
|
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
data/lib/kovid/version.rb
CHANGED
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.
|
|
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
|