lita-onewheel-moonphase 0.0.0 → 1.0.0
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/onewheel_moonphase.rb +23 -29
- data/lita-onewheel-moonphase.gemspec +2 -2
- data/spec/fixtures/moon.json +18 -16
- data/spec/lita/handlers/onewheel_moonphase_spec.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9b601c31654b9f635df46a9e42fa8c6c41e00e0d
|
4
|
+
data.tar.gz: d1d2585d746d61aa58a0b1bc043f48e70904fc4b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 54ebd8c8590fbd07da4fbe89c3fe91a4764cde116914124f74e1613093b6d40504da3b5a5a698e4c967ceb841e12756dec9f57a77a78f0d182c709ec64209444
|
7
|
+
data.tar.gz: a5cc314cca06a484062af7c42371ab7adfaeb6b6eb2f85e11832f44fdc01da177b4b368c6d0d8d5a604b38e4e2d94c0b83c77e940e7d8f9f09a3b0c82296b5c8
|
@@ -9,44 +9,38 @@ module Lita
|
|
9
9
|
help: {'moon [location]' => 'Get Moon phase data'}
|
10
10
|
|
11
11
|
def moon(response)
|
12
|
-
location = response
|
12
|
+
location = get_location(response)
|
13
13
|
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
moon = get_data(location)
|
15
|
+
|
16
|
+
# today = Time.now
|
17
|
+
rise_time = Time.parse moon['moondata']['rise']
|
18
|
+
set_time = Time.parse moon['moondata']['set']
|
19
|
+
|
20
|
+
reply = "Moon phase #{moon['moondata']['fracillum']}, #{moon['moondata']['curphase']}. "
|
21
|
+
reply += "Rise: #{rise_time.strftime("%H:%M")} Set: #{set_time.strftime('%H:%M')}"
|
22
|
+
Lita.logger.debug "Replying with #{reply}"
|
23
|
+
response.reply reply
|
24
|
+
end
|
17
25
|
|
26
|
+
def get_data(location)
|
18
27
|
Lita.logger.debug "Getting Moon data for #{location}"
|
19
28
|
uri = "https://j8jqi56gye.execute-api.us-west-2.amazonaws.com/prod/moon?loc=#{URI.encode location}"
|
20
29
|
Lita.logger.debug uri
|
21
|
-
|
30
|
+
JSON.parse(RestClient.get(uri))
|
31
|
+
end
|
22
32
|
|
23
|
-
|
24
|
-
|
25
|
-
|
33
|
+
def get_location(response)
|
34
|
+
location = response.matches[0][0]
|
35
|
+
|
36
|
+
if location.empty?
|
37
|
+
location = '45.5230622,-122.6764816'
|
38
|
+
end
|
39
|
+
|
40
|
+
location
|
26
41
|
end
|
27
42
|
|
28
43
|
Lita.register_handler(self)
|
29
44
|
end
|
30
45
|
end
|
31
46
|
end
|
32
|
-
{
|
33
|
-
"year": 2016,
|
34
|
-
"month": 11,
|
35
|
-
"day": 18,
|
36
|
-
"dayOfWeek": "Friday",
|
37
|
-
"lng": -122.186048,
|
38
|
-
"lat": 45.205518,
|
39
|
-
"tz": -8,
|
40
|
-
"sundata": {
|
41
|
-
"civilRise": "06:40",
|
42
|
-
"rise": "07:12",
|
43
|
-
"transit": "11:54",
|
44
|
-
"set": "16:36",
|
45
|
-
"civilSet": "17:08"
|
46
|
-
},
|
47
|
-
"moondata": {
|
48
|
-
"transit": "03:45",
|
49
|
-
"set": "11:16",
|
50
|
-
"rise": "21:14"
|
51
|
-
}
|
52
|
-
}
|
@@ -1,10 +1,10 @@
|
|
1
1
|
Gem::Specification.new do |spec|
|
2
2
|
spec.name = 'lita-onewheel-moonphase'
|
3
|
-
spec.version = '
|
3
|
+
spec.version = '1.0.0'
|
4
4
|
spec.authors = ['Andrew Kreps']
|
5
5
|
spec.email = ['andrew.kreps@gmail.com']
|
6
6
|
spec.description = %q{Lita interface to a lambda representing Moon phase data.}
|
7
|
-
spec.summary =
|
7
|
+
spec.summary = spec.description
|
8
8
|
spec.homepage = 'https://github.com/onewheelskyward/lita-onewheel-moonphase'
|
9
9
|
spec.license = 'MIT'
|
10
10
|
spec.metadata = { 'lita_plugin_type' => 'handler' }
|
data/spec/fixtures/moon.json
CHANGED
@@ -1,23 +1,25 @@
|
|
1
1
|
{
|
2
|
-
"year":
|
3
|
-
"month":
|
4
|
-
"day":
|
5
|
-
"dayOfWeek": "
|
6
|
-
"lng": -122.
|
7
|
-
"lat": 45.
|
2
|
+
"year": 2017,
|
3
|
+
"month": 8,
|
4
|
+
"day": 27,
|
5
|
+
"dayOfWeek": "Sunday",
|
6
|
+
"lng": -122.676552,
|
7
|
+
"lat": 45.523316,
|
8
|
+
"location": "45.5230622,-122.6764816",
|
9
|
+
"address": "11 NW 6th Ave, Portland, OR 97209, USA",
|
8
10
|
"tz": -8,
|
9
11
|
"sundata": {
|
10
|
-
"civilRise": "
|
11
|
-
"rise": "
|
12
|
-
"transit": "
|
13
|
-
"set": "
|
14
|
-
"civilSet": "
|
12
|
+
"civilRise": "2017-8-27T04:55:00-8",
|
13
|
+
"rise": "2017-8-27T05:26:00-8",
|
14
|
+
"transit": "2017-8-27T12:12:00-8",
|
15
|
+
"set": "2017-8-27T18:57:00-8",
|
16
|
+
"civilSet": "2017-8-27T19:28:00-8"
|
15
17
|
},
|
16
18
|
"moondata": {
|
17
|
-
"fracillum": "
|
18
|
-
"curphase": "
|
19
|
-
"
|
20
|
-
"
|
21
|
-
"
|
19
|
+
"fracillum": "36%",
|
20
|
+
"curphase": "Waxing Crescent",
|
21
|
+
"rise": "2017-8-27T11:45:00-8",
|
22
|
+
"transit": "2017-8-27T17:03:00-8",
|
23
|
+
"set": "2017-8-27T22:16:00-8"
|
22
24
|
}
|
23
25
|
}
|
@@ -8,6 +8,6 @@ describe Lita::Handlers::OnewheelMoonphase, lita_handler: true do
|
|
8
8
|
mock = File.open('spec/fixtures/moon.json').read
|
9
9
|
allow(RestClient).to receive(:get) { mock }
|
10
10
|
send_command 'moon'
|
11
|
-
expect(replies.last).to eq(
|
11
|
+
expect(replies.last).to eq('Moon phase 36%, Waxing Crescent. Rise: 11:45 Set: 22:16')
|
12
12
|
end
|
13
13
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lita-onewheel-moonphase
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Andrew Kreps
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lita
|
@@ -162,10 +162,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
162
162
|
version: '0'
|
163
163
|
requirements: []
|
164
164
|
rubyforge_project:
|
165
|
-
rubygems_version: 2.5.
|
165
|
+
rubygems_version: 2.5.2
|
166
166
|
signing_key:
|
167
167
|
specification_version: 4
|
168
|
-
summary:
|
168
|
+
summary: Lita interface to a lambda representing Moon phase data.
|
169
169
|
test_files:
|
170
170
|
- spec/fixtures/moon.json
|
171
171
|
- spec/lita/handlers/onewheel_moonphase_spec.rb
|