covid19 1.0.0 → 1.0.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/CHANGELOG.md +9 -1
- data/VERSION.txt +1 -1
- data/covid19.gemspec +2 -2
- data/lib/covid19.rb +1 -1
- data/lib/covid19/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 54c2f063cc71dc3e9ec63ab9ddd9eea2624200bd9fbb990d1bb39f10b895f237
|
|
4
|
+
data.tar.gz: b02df5941fd7a738bd8010d3c2e9f9d14c753481b4bce702f2a516bedf9b73f5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e992490f053504185258c64c83b54f4316f5d6d28b38a9971741651fa20c83448783525f2059f26160cf30e4ac4d117ee7aa8efcf579b7d37b00e98bc24b6a7f
|
|
7
|
+
data.tar.gz: 54f49fa6f69e441628b66030d65c9e071178dbb393b4c0b8e597d79b129fad43bebc800ef2ae5183be4118776e084934c0702618437ca86e9333c6ea98c9ce56
|
data/CHANGELOG.md
CHANGED
|
@@ -5,11 +5,19 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
|
|
6
6
|
This changelog was automatically generated using [Caretaker](https://github.com/WolfAtheneum/covid19) by [Wolf Software](https://github.com/WolfSoftware)
|
|
7
7
|
|
|
8
|
+
### [v1.0.1](https://github.com/WolfAtheneum/covid19/compare/v1.0.0...v1.0.1)
|
|
9
|
+
|
|
10
|
+
> Released on June, 15th 2020
|
|
11
|
+
|
|
12
|
+
- Minor tweak to change 'cases per million' to an integer instead of a float [`[84fd86f]`](https://github.com/WolfAtheneum/covid19/commit/84fd86fc25b835a8f6a04fede5b3c05605f14ac3) [`[TGWolf]`](https://github.com/TGWolf)
|
|
13
|
+
|
|
14
|
+
- Update the description in the gemspec [`[135f79c]`](https://github.com/WolfAtheneum/covid19/commit/135f79c12e32566a79319ba5c3a2beea39b5882d) [`[TGWolf]`](https://github.com/TGWolf)
|
|
15
|
+
|
|
8
16
|
### [v1.0.0](https://github.com/WolfAtheneum/covid19/compare/v0.1.3...v1.0.0)
|
|
9
17
|
|
|
10
18
|
> Released on June, 14th 2020
|
|
11
19
|
|
|
12
|
-
- Update the gem version [`[
|
|
20
|
+
- Update the gem version [`[8e8c619]`](https://github.com/WolfAtheneum/covid19/commit/8e8c619b856f360c5d02aadcf8954096695a1d24) [`[TGWolf]`](https://github.com/TGWolf)
|
|
13
21
|
|
|
14
22
|
- Complete rewrite using a new faster API [`[2bed745]`](https://github.com/WolfAtheneum/covid19/commit/2bed7459acdee4036c1f31e585cf65fdee704d4e) [`[TGWolf]`](https://github.com/TGWolf)
|
|
15
23
|
|
data/VERSION.txt
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.0.
|
|
1
|
+
1.0.1
|
data/covid19.gemspec
CHANGED
|
@@ -8,8 +8,8 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.authors = ['Tim Gurney aka Wolf']
|
|
9
9
|
spec.email = ['wolf@tgwolf.com']
|
|
10
10
|
|
|
11
|
-
spec.summary = 'A wrapper for the coronavirus API at https://
|
|
12
|
-
spec.description = 'A wrapper for the coronavirus API at https://
|
|
11
|
+
spec.summary = 'A wrapper for the coronavirus API at https://corona-api.com/.'
|
|
12
|
+
spec.description = 'A wrapper for the coronavirus API at https://corona-api.com/.'
|
|
13
13
|
spec.homepage = 'https://github.com/WolfAtheneum/covid19'
|
|
14
14
|
spec.license = 'MIT'
|
|
15
15
|
|
data/lib/covid19.rb
CHANGED
|
@@ -111,7 +111,7 @@ class Covid19
|
|
|
111
111
|
'ActiveTotal' => total_active,
|
|
112
112
|
'DeathRate' => get_hash_value(calculated_data, 'death_rate').to_f,
|
|
113
113
|
'RecoveryRate' => get_hash_value(calculated_data, 'recovery_rate').to_f,
|
|
114
|
-
'CasesPerMillion' => get_hash_value(calculated_data, 'cases_per_million_population')
|
|
114
|
+
'CasesPerMillion' => get_hash_value(calculated_data, 'cases_per_million_population')
|
|
115
115
|
}
|
|
116
116
|
|
|
117
117
|
country_list << row
|
data/lib/covid19/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: covid19
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Gurney aka Wolf
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-06-
|
|
11
|
+
date: 2020-06-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -108,7 +108,7 @@ dependencies:
|
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '1.8'
|
|
111
|
-
description: A wrapper for the coronavirus API at https://
|
|
111
|
+
description: A wrapper for the coronavirus API at https://corona-api.com/.
|
|
112
112
|
email:
|
|
113
113
|
- wolf@tgwolf.com
|
|
114
114
|
executables:
|
|
@@ -160,5 +160,5 @@ requirements: []
|
|
|
160
160
|
rubygems_version: 3.0.3
|
|
161
161
|
signing_key:
|
|
162
162
|
specification_version: 4
|
|
163
|
-
summary: A wrapper for the coronavirus API at https://
|
|
163
|
+
summary: A wrapper for the coronavirus API at https://corona-api.com/.
|
|
164
164
|
test_files: []
|