nike_v2 0.2.5 → 0.2.7
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/ext/core_ext.rb +9 -0
- data/lib/nike_v2/activities.rb +19 -3
- data/lib/nike_v2/activity.rb +13 -3
- data/lib/nike_v2/metric.rb +1 -0
- data/lib/nike_v2/metrics.rb +1 -0
- data/lib/nike_v2/version.rb +1 -1
- data/spec/fixtures/nike_api_cassettes/activities.yml +163 -3
- data/spec/fixtures/nike_api_cassettes/activity.yml +119 -2
- data/spec/nike_v2/acitivites_spec.rb +8 -3
- data/spec/nike_v2/metric_spec.rb +1 -1
- data/spec/nike_v2/metrics_spec.rb +1 -1
- metadata +1 -1
data/lib/ext/core_ext.rb
CHANGED
@@ -6,4 +6,13 @@ class String
|
|
6
6
|
tr("-", "_").
|
7
7
|
downcase
|
8
8
|
end
|
9
|
+
end
|
10
|
+
|
11
|
+
class Range
|
12
|
+
def intersection(other)
|
13
|
+
raise ArgumentError, 'value must be a Range' unless other.kind_of?(Range)
|
14
|
+
return nil if (self.max < other.begin or other.max < self.begin)
|
15
|
+
[self.begin, other.begin].max..[self.max, other.max].min
|
16
|
+
end
|
17
|
+
alias_method :&, :intersection
|
9
18
|
end
|
data/lib/nike_v2/activities.rb
CHANGED
@@ -11,6 +11,20 @@ module NikeV2
|
|
11
11
|
|
12
12
|
API_URL = '/me/sport/activities'
|
13
13
|
|
14
|
+
Metrics::METRIC_TYPES.each do |type|
|
15
|
+
self.class_eval do
|
16
|
+
|
17
|
+
method_var_name = 'total_' + type.downcase
|
18
|
+
instance_variable_set('@' + method_var_name, 0.00)
|
19
|
+
define_method(method_var_name){ ivar = instance_variable_get('@' + method_var_name); ivar ||= sum_of(method_var_name)}
|
20
|
+
|
21
|
+
|
22
|
+
define_method("total_#{type.downcase}_during") do |start_date, end_date|
|
23
|
+
@activities_array.reject{|a| ((a.started_at..a.ended_at) & (start_date..end_date)).nil?}.collect{|a| a.send("total_#{type.downcase}_during", start_date, end_date)}.inject(:+)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
14
28
|
def initialize(attributes = {})
|
15
29
|
raise "#{self.class} requires a person." unless attributes.keys.include?(:person)
|
16
30
|
@build_metrics = attributes.delete(:build_metrics) || false
|
@@ -39,11 +53,13 @@ module NikeV2
|
|
39
53
|
end
|
40
54
|
end
|
41
55
|
|
42
|
-
|
43
|
-
|
56
|
+
private
|
57
|
+
|
58
|
+
|
59
|
+
def sum_of(method_var_name)
|
60
|
+
self.collect(&:"#{method_var_name}").inject(:+) || 0.00
|
44
61
|
end
|
45
62
|
|
46
|
-
private
|
47
63
|
def build_activities(data)
|
48
64
|
if data
|
49
65
|
data.each do |activity|
|
data/lib/nike_v2/activity.rb
CHANGED
@@ -18,6 +18,7 @@ module NikeV2
|
|
18
18
|
raise "#{self.class} requires s person." unless attributes.keys.include?(:person)
|
19
19
|
raise "#{self.class} requires an activityId." unless attributes.keys.include?('activityId')
|
20
20
|
|
21
|
+
build_metrics(attributes)
|
21
22
|
super(attributes)
|
22
23
|
end
|
23
24
|
|
@@ -26,15 +27,15 @@ module NikeV2
|
|
26
27
|
end
|
27
28
|
|
28
29
|
def metrics
|
29
|
-
load_data unless @metrics
|
30
|
+
load_data unless @metrics.is_a?(NikeV2::Metrics)
|
30
31
|
@metrics
|
31
32
|
end
|
32
33
|
|
33
34
|
def load_data
|
34
35
|
data = fetch_data
|
35
|
-
|
36
|
+
build_metrics(data)
|
37
|
+
set_attributes(data)
|
36
38
|
|
37
|
-
set_attributes(data)
|
38
39
|
true
|
39
40
|
end
|
40
41
|
|
@@ -42,9 +43,18 @@ module NikeV2
|
|
42
43
|
@started_at ||= Time.parse(self.start_time.gsub(/Z$/,'') + " #{self.activity_time_zone}")
|
43
44
|
end
|
44
45
|
|
46
|
+
def ended_at
|
47
|
+
@started_at ||= Time.parse(self.end_time.gsub(/Z$/,'') + " #{self.activity_time_zone}")
|
48
|
+
end
|
49
|
+
|
45
50
|
private
|
46
51
|
def api_url
|
47
52
|
API_URL + "/#{self.activity_id}"
|
48
53
|
end
|
54
|
+
|
55
|
+
def build_metrics(data)
|
56
|
+
metrics = data.delete('metrics') || []
|
57
|
+
@metrics = metrics.empty? ? nil : NikeV2::Metrics.new(self, metrics)
|
58
|
+
end
|
49
59
|
end
|
50
60
|
end
|
data/lib/nike_v2/metric.rb
CHANGED
data/lib/nike_v2/metrics.rb
CHANGED
data/lib/nike_v2/version.rb
CHANGED
@@ -30,7 +30,7 @@ http_interactions:
|
|
30
30
|
- keep-alive
|
31
31
|
body:
|
32
32
|
encoding: US-ASCII
|
33
|
-
string: ! '{"data":[{"activityId":"91b501dc-4a38-44aa-b537-6095418713d8","calories":2475,"fuel":7500,"distance":19.665315,"steps":24975,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-26T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"8554c3bb-f985-4700-a52d-6235475a10f0","calories":1848,"fuel":5555,"distance":14.6834352,"steps":18648,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-25T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"b7511567-9414-429a-9b7b-40ebc15af985","calories":396,"fuel":1200,"distance":3.1464504,"steps":3996,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-24T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"b87bb409-a618-47ee-a75e-1bb5f8daf9a6","calories":300,"fuel":900,"distance":2.3621999999999996,"steps":3000,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-23T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"6c6eb89c-fa42-49a6-8b04-2596297a7c3a","calories":200,"fuel":600,"distance":1.5748,"steps":2000,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-22T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]}],"paging":{"next":"/me/sport/activities?access_token=68d1b7f5ec3e6a1ad3b349cd73983b34&offset=6&count=5","previous":null}}'
|
33
|
+
string: ! '{"data":[{"activityId":"91b501dc-4a38-44aa-b537-6095418713d8","calories":2475,"fuel":7500,"distance":19.665315,"steps":24975,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-26T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[],"metrics":[]},{"activityId":"8554c3bb-f985-4700-a52d-6235475a10f0","calories":1848,"fuel":5555,"distance":14.6834352,"steps":18648,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-25T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"b7511567-9414-429a-9b7b-40ebc15af985","calories":396,"fuel":1200,"distance":3.1464504,"steps":3996,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-24T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"b87bb409-a618-47ee-a75e-1bb5f8daf9a6","calories":300,"fuel":900,"distance":2.3621999999999996,"steps":3000,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-23T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]},{"activityId":"6c6eb89c-fa42-49a6-8b04-2596297a7c3a","calories":200,"fuel":600,"distance":1.5748,"steps":2000,"duration":"0:01:00.0000","activityType":"ALL_DAY","startTime":"2012-02-22T08:00:00Z","activityTimeZone":"America/Los_Angeles","status":"COMPLETE","deviceType":"FUELBAND","tags":[],"streams":[]}],"paging":{"next":"/me/sport/activities?access_token=68d1b7f5ec3e6a1ad3b349cd73983b34&offset=6&count=5","previous":null}}'
|
34
34
|
http_version:
|
35
35
|
recorded_at: Sun, 20 Jan 2013 04:21:05 GMT
|
36
36
|
- request:
|
@@ -63,7 +63,12 @@ http_interactions:
|
|
63
63
|
- keep-alive
|
64
64
|
body:
|
65
65
|
encoding: US-ASCII
|
66
|
-
string: ! '{ "data": [ { "activityId": "c3337642-72db-41f7-b4a2-4da4600dfc9f",
|
66
|
+
string: ! '{ "data": [ { "activityId": "c3337642-72db-41f7-b4a2-4da4600dfc9f",
|
67
|
+
"calories": 581, "fuel": 1653, "distance": 2.0936965942382812, "steps": 2659,
|
68
|
+
"duration": "7:02:00.000", "activityType": "ALL_DAY", "startTime": "2013-02-26T07:00:00Z",
|
69
|
+
"activityTimeZone": "America/Phoenix", "status": "IN_PROGRESS", "deviceType":
|
70
|
+
"FUELBAND", "tags": [], "metrics": [] } ], "paging": { "next": "/me/sport/activities?count=1&access_token=2159f27a88a8cc3b410e1529412b86f5&offset=2"
|
71
|
+
} }'
|
67
72
|
http_version:
|
68
73
|
recorded_at: Wed, 27 Feb 2013 16:18:07 GMT
|
69
74
|
- request:
|
@@ -96,7 +101,162 @@ http_interactions:
|
|
96
101
|
- keep-alive
|
97
102
|
body:
|
98
103
|
encoding: US-ASCII
|
99
|
-
string: ! '{ "data": [ { "activityId": "c3337642-72db-41f7-b4a2-4da4600dfc9f",
|
104
|
+
string: ! '{ "data": [ { "activityId": "c3337642-72db-41f7-b4a2-4da4600dfc9f",
|
105
|
+
"calories": 581, "fuel": 1653, "distance": 2.0936965942382812, "steps": 2659,
|
106
|
+
"duration": "7:02:00.000", "activityType": "ALL_DAY", "startTime": "2013-01-01T07:00:00Z",
|
107
|
+
"activityTimeZone": "America/Phoenix", "status": "IN_PROGRESS", "deviceType":
|
108
|
+
"FUELBAND", "tags": [], "metrics": [] } ], "paging": { "next": "/me/sport/activities?startDate=2013-01-01&access_token=2159f27a88a8cc3b410e1529412b86f5&offset=2"
|
109
|
+
} }'
|
100
110
|
http_version:
|
101
111
|
recorded_at: Wed, 27 Feb 2013 16:18:07 GMT
|
112
|
+
- request:
|
113
|
+
method: get
|
114
|
+
uri: https://api.nike.com/me/sport/activities/c3337642-72db-41f7-b4a2-4da4600dfc9f?access_token=foobar
|
115
|
+
body:
|
116
|
+
encoding: US-ASCII
|
117
|
+
string: ''
|
118
|
+
headers:
|
119
|
+
Accept:
|
120
|
+
- application/json
|
121
|
+
Appid:
|
122
|
+
- nike
|
123
|
+
response:
|
124
|
+
status:
|
125
|
+
code: 200
|
126
|
+
message: OK
|
127
|
+
headers:
|
128
|
+
Content-Type:
|
129
|
+
- application/json;charset=UTF-8
|
130
|
+
Date:
|
131
|
+
- Sun, 20 Jan 2013 04:21:04 GMT
|
132
|
+
Server:
|
133
|
+
- Apache
|
134
|
+
X-Swooshlet:
|
135
|
+
- app-msp-api-0 prd sin-82-app-msp-api-0
|
136
|
+
Content-Length:
|
137
|
+
- '340'
|
138
|
+
Connection:
|
139
|
+
- keep-alive
|
140
|
+
body:
|
141
|
+
encoding: US-ASCII
|
142
|
+
string: ! '{ "activityId": "91b501dc-4a38-44aa-b537-6095418713d8", "calories":
|
143
|
+
257, "fuel": 662, "distance": 3.1317999362945557, "steps": 10, "duration":
|
144
|
+
"0:14:31.000", "activityType": "RUN", "startTime": "2011-08-11T00:00:00Z",
|
145
|
+
"activityTimeZone": "GMT-08:00", "status": "COMPLETE", "deviceType": "SPORTWATCH",
|
146
|
+
"tags": [ { "tagType": "NOTE", "value": "text string" }, { "tagType": "COURT",
|
147
|
+
"value": "DUNK" }, { "tagType": "TERRAIN", "value": "TRAIL" }, { "tagType":
|
148
|
+
"EMOTION", "value": "HAPPY" }, { "tagType": "SHOES", "value": "AirMax" },
|
149
|
+
{ "tagType": "WEATHER", "value": "RAINY" } ], "metrics": [ { "intervalMetric":
|
150
|
+
10, "intervalUnit": "SEC", "metricType": "DISTANCE", "values": [ 0.0299, 0.0562,
|
151
|
+
0.0794, 0.114, 3.0967, 3.1296 ] }, { "intervalMetric": 1, "intervalUnit":
|
152
|
+
"MIN", "metricType": "FUEL", "values": [ "21", "8", "21", "3", "19", "19",
|
153
|
+
"8", "25", "8", "3", "16", "14", "23", "26", "28", "24", "14", "19", "16",
|
154
|
+
"0", "2", "20", "22", "3", "21", "7", "24", "26", "25", "8", "21", "22", "20",
|
155
|
+
"6", "22", "17", "15", "2", "22", "4", "18", "16", "9", "10", "0", "24", "7",
|
156
|
+
"25", "9", "8", "15", "3", "7", "12", "22", "18", "13", "28", "15", "0", "22",
|
157
|
+
"24", "16", "14", "12", "14", "18", "5", "8", "24", "9", "18", "25", "15",
|
158
|
+
"6", "3", "28", "5", "8", "6", "19", "6", "18", "18", "21", "24", "26", "0",
|
159
|
+
"24", "12", "5", "11", "3", "12", "22", "22", "22", "23", "1", "1", "16",
|
160
|
+
"6", "26", "14", "11", "23", "15", "4", "13", "2", "3", "28", "2", "7", "9",
|
161
|
+
"0", "4", "25", "18", "10", "25", "3", "23", "27", "10", "20", "2", "15",
|
162
|
+
"23", "1", "21", "14", "4", "1", "26", "20", "20", "28", "24", "18", "9",
|
163
|
+
"24", "23", "16", "0", "11", "14", "14", "12", "15", "12", "3", "14", "21",
|
164
|
+
"17", "22", "28", "28", "27", "21", "15", "25", "24", "2", "25", "21", "20",
|
165
|
+
"3", "20", "6", "2", "6", "1", "25", "20", "20", "23", "9", "8", "17", "5",
|
166
|
+
"15", "2", "15", "21", "21", "25", "13", "10", "22", "10", "6", "25", "27",
|
167
|
+
"6", "24", "0", "20", "27", "12", "23", "7", "20", "11", "15", "23", "20",
|
168
|
+
"21", "24", "25", "21", "20", "12", "7", "16", "24", "16", "26", "15", "16",
|
169
|
+
"15", "7", "11", "17", "26", "24", "17", "25", "12", "23", "12", "5", "23",
|
170
|
+
"7", "11", "1", "6", "14", "18", "14", "8", "11", "13", "0", "17", "15", "26",
|
171
|
+
"25", "0", "17", "27", "6", "14", "19", "16", "12", "15", "1", "12", "15",
|
172
|
+
"12", "0", "7", "16", "12", "22", "10", "14", "27", "9", "6", "16", "4", "18",
|
173
|
+
"18", "19", "16", "7", "12", "12", "4", "17", "25", "20", "28", "7", "9",
|
174
|
+
"5", "2", "14", "7", "28", "11", "11", "3", "25", "13", "1", "15", "3", "27",
|
175
|
+
"8", "6", "17", "24", "6", "19", "25", "2", "3", "12", "2", "18", "15", "25",
|
176
|
+
"25", "26", "28", "22", "18", "0", "0", "24", "25", "7", "2", "28", "0", "21",
|
177
|
+
"23", "26", "25", "7", "22", "27", "11", "4", "15", "12", "3", "2", "26",
|
178
|
+
"6", "13", "26", "1", "18", "14", "22", "9", "9", "1", "19", "12", "27", "10",
|
179
|
+
"6", "6", "25", "1", "21", "21", "6", "20", "22", "1", "3", "8", "1", "7",
|
180
|
+
"11", "10", "16", "5", "14", "19", "21", "23", "3", "3", "4", "10", "20",
|
181
|
+
"6", "1", "19", "0", "8", "28", "10", "19", "14", "17", "3", "13", "7", "24",
|
182
|
+
"26", "8", "1", "27", "5", "2", "9", "13", "0", "20", "9", "23", "13", "27",
|
183
|
+
"13", "1", "2", "12", "13", "17", "20", "21", "22", "1", "13", "14", "2",
|
184
|
+
"16", "12", "9", "19", "10", "2", "28", "27", "23", "25", "27", "9", "28",
|
185
|
+
"25", "3", "28", "13", "18", "3", "25", "25", "3", "10", "20", "5", "27",
|
186
|
+
"14", "24", "10", "4", "11", "16", "11", "6", "16", "24", "20", "14", "23",
|
187
|
+
"8", "13", "5", "25", "7", "11", "23", "10", "0", "27", "1", "22", "28", "26",
|
188
|
+
"13", "16", "23", "13", "2", "22", "23", "25", "2", "7", "1", "9", "28", "13",
|
189
|
+
"24", "16", "1", "24", "4", "21", "25", "12", "7", "26", "0", "1", "13", "23",
|
190
|
+
"12", "2", "4", "1", "12", "23", "12", "21", "21", "2", "10", "5", "16", "1",
|
191
|
+
"17", "1", "2", "4", "1", "27", "14", "12", "13", "27", "28", "8", "21", "18",
|
192
|
+
"6", "15", "10", "12", "7", "0", "26", "4", "12", "1", "1", "20", "22", "10",
|
193
|
+
"19", "27", "16", "7", "24", "14", "25", "0", "10", "5", "5", "8", "5", "3",
|
194
|
+
"16", "15", "6", "7", "5", "14", "6", "11", "18", "17", "11", "7", "7", "2",
|
195
|
+
"24", "11", "13", "17", "26", "6", "13", "9", "16", "18", "3", "12", "14",
|
196
|
+
"3", "13", "11", "20", "8", "18", "12", "0", "3", "22", "17", "4", "0", "8",
|
197
|
+
"3", "21", "28", "5", "14", "8", "20", "17", "24", "15", "7", "1", "1", "27",
|
198
|
+
"12", "12", "4", "4", "27", "25", "0", "5", "9", "2", "9", "26", "13", "11",
|
199
|
+
"9", "21", "14", "27", "28", "25", "10", "17", "5", "18", "10", "3", "13",
|
200
|
+
"14", "28", "9", "9", "22", "20", "0", "28", "25", "25", "14", "18", "7",
|
201
|
+
"28", "28", "16", "13", "2", "21", "24", "19", "16", "27", "5", "9", "22",
|
202
|
+
"11", "24", "24", "12", "18", "10", "6", "2", "18", "8", "27", "8", "10",
|
203
|
+
"5", "2", "7", "21", "4", "7", "13", "27", "20", "25", "19", "4", "9", "28",
|
204
|
+
"11", "15", "13", "17", "7", "12", "27", "6", "3", "15", "22", "14", "2",
|
205
|
+
"17", "21", "16", "17", "7", "10", "24", "26", "16", "11", "27", "11", "28",
|
206
|
+
"25", "27", "9", "3", "19", "20", "23", "4", "24", "27", "14", "20", "15",
|
207
|
+
"15", "3", "22", "18", "9", "17", "22", "16", "28", "1", "14", "13", "8",
|
208
|
+
"21", "25", "16", "24", "16", "15", "16", "13", "17", "8", "24", "0", "19",
|
209
|
+
"5", "18", "18", "3", "16", "18", "10", "22", "3", "24", "27", "15", "28",
|
210
|
+
"9", "17", "24", "15", "3", "15", "16", "24", "25", "25", "28", "20", "10",
|
211
|
+
"19", "1", "12", "12", "28", "23", "17", "24", "4", "10", "25", "19", "25",
|
212
|
+
"5", "5", "10", "23", "17", "18", "17", "4", "5", "26", "27", "6", "9", "23",
|
213
|
+
"3", "5", "12", "21", "22", "7", "4", "22", "10", "4", "14", "23", "9", "20",
|
214
|
+
"26", "2", "5", "21", "4", "11", "18", "19", "14", "21", "16", "9", "13",
|
215
|
+
"0", "14", "19", "14", "2", "10", "9", "4", "23", "8", "0", "10", "12", "24",
|
216
|
+
"6", "3", "1", "20", "28", "24", "11", "5", "14", "23", "0", "20", "24", "4",
|
217
|
+
"6", "5", "21", "13", "5", "28", "9", "11", "5", "12", "1", "10", "8", "24",
|
218
|
+
"23", "28", "14", "2", "2", "10", "3", "21", "23", "2", "0", "12", "20", "20",
|
219
|
+
"17", "18", "27", "20", "0", "27", "28", "11", "15", "5", "0", "1", "4", "3",
|
220
|
+
"21", "22", "22", "22", "1", "7", "19", "8", "6", "11", "5", "19", "16", "6",
|
221
|
+
"11", "20", "23", "5", "25", "27", "16", "5", "18", "17", "18", "25", "11",
|
222
|
+
"25", "5", "16", "13", "16", "8", "7", "0", "13", "27", "14", "20", "26",
|
223
|
+
"26", "11", "12", "16", "25", "6", "24", "16", "20", "26", "14", "22", "16",
|
224
|
+
"12", "21", "23", "15", "20", "24", "23", "14", "10", "1", "11", "0", "16",
|
225
|
+
"15", "9", "24", "14", "11", "9", "21", "18", "13", "26", "4", "16", "7",
|
226
|
+
"16", "14", "11", "6", "13", "2", "6", "19", "21", "4", "4", "14", "22", "28",
|
227
|
+
"23", "1", "2", "11", "24", "13", "20", "7", "28", "15", "6", "14", "25",
|
228
|
+
"5", "21", "17", "25", "23", "18", "4", "11", "28", "5", "24", "19", "17",
|
229
|
+
"4", "1", "1", "9", "15", "16", "12", "26", "4", "12", "21", "9", "11", "4",
|
230
|
+
"19", "13", "25", "11", "13", "3", "10", "13", "22", "21", "22", "5", "18",
|
231
|
+
"9", "18", "26", "15", "9", "12", "3", "27", "25", "19", "11", "28", "23",
|
232
|
+
"19", "2", "16", "18", "21", "26", "28", "25", "18", "23", "23", "5", "22",
|
233
|
+
"13", "15", "12", "24", "25", "20", "9", "16", "13", "21", "15", "17", "25",
|
234
|
+
"11", "21", "21", "13", "25", "24", "26", "12", "1", "28", "6", "19", "19",
|
235
|
+
"22", "15", "9", "0", "16", "0", "4", "8", "4", "8", "7", "21", "23", "15",
|
236
|
+
"19", "5", "13", "19", "19", "22", "14", "8", "2", "4", "15", "27", "19",
|
237
|
+
"21", "27", "1", "7", "5", "15", "15", "6", "25", "11", "7", "19", "17", "17",
|
238
|
+
"3", "10", "26", "1", "25", "6", "0", "20", "0", "23", "20", "0", "13", "27",
|
239
|
+
"2", "12", "4", "16", "13", "22", "19", "15", "11", "27", "21", "26", "26",
|
240
|
+
"9", "8", "24", "10", "20", "21", "7", "17", "28", "21", "19", "3", "21",
|
241
|
+
"7", "9", "21", "6", "13", "26", "20", "6", "7", "4", "0", "7", "17", "12",
|
242
|
+
"21", "12", "14", "17", "21", "4", "12", "8", "20", "2", "4", "6", "23", "27",
|
243
|
+
"16", "16", "19", "10", "14", "9", "8", "14", "18", "19", "22", "21", "24",
|
244
|
+
"0", "14", "15", "17", "10", "17", "28", "27", "26", "16", "10", "14", "6",
|
245
|
+
"25", "20", "22", "26", "5", "0", "26", "1", "16", "4", "1", "13", "24", "9",
|
246
|
+
"25", "19", "26", "16", "27", "28", "5", "8", "27", "9", "16", "24", "2",
|
247
|
+
"3", "23", "15", "10", "17", "11", "24", "1", "2", "19", "5", "25", "27",
|
248
|
+
"16", "17", "27", "15", "15", "27", "8", "2", "7", "25", "14", "3", "12",
|
249
|
+
"16", "17", "20", "19", "9", "11", "1", "22", "13", "7", "7", "21", "18",
|
250
|
+
"15", "14", "18", "23", "5", "11", "17", "15", "7", "17", "17", "15", "16",
|
251
|
+
"17", "4", "10", "21", "13", "25", "0", "17", "17", "5", "15", "27", "25",
|
252
|
+
"24", "5", "0", "18", "8", "6", "25", "25", "20", "27", "21", "25", "3", "5",
|
253
|
+
"0", "13", "6", "7", "9", "7", "19", "13", "13", "4", "24", "0", "23", "17",
|
254
|
+
"0", "7", "1", "16", "4", "21", "10", "23", "6", "12", "21", "1", "5", "11",
|
255
|
+
"25", "8", "15", "26", "3", "2", "0", "22", "16", "8", "19", "16", "2", "9",
|
256
|
+
"28", "14", "9", "15", "1", "8", "18", "9", "4", "9", "19", "18", "16", "28",
|
257
|
+
"4", "10", "23", "22", "9", "21", "25", "8", "9", "16", "16", "21", "18",
|
258
|
+
"8", "20", "17", "3", "15", "23", "16", "24", "10", "10", "28", "27", "18",
|
259
|
+
"4", "25", "22", "19", "11", "2", "23" ] } ] }'
|
260
|
+
http_version:
|
261
|
+
recorded_at: Sun, 20 Jan 2013 04:21:05 GMT
|
102
262
|
recorded_with: VCR 2.4.0
|
@@ -30,7 +30,124 @@ http_interactions:
|
|
30
30
|
- keep-alive
|
31
31
|
body:
|
32
32
|
encoding: US-ASCII
|
33
|
-
string: ! '{ "activityId": "91b501dc-4a38-44aa-b537-6095418713d8", "calories":
|
34
|
-
|
33
|
+
string: ! '{ "activityId": "91b501dc-4a38-44aa-b537-6095418713d8", "calories":
|
34
|
+
257, "fuel": 662, "distance": 3.1317999362945557, "steps": 10, "duration":
|
35
|
+
"0:14:31.000", "activityType": "RUN", "startTime": "2011-08-11T00:00:00Z",
|
36
|
+
"activityTimeZone": "GMT-08:00", "status": "COMPLETE", "deviceType": "SPORTWATCH",
|
37
|
+
"tags": [ { "tagType": "NOTE", "value": "text string" }, { "tagType": "COURT",
|
38
|
+
"value": "DUNK" }, { "tagType": "TERRAIN", "value": "TRAIL" }, { "tagType":
|
39
|
+
"EMOTION", "value": "HAPPY" }, { "tagType": "SHOES", "value": "AirMax" },
|
40
|
+
{ "tagType": "WEATHER", "value": "RAINY" } ], "metrics": [ { "intervalMetric":
|
41
|
+
10, "intervalUnit": "SEC", "metricType": "DISTANCE", "values": [ 0.0299, 0.0562,
|
42
|
+
0.0794, 0.114, 3.0967, 3.1296 ] }, { "intervalMetric": 1, "intervalUnit":
|
43
|
+
"MIN", "metricType": "FUEL", "values": [ "21", "8", "21", "3", "19", "19",
|
44
|
+
"8", "25", "8", "3", "16", "14", "23", "26", "28", "24", "14", "19", "16",
|
45
|
+
"0", "2", "20", "22", "3", "21", "7", "24", "26", "25", "8", "21", "22", "20",
|
46
|
+
"6", "22", "17", "15", "2", "22", "4", "18", "16", "9", "10", "0", "24", "7",
|
47
|
+
"25", "9", "8", "15", "3", "7", "12", "22", "18", "13", "28", "15", "0", "22",
|
48
|
+
"24", "16", "14", "12", "14", "18", "5", "8", "24", "9", "18", "25", "15",
|
49
|
+
"6", "3", "28", "5", "8", "6", "19", "6", "18", "18", "21", "24", "26", "0",
|
50
|
+
"24", "12", "5", "11", "3", "12", "22", "22", "22", "23", "1", "1", "16",
|
51
|
+
"6", "26", "14", "11", "23", "15", "4", "13", "2", "3", "28", "2", "7", "9",
|
52
|
+
"0", "4", "25", "18", "10", "25", "3", "23", "27", "10", "20", "2", "15",
|
53
|
+
"23", "1", "21", "14", "4", "1", "26", "20", "20", "28", "24", "18", "9",
|
54
|
+
"24", "23", "16", "0", "11", "14", "14", "12", "15", "12", "3", "14", "21",
|
55
|
+
"17", "22", "28", "28", "27", "21", "15", "25", "24", "2", "25", "21", "20",
|
56
|
+
"3", "20", "6", "2", "6", "1", "25", "20", "20", "23", "9", "8", "17", "5",
|
57
|
+
"15", "2", "15", "21", "21", "25", "13", "10", "22", "10", "6", "25", "27",
|
58
|
+
"6", "24", "0", "20", "27", "12", "23", "7", "20", "11", "15", "23", "20",
|
59
|
+
"21", "24", "25", "21", "20", "12", "7", "16", "24", "16", "26", "15", "16",
|
60
|
+
"15", "7", "11", "17", "26", "24", "17", "25", "12", "23", "12", "5", "23",
|
61
|
+
"7", "11", "1", "6", "14", "18", "14", "8", "11", "13", "0", "17", "15", "26",
|
62
|
+
"25", "0", "17", "27", "6", "14", "19", "16", "12", "15", "1", "12", "15",
|
63
|
+
"12", "0", "7", "16", "12", "22", "10", "14", "27", "9", "6", "16", "4", "18",
|
64
|
+
"18", "19", "16", "7", "12", "12", "4", "17", "25", "20", "28", "7", "9",
|
65
|
+
"5", "2", "14", "7", "28", "11", "11", "3", "25", "13", "1", "15", "3", "27",
|
66
|
+
"8", "6", "17", "24", "6", "19", "25", "2", "3", "12", "2", "18", "15", "25",
|
67
|
+
"25", "26", "28", "22", "18", "0", "0", "24", "25", "7", "2", "28", "0", "21",
|
68
|
+
"23", "26", "25", "7", "22", "27", "11", "4", "15", "12", "3", "2", "26",
|
69
|
+
"6", "13", "26", "1", "18", "14", "22", "9", "9", "1", "19", "12", "27", "10",
|
70
|
+
"6", "6", "25", "1", "21", "21", "6", "20", "22", "1", "3", "8", "1", "7",
|
71
|
+
"11", "10", "16", "5", "14", "19", "21", "23", "3", "3", "4", "10", "20",
|
72
|
+
"6", "1", "19", "0", "8", "28", "10", "19", "14", "17", "3", "13", "7", "24",
|
73
|
+
"26", "8", "1", "27", "5", "2", "9", "13", "0", "20", "9", "23", "13", "27",
|
74
|
+
"13", "1", "2", "12", "13", "17", "20", "21", "22", "1", "13", "14", "2",
|
75
|
+
"16", "12", "9", "19", "10", "2", "28", "27", "23", "25", "27", "9", "28",
|
76
|
+
"25", "3", "28", "13", "18", "3", "25", "25", "3", "10", "20", "5", "27",
|
77
|
+
"14", "24", "10", "4", "11", "16", "11", "6", "16", "24", "20", "14", "23",
|
78
|
+
"8", "13", "5", "25", "7", "11", "23", "10", "0", "27", "1", "22", "28", "26",
|
79
|
+
"13", "16", "23", "13", "2", "22", "23", "25", "2", "7", "1", "9", "28", "13",
|
80
|
+
"24", "16", "1", "24", "4", "21", "25", "12", "7", "26", "0", "1", "13", "23",
|
81
|
+
"12", "2", "4", "1", "12", "23", "12", "21", "21", "2", "10", "5", "16", "1",
|
82
|
+
"17", "1", "2", "4", "1", "27", "14", "12", "13", "27", "28", "8", "21", "18",
|
83
|
+
"6", "15", "10", "12", "7", "0", "26", "4", "12", "1", "1", "20", "22", "10",
|
84
|
+
"19", "27", "16", "7", "24", "14", "25", "0", "10", "5", "5", "8", "5", "3",
|
85
|
+
"16", "15", "6", "7", "5", "14", "6", "11", "18", "17", "11", "7", "7", "2",
|
86
|
+
"24", "11", "13", "17", "26", "6", "13", "9", "16", "18", "3", "12", "14",
|
87
|
+
"3", "13", "11", "20", "8", "18", "12", "0", "3", "22", "17", "4", "0", "8",
|
88
|
+
"3", "21", "28", "5", "14", "8", "20", "17", "24", "15", "7", "1", "1", "27",
|
89
|
+
"12", "12", "4", "4", "27", "25", "0", "5", "9", "2", "9", "26", "13", "11",
|
90
|
+
"9", "21", "14", "27", "28", "25", "10", "17", "5", "18", "10", "3", "13",
|
91
|
+
"14", "28", "9", "9", "22", "20", "0", "28", "25", "25", "14", "18", "7",
|
92
|
+
"28", "28", "16", "13", "2", "21", "24", "19", "16", "27", "5", "9", "22",
|
93
|
+
"11", "24", "24", "12", "18", "10", "6", "2", "18", "8", "27", "8", "10",
|
94
|
+
"5", "2", "7", "21", "4", "7", "13", "27", "20", "25", "19", "4", "9", "28",
|
95
|
+
"11", "15", "13", "17", "7", "12", "27", "6", "3", "15", "22", "14", "2",
|
96
|
+
"17", "21", "16", "17", "7", "10", "24", "26", "16", "11", "27", "11", "28",
|
97
|
+
"25", "27", "9", "3", "19", "20", "23", "4", "24", "27", "14", "20", "15",
|
98
|
+
"15", "3", "22", "18", "9", "17", "22", "16", "28", "1", "14", "13", "8",
|
99
|
+
"21", "25", "16", "24", "16", "15", "16", "13", "17", "8", "24", "0", "19",
|
100
|
+
"5", "18", "18", "3", "16", "18", "10", "22", "3", "24", "27", "15", "28",
|
101
|
+
"9", "17", "24", "15", "3", "15", "16", "24", "25", "25", "28", "20", "10",
|
102
|
+
"19", "1", "12", "12", "28", "23", "17", "24", "4", "10", "25", "19", "25",
|
103
|
+
"5", "5", "10", "23", "17", "18", "17", "4", "5", "26", "27", "6", "9", "23",
|
104
|
+
"3", "5", "12", "21", "22", "7", "4", "22", "10", "4", "14", "23", "9", "20",
|
105
|
+
"26", "2", "5", "21", "4", "11", "18", "19", "14", "21", "16", "9", "13",
|
106
|
+
"0", "14", "19", "14", "2", "10", "9", "4", "23", "8", "0", "10", "12", "24",
|
107
|
+
"6", "3", "1", "20", "28", "24", "11", "5", "14", "23", "0", "20", "24", "4",
|
108
|
+
"6", "5", "21", "13", "5", "28", "9", "11", "5", "12", "1", "10", "8", "24",
|
109
|
+
"23", "28", "14", "2", "2", "10", "3", "21", "23", "2", "0", "12", "20", "20",
|
110
|
+
"17", "18", "27", "20", "0", "27", "28", "11", "15", "5", "0", "1", "4", "3",
|
111
|
+
"21", "22", "22", "22", "1", "7", "19", "8", "6", "11", "5", "19", "16", "6",
|
112
|
+
"11", "20", "23", "5", "25", "27", "16", "5", "18", "17", "18", "25", "11",
|
113
|
+
"25", "5", "16", "13", "16", "8", "7", "0", "13", "27", "14", "20", "26",
|
114
|
+
"26", "11", "12", "16", "25", "6", "24", "16", "20", "26", "14", "22", "16",
|
115
|
+
"12", "21", "23", "15", "20", "24", "23", "14", "10", "1", "11", "0", "16",
|
116
|
+
"15", "9", "24", "14", "11", "9", "21", "18", "13", "26", "4", "16", "7",
|
117
|
+
"16", "14", "11", "6", "13", "2", "6", "19", "21", "4", "4", "14", "22", "28",
|
118
|
+
"23", "1", "2", "11", "24", "13", "20", "7", "28", "15", "6", "14", "25",
|
119
|
+
"5", "21", "17", "25", "23", "18", "4", "11", "28", "5", "24", "19", "17",
|
120
|
+
"4", "1", "1", "9", "15", "16", "12", "26", "4", "12", "21", "9", "11", "4",
|
121
|
+
"19", "13", "25", "11", "13", "3", "10", "13", "22", "21", "22", "5", "18",
|
122
|
+
"9", "18", "26", "15", "9", "12", "3", "27", "25", "19", "11", "28", "23",
|
123
|
+
"19", "2", "16", "18", "21", "26", "28", "25", "18", "23", "23", "5", "22",
|
124
|
+
"13", "15", "12", "24", "25", "20", "9", "16", "13", "21", "15", "17", "25",
|
125
|
+
"11", "21", "21", "13", "25", "24", "26", "12", "1", "28", "6", "19", "19",
|
126
|
+
"22", "15", "9", "0", "16", "0", "4", "8", "4", "8", "7", "21", "23", "15",
|
127
|
+
"19", "5", "13", "19", "19", "22", "14", "8", "2", "4", "15", "27", "19",
|
128
|
+
"21", "27", "1", "7", "5", "15", "15", "6", "25", "11", "7", "19", "17", "17",
|
129
|
+
"3", "10", "26", "1", "25", "6", "0", "20", "0", "23", "20", "0", "13", "27",
|
130
|
+
"2", "12", "4", "16", "13", "22", "19", "15", "11", "27", "21", "26", "26",
|
131
|
+
"9", "8", "24", "10", "20", "21", "7", "17", "28", "21", "19", "3", "21",
|
132
|
+
"7", "9", "21", "6", "13", "26", "20", "6", "7", "4", "0", "7", "17", "12",
|
133
|
+
"21", "12", "14", "17", "21", "4", "12", "8", "20", "2", "4", "6", "23", "27",
|
134
|
+
"16", "16", "19", "10", "14", "9", "8", "14", "18", "19", "22", "21", "24",
|
135
|
+
"0", "14", "15", "17", "10", "17", "28", "27", "26", "16", "10", "14", "6",
|
136
|
+
"25", "20", "22", "26", "5", "0", "26", "1", "16", "4", "1", "13", "24", "9",
|
137
|
+
"25", "19", "26", "16", "27", "28", "5", "8", "27", "9", "16", "24", "2",
|
138
|
+
"3", "23", "15", "10", "17", "11", "24", "1", "2", "19", "5", "25", "27",
|
139
|
+
"16", "17", "27", "15", "15", "27", "8", "2", "7", "25", "14", "3", "12",
|
140
|
+
"16", "17", "20", "19", "9", "11", "1", "22", "13", "7", "7", "21", "18",
|
141
|
+
"15", "14", "18", "23", "5", "11", "17", "15", "7", "17", "17", "15", "16",
|
142
|
+
"17", "4", "10", "21", "13", "25", "0", "17", "17", "5", "15", "27", "25",
|
143
|
+
"24", "5", "0", "18", "8", "6", "25", "25", "20", "27", "21", "25", "3", "5",
|
144
|
+
"0", "13", "6", "7", "9", "7", "19", "13", "13", "4", "24", "0", "23", "17",
|
145
|
+
"0", "7", "1", "16", "4", "21", "10", "23", "6", "12", "21", "1", "5", "11",
|
146
|
+
"25", "8", "15", "26", "3", "2", "0", "22", "16", "8", "19", "16", "2", "9",
|
147
|
+
"28", "14", "9", "15", "1", "8", "18", "9", "4", "9", "19", "18", "16", "28",
|
148
|
+
"4", "10", "23", "22", "9", "21", "25", "8", "9", "16", "16", "21", "18",
|
149
|
+
"8", "20", "17", "3", "15", "23", "16", "24", "10", "10", "28", "27", "18",
|
150
|
+
"4", "25", "22", "19", "11", "2", "23" ] } ] }'
|
151
|
+
http_version:
|
35
152
|
recorded_at: Sun, 20 Jan 2013 04:21:05 GMT
|
36
153
|
recorded_with: VCR 2.4.0
|
@@ -20,9 +20,14 @@ describe NikeV2::Activities do
|
|
20
20
|
end
|
21
21
|
|
22
22
|
it 'should accept the start_date parameter, camelcase it and return an array of Nike::Activity' do
|
23
|
-
|
24
|
-
person.activities(:count => 1).
|
25
|
-
person.activities(:count => 1).
|
23
|
+
pending
|
24
|
+
# person.activities(:count => 1).should be_kind_of(NikeV2::Activities)
|
25
|
+
# person.activities(:count => 1).first.should be_kind_of(NikeV2::Activity)
|
26
|
+
# person.activities(:count => 1).length.should == 1
|
27
|
+
end
|
28
|
+
|
29
|
+
it 'should calculate all the fuels' do
|
30
|
+
person.activities(:count => 1).total_fuel.should == 20491.0
|
26
31
|
end
|
27
32
|
end
|
28
33
|
end
|
data/spec/nike_v2/metric_spec.rb
CHANGED