lita-onewheel-forecast-io 1.6.1 → 1.6.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/lita/handlers/irc_handlers.rb +4 -4
- data/lita-onewheel-forecast-io.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4d4161232445276dfdcdc7146ff624a2e64a6d1
|
4
|
+
data.tar.gz: a565e435f8a9b902b20737857f23bc4094d3313d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 526dfdd044eb99b1563274247112d765325e37683bf4b697ed2bfe1d999cb2fa1cd67e3770996b3dd6ab1f31e63c8c24a9022f3b662e32beec62891757f9950a
|
7
|
+
data.tar.gz: 8b4eb270ddaef6ebf81f2b8e90d62b0be85f81b4dba9e6eaeba5e36a0b915a454c2d76359b31bf5bc88941b6cf54d1de2193b1dbdcebf3446a259c41c15bf7e0
|
@@ -228,10 +228,10 @@ module ForecastIo
|
|
228
228
|
end
|
229
229
|
|
230
230
|
def handle_http_windows(request, response)
|
231
|
-
|
232
|
-
forecast =
|
233
|
-
windows_data =
|
234
|
-
response.
|
231
|
+
uri = config.api_uri + config.api_key + '/' + '45.5295528,-122.6463158'
|
232
|
+
forecast = gimme_some_weather uri
|
233
|
+
windows_data = do_the_windows_data_thing(forecast)
|
234
|
+
response.write windows_data.to_json
|
235
235
|
end
|
236
236
|
end
|
237
237
|
end
|