accuweather 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 +4 -4
- data/accuweather.gemspec +3 -1
- data/lib/accuweather/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d3f3ee685b1cd0ac59857ca0e30c05303a629b7e
|
|
4
|
+
data.tar.gz: 5e37439f9fff9227179b52aca21a75670b2425d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4aee4ca65e116409bf9dde962658f5e188ed815241421a98fcb6941d802a749b092f30738dac251f4a46b932c0b3e47c4f64253ddbc7e33c558df83615cd477d
|
|
7
|
+
data.tar.gz: 5e051ade5ab455035db25aeb4186001175bed0b03b959400355ebd0ba2b7f1af6aa5bcb6451ed32f213b2a61279ba3899500aea0c91512b9fceec4fd0af35182
|
data/accuweather.gemspec
CHANGED
|
@@ -9,7 +9,9 @@ Gem::Specification.new do |spec|
|
|
|
9
9
|
spec.authors = ['Nick Aschenbach']
|
|
10
10
|
spec.email = ['nick.aschenbach@gmail.com']
|
|
11
11
|
|
|
12
|
-
spec.summary = 'Access current weather report
|
|
12
|
+
spec.summary = 'Access current weather report for cities around the world'
|
|
13
|
+
spec.description = 'A simple web API wrapper to get weather information for cities around the world using the accuweather API. Includes
|
|
14
|
+
temperature, pressure, humidity, weather text and GPS coordinates.'
|
|
13
15
|
spec.homepage = 'https://github.com/nick-aschenbach/accuweather'
|
|
14
16
|
|
|
15
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
data/lib/accuweather/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: accuweather
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Nick Aschenbach
|
|
@@ -66,7 +66,9 @@ dependencies:
|
|
|
66
66
|
- - ">="
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
68
|
version: '0'
|
|
69
|
-
description:
|
|
69
|
+
description: |-
|
|
70
|
+
A simple web API wrapper to get weather information for cities around the world using the accuweather API. Includes
|
|
71
|
+
temperature, pressure, humidity, weather text and GPS coordinates.
|
|
70
72
|
email:
|
|
71
73
|
- nick.aschenbach@gmail.com
|
|
72
74
|
executables: []
|
|
@@ -113,5 +115,5 @@ rubyforge_project:
|
|
|
113
115
|
rubygems_version: 2.4.6
|
|
114
116
|
signing_key:
|
|
115
117
|
specification_version: 4
|
|
116
|
-
summary: Access current weather report
|
|
118
|
+
summary: Access current weather report for cities around the world
|
|
117
119
|
test_files: []
|