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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: dc1038b03cac572d43eb89be333e2f96b296b3dec003f5201caad9562e0436fa
4
- data.tar.gz: 3e289944a83f9d3e4b7a33325048e8da6d5ddadc03c4810eb674438fbd513781
3
+ metadata.gz: 54c2f063cc71dc3e9ec63ab9ddd9eea2624200bd9fbb990d1bb39f10b895f237
4
+ data.tar.gz: b02df5941fd7a738bd8010d3c2e9f9d14c753481b4bce702f2a516bedf9b73f5
5
5
  SHA512:
6
- metadata.gz: a4439749f50f0f13701b63578443f2a62ac9468645d46ac005d9ad749d3537207b1c61aaad90dc1bffe69d7a02be10ed3b15f9c4da58699035c53d0fd20a8eb7
7
- data.tar.gz: 9ca8f27fdd2df65fffa2db508c0e26a1ec4e6278b5eed407375ebce055b0f7bfe7aed2785b9a409a2ae09bc1163502884d6c374d50868ea0e0206a86794676c6
6
+ metadata.gz: e992490f053504185258c64c83b54f4316f5d6d28b38a9971741651fa20c83448783525f2059f26160cf30e4ac4d117ee7aa8efcf579b7d37b00e98bc24b6a7f
7
+ data.tar.gz: 54f49fa6f69e441628b66030d65c9e071178dbb393b4c0b8e597d79b129fad43bebc800ef2ae5183be4118776e084934c0702618437ca86e9333c6ea98c9ce56
@@ -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 [`[62e4ebd]`](https://github.com/WolfAtheneum/covid19/commit/62e4ebd730975d8199a0a5a4ba0e9e0130c74716) [`[TGWolf]`](https://github.com/TGWolf)
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
 
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.0.1
@@ -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://github.com/ExpDev07/coronavirus-tracker-api.'
12
- spec.description = 'A wrapper for the coronavirus API at https://github.com/ExpDev07/coronavirus-tracker-api.'
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
 
@@ -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').to_f
114
+ 'CasesPerMillion' => get_hash_value(calculated_data, 'cases_per_million_population')
115
115
  }
116
116
 
117
117
  country_list << row
@@ -1,3 +1,3 @@
1
1
  class Covid19
2
- VERSION = '1.0.0'.freeze
2
+ VERSION = '1.0.1'.freeze
3
3
  end
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.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-14 00:00:00.000000000 Z
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://github.com/ExpDev07/coronavirus-tracker-api.
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://github.com/ExpDev07/coronavirus-tracker-api.
163
+ summary: A wrapper for the coronavirus API at https://corona-api.com/.
164
164
  test_files: []