weatherizableAPI 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/open_weather_api/forecast.rb +1 -1
- data/lib/open_weather_api/messageable.rb +1 -1
- data/lib/weatherizableAPI/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d3d5a41597c4ccd90f32f1f29f44beb43435219e52808c9f550abe720ed8a06
|
4
|
+
data.tar.gz: bef156ec6f9b9446eda9d9d75f0e3f8cb7f120b3706ef6175b4d9f20ba5f4691
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfa3192f45b233380dbfdcd55ffcd81c8ad66e8f936a769890e801936fa9a41872b55e2a3284a944f524c468b36e6878b0916314c72efbf0df1db652a869ef4d
|
7
|
+
data.tar.gz: 71bccc93b5efd9caaf8fff6ce19549dfc83a5882b6ac39630c5fd881207041ed68a8ad8115f79b0bfd7a7a225a513ced819fb814c1fbc89cebe41471646c2425
|
data/Gemfile.lock
CHANGED
@@ -42,7 +42,7 @@ module OpenWeatherApi
|
|
42
42
|
end
|
43
43
|
|
44
44
|
def temp_now
|
45
|
-
"#{weather.main['temp'].round(1)}#{temp_type} e #{weather.weather.last['description']} em #{forecast.convert_date(weather.dt).strftime("%d/%m")}"
|
45
|
+
"#{weather.main['temp'].round(1)}#{temp_type} e #{weather.weather.last['description']} em #{weather.name} em #{forecast.convert_date(weather.dt).strftime("%d/%m")}"
|
46
46
|
end
|
47
47
|
|
48
48
|
#FIXME: workarround to be fixed
|