lbweather 0.0.1 → 0.0.2
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/lib/weather/forecast.rb +1 -1
- data/lib/weather/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 00e2d40570902fe978aa8f610355e91d5f4b1f2f
|
|
4
|
+
data.tar.gz: 7e3172346cd919f0a10bdab085e531bfdbea5536
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bc9f673cbc713c618c03fc61ff66122aa2fea46f8fba08710051aa67e8c518af9b36d9adf483f809a0476e1f1880b43822f00b0477ed9e4ffb9cd670661714bd
|
|
7
|
+
data.tar.gz: fe9d8d48656cbc724c5f2db023657e1669d091449bdfd840819c6cac279781743333f6f3d311685d65abdd80936ce9a9a734127bd8964750a905fbb3d40bf85b
|
data/lib/weather/forecast.rb
CHANGED
|
@@ -25,7 +25,7 @@ module Weather
|
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
puts "It's currently #{forecast.currently.summary.downcase} and feels like #{forecast.currently.apparentTemperature}°."
|
|
28
|
-
puts "
|
|
28
|
+
puts "It's going to be #{forecast.minutely.summary.downcase} #{forecast.hourly.summary} #{forecast.daily.summary}"
|
|
29
29
|
rescue Faraday::ConnectionFailed
|
|
30
30
|
puts "You don't seem to be connected to the Internet. Loser."
|
|
31
31
|
end
|
data/lib/weather/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lbweather
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Linell Bonnette
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2014-11-
|
|
11
|
+
date: 2014-11-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -128,7 +128,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
128
128
|
version: '0'
|
|
129
129
|
requirements: []
|
|
130
130
|
rubyforge_project:
|
|
131
|
-
rubygems_version: 2.4.
|
|
131
|
+
rubygems_version: 2.4.4
|
|
132
132
|
signing_key:
|
|
133
133
|
specification_version: 4
|
|
134
134
|
summary: Displays the current weather forecast.
|