clever-ruby 0.7.0 → 0.8.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 +8 -8
- data/CHANGELOG.md +4 -0
- data/clever-ruby.gemspec +2 -1
- data/lib/clever-ruby/api_operations/list.rb +71 -0
- data/lib/clever-ruby/api_operations/nested_list.rb +49 -0
- data/lib/clever-ruby/api_operations/page.rb +16 -8
- data/lib/clever-ruby/version.rb +1 -1
- data/test/data/vcr_cassettes/{district_count.yml → Clever_APIOperations_List/counts_district_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{event_count.yml → Clever_APIOperations_List/counts_event_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{school_count.yml → Clever_APIOperations_List/counts_school_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{section_count.yml → Clever_APIOperations_List/counts_section_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{student_count.yml → Clever_APIOperations_List/counts_student_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{teacher_count.yml → Clever_APIOperations_List/counts_teacher_properly.yml} +6 -4
- data/test/data/vcr_cassettes/{district_find_one.yml → Clever_APIOperations_List/finds_a_single_district.yml} +11 -7
- data/test/data/vcr_cassettes/{event_find_one.yml → Clever_APIOperations_List/finds_a_single_event.yml} +11 -7
- data/test/data/vcr_cassettes/{school_find_one.yml → Clever_APIOperations_List/finds_a_single_school.yml} +11 -7
- data/test/data/vcr_cassettes/{section_find_one.yml → Clever_APIOperations_List/finds_a_single_section.yml} +11 -7
- data/test/data/vcr_cassettes/{student_find_one.yml → Clever_APIOperations_List/finds_a_single_student.yml} +11 -7
- data/test/data/vcr_cassettes/{teacher_find_one.yml → Clever_APIOperations_List/finds_a_single_teacher.yml} +11 -7
- data/test/data/vcr_cassettes/{districts.yml → Clever_APIOperations_List/finds_districts_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{district_find_multiple.yml → Clever_APIOperations_List/finds_districts_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{events.yml → Clever_APIOperations_List/finds_events_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{event_find_multiple.yml → Clever_APIOperations_List/finds_events_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{schools.yml → Clever_APIOperations_List/finds_schools_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{school_find_multiple.yml → Clever_APIOperations_List/finds_schools_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{section_find_by_page.yml → Clever_APIOperations_List/finds_sections_by_page.yml} +26 -16
- data/test/data/vcr_cassettes/{section_find_multiple.yml → Clever_APIOperations_List/finds_sections_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{students.yml → Clever_APIOperations_List/finds_students_by_page.yml} +61 -37
- data/test/data/vcr_cassettes/{student_find_multiple.yml → Clever_APIOperations_List/finds_students_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{teachers.yml → Clever_APIOperations_List/finds_teachers_by_page.yml} +11 -7
- data/test/data/vcr_cassettes/{teacher_find_multiple.yml → Clever_APIOperations_List/finds_teachers_with_multiple_ids.yml} +11 -7
- data/test/data/vcr_cassettes/{district_find_by_page.yml → Clever_APIOperations_List/retrieves_all_district.yml} +11 -7
- data/test/data/vcr_cassettes/{event_find_by_page.yml → Clever_APIOperations_List/retrieves_all_event.yml} +11 -7
- data/test/data/vcr_cassettes/{school_find_by_page.yml → Clever_APIOperations_List/retrieves_all_school.yml} +11 -7
- data/test/data/vcr_cassettes/{sections.yml → Clever_APIOperations_List/retrieves_all_section.yml} +26 -16
- data/test/data/vcr_cassettes/{student_find_by_page.yml → Clever_APIOperations_List/retrieves_all_student.yml} +61 -37
- data/test/data/vcr_cassettes/{teacher_find_by_page.yml → Clever_APIOperations_List/retrieves_all_teacher.yml} +11 -7
- data/test/data/vcr_cassettes/{districts_event_pages.yml → Clever_District/pages_methods/pages_a_district_s_events.yml} +56 -34
- data/test/data/vcr_cassettes/{districts_school_pages.yml → Clever_District/pages_methods/pages_a_district_s_schools.yml} +26 -16
- data/test/data/vcr_cassettes/{districts_section_pages.yml → Clever_District/pages_methods/pages_a_district_s_sections.yml} +206 -124
- data/test/data/vcr_cassettes/{districts_student_pages.yml → Clever_District/pages_methods/pages_a_district_s_students.yml} +121 -73
- data/test/data/vcr_cassettes/{districts_teacher_pages.yml → Clever_District/pages_methods/pages_a_district_s_teachers.yml} +61 -37
- data/test/data/vcr_cassettes/{district_events.yml → Clever_NestedResource/retrieves_a_district_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{district_schools.yml → Clever_NestedResource/retrieves_a_district_s_schools.yml} +21 -13
- data/test/data/vcr_cassettes/{district_sections.yml → Clever_NestedResource/retrieves_a_district_s_sections.yml} +51 -31
- data/test/data/vcr_cassettes/{district_students.yml → Clever_NestedResource/retrieves_a_district_s_students.yml} +121 -73
- data/test/data/vcr_cassettes/{district_teachers.yml → Clever_NestedResource/retrieves_a_district_s_teachers.yml} +21 -13
- data/test/data/vcr_cassettes/{school_district.yml → Clever_NestedResource/retrieves_a_school_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{school_events.yml → Clever_NestedResource/retrieves_a_school_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{school_sections.yml → Clever_NestedResource/retrieves_a_school_s_sections.yml} +31 -19
- data/test/data/vcr_cassettes/{school_students.yml → Clever_NestedResource/retrieves_a_school_s_students.yml} +61 -37
- data/test/data/vcr_cassettes/{school_teachers.yml → Clever_NestedResource/retrieves_a_school_s_teachers.yml} +21 -13
- data/test/data/vcr_cassettes/{section_district.yml → Clever_NestedResource/retrieves_a_section_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{section_events.yml → Clever_NestedResource/retrieves_a_section_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{section_school.yml → Clever_NestedResource/retrieves_a_section_s_school.yml} +16 -10
- data/test/data/vcr_cassettes/{section_students.yml → Clever_NestedResource/retrieves_a_section_s_students.yml} +21 -13
- data/test/data/vcr_cassettes/{section_teacher.yml → Clever_NestedResource/retrieves_a_section_s_teacher.yml} +16 -10
- data/test/data/vcr_cassettes/{student_district.yml → Clever_NestedResource/retrieves_a_student_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{student_events.yml → Clever_NestedResource/retrieves_a_student_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{student_school.yml → Clever_NestedResource/retrieves_a_student_s_school.yml} +16 -10
- data/test/data/vcr_cassettes/{student_sections.yml → Clever_NestedResource/retrieves_a_student_s_sections.yml} +21 -13
- data/test/data/vcr_cassettes/{student_teachers.yml → Clever_NestedResource/retrieves_a_student_s_teachers.yml} +21 -13
- data/test/data/vcr_cassettes/{teacher_district.yml → Clever_NestedResource/retrieves_a_teacher_s_district.yml} +16 -10
- data/test/data/vcr_cassettes/{teacher_events.yml → Clever_NestedResource/retrieves_a_teacher_s_events.yml} +21 -13
- data/test/data/vcr_cassettes/{teacher_school.yml → Clever_NestedResource/retrieves_a_teacher_s_school.yml} +16 -10
- data/test/data/vcr_cassettes/{teacher_sections.yml → Clever_NestedResource/retrieves_a_teacher_s_sections.yml} +21 -13
- data/test/data/vcr_cassettes/{teacher_students.yml → Clever_NestedResource/retrieves_a_teacher_s_students.yml} +21 -13
- data/test/data/vcr_cassettes/{error_handling.yml → Error_handling/raises_an_InvalidRequestError_when_given_a_bad_created_since.yml} +16 -10
- data/test/data/vcr_cassettes/Optional_attributes/has_the_expected_value_for_an_optional_attribute_that_is_present.yml +49 -0
- data/test/data/vcr_cassettes/last_method/page/has_working_first_and_last_methods.yml +719 -0
- data/test/data/vcr_cassettes/last_method/resource/has_working_first_and_last_methods.yml +648 -0
- data/test/integration/api_operations/list_test.rb +40 -50
- data/test/integration/district_test.rb +13 -15
- data/test/integration/error_handling_test.rb +6 -8
- data/test/integration/last_test.rb +70 -0
- data/test/integration/nested_resource_test.rb +7 -9
- data/test/test_helper.rb +3 -0
- data/test/unit/clever_test.rb +1 -1
- data/test/unit/configuration_test.rb +6 -0
- data/test/unit/optional_attributes_test.rb +4 -10
- metadata +147 -129
- data/test/data/vcr_cassettes/schools_optional_attributes.yml +0 -55
- data/test/data/vcr_cassettes/student_teacher.yml +0 -161
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://
|
5
|
+
uri: https://api.clever.com/v1.1/districts
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -11,6 +11,8 @@ http_interactions:
|
|
11
11
|
- ! '*/*; q=0.5, application/xml'
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip, deflate
|
14
|
+
Authorization:
|
15
|
+
- Bearer DEMO_TOKEN
|
14
16
|
User-Agent:
|
15
17
|
- Ruby
|
16
18
|
response:
|
@@ -27,7 +29,7 @@ http_interactions:
|
|
27
29
|
Content-Type:
|
28
30
|
- application/json; charset=utf-8
|
29
31
|
Date:
|
30
|
-
-
|
32
|
+
- Sat, 13 Sep 2014 00:05:06 GMT
|
31
33
|
Server:
|
32
34
|
- nginx/1.4.7
|
33
35
|
X-Powered-By:
|
@@ -40,10 +42,10 @@ http_interactions:
|
|
40
42
|
encoding: US-ASCII
|
41
43
|
string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
|
42
44
|
http_version:
|
43
|
-
recorded_at:
|
45
|
+
recorded_at: Sat, 13 Sep 2014 00:05:06 GMT
|
44
46
|
- request:
|
45
47
|
method: get
|
46
|
-
uri: https://
|
48
|
+
uri: https://api.clever.com/v1.1/districts/4fd43cc56d11340000000005
|
47
49
|
body:
|
48
50
|
encoding: US-ASCII
|
49
51
|
string: ''
|
@@ -52,6 +54,8 @@ http_interactions:
|
|
52
54
|
- ! '*/*; q=0.5, application/xml'
|
53
55
|
Accept-Encoding:
|
54
56
|
- gzip, deflate
|
57
|
+
Authorization:
|
58
|
+
- Bearer DEMO_TOKEN
|
55
59
|
User-Agent:
|
56
60
|
- Ruby
|
57
61
|
response:
|
@@ -68,7 +72,7 @@ http_interactions:
|
|
68
72
|
Content-Type:
|
69
73
|
- application/json; charset=utf-8
|
70
74
|
Date:
|
71
|
-
-
|
75
|
+
- Sat, 13 Sep 2014 00:05:06 GMT
|
72
76
|
Server:
|
73
77
|
- nginx/1.4.7
|
74
78
|
X-Powered-By:
|
@@ -81,10 +85,10 @@ http_interactions:
|
|
81
85
|
encoding: US-ASCII
|
82
86
|
string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
|
83
87
|
http_version:
|
84
|
-
recorded_at:
|
88
|
+
recorded_at: Sat, 13 Sep 2014 00:05:06 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=100000
|
88
92
|
body:
|
89
93
|
encoding: US-ASCII
|
90
94
|
string: ''
|
@@ -93,6 +97,8 @@ http_interactions:
|
|
93
97
|
- ! '*/*; q=0.5, application/xml'
|
94
98
|
Accept-Encoding:
|
95
99
|
- gzip, deflate
|
100
|
+
Authorization:
|
101
|
+
- Bearer DEMO_TOKEN
|
96
102
|
User-Agent:
|
97
103
|
- Ruby
|
98
104
|
response:
|
@@ -109,7 +115,7 @@ http_interactions:
|
|
109
115
|
Content-Type:
|
110
116
|
- application/json; charset=utf-8
|
111
117
|
Date:
|
112
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"-1604003112"'
|
115
121
|
Server:
|
@@ -213,10 +219,10 @@ http_interactions:
|
|
213
219
|
Coach","id":"530e5955d50c310f36112c18"},"uri":"/v1.1/teachers/530e5955d50c310f36112c18"},{"data":{"created":"2014-02-26T21:15:01.572Z","credentials":{"district_username":"m_paucek","district_password":"jhga8salgh"},"district":"4fd43cc56d11340000000005","email":"paucek_m@example.org","last_modified":"2014-02-26T21:15:01.574Z","name":{"first":"Meaghan","middle":"P","last":"Paucek"},"school":"530e595026403103360ff9fd","sis_id":"93","teacher_number":"843713","title":"High
|
214
220
|
School Drama Teacher","id":"530e5955d50c310f36112c19"},"uri":"/v1.1/teachers/530e5955d50c310f36112c19"}],"paging":{"current":1,"total":1,"count":89},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=100000"}]}'
|
215
221
|
http_version:
|
216
|
-
recorded_at:
|
222
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
217
223
|
- request:
|
218
224
|
method: get
|
219
|
-
uri: https://
|
225
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10
|
220
226
|
body:
|
221
227
|
encoding: US-ASCII
|
222
228
|
string: ''
|
@@ -225,6 +231,8 @@ http_interactions:
|
|
225
231
|
- ! '*/*; q=0.5, application/xml'
|
226
232
|
Accept-Encoding:
|
227
233
|
- gzip, deflate
|
234
|
+
Authorization:
|
235
|
+
- Bearer DEMO_TOKEN
|
228
236
|
User-Agent:
|
229
237
|
- Ruby
|
230
238
|
response:
|
@@ -241,7 +249,7 @@ http_interactions:
|
|
241
249
|
Content-Type:
|
242
250
|
- application/json; charset=utf-8
|
243
251
|
Date:
|
244
|
-
-
|
252
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
245
253
|
Etag:
|
246
254
|
- ! '"1331950855"'
|
247
255
|
Server:
|
@@ -266,10 +274,10 @@ http_interactions:
|
|
266
274
|
2 Special Education Teacher","id":"50c89ff19ed67a1d3f1f50c9"},"uri":"/v1.1/teachers/50c89ff19ed67a1d3f1f50c9"},{"data":{"created":"2012-12-12T15:17:05.366Z","credentials":{"district_password":"meile5Taicei","district_username":"colton.block"},"district":"4fd43cc56d11340000000005","email":"block_colton@example.net","last_modified":"2014-02-26T21:15:01.391Z","name":{"first":"Colton","last":"Block","middle":"L"},"school":"530e595026403103360ff9fd","sis_id":"54","teacher_number":"911173","title":"Grade
|
267
275
|
9 History Teacher","id":"50c89ff19ed67a1d3f1f50ca"},"uri":"/v1.1/teachers/50c89ff19ed67a1d3f1f50ca"}],"paging":{"current":1,"total":9,"count":89},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=50c89ff19ed67a1d3f1f50ca"}]}'
|
268
276
|
http_version:
|
269
|
-
recorded_at:
|
277
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
270
278
|
- request:
|
271
279
|
method: get
|
272
|
-
uri: https://
|
280
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=50c89ff19ed67a1d3f1f50ca
|
273
281
|
body:
|
274
282
|
encoding: US-ASCII
|
275
283
|
string: ''
|
@@ -278,6 +286,8 @@ http_interactions:
|
|
278
286
|
- ! '*/*; q=0.5, application/xml'
|
279
287
|
Accept-Encoding:
|
280
288
|
- gzip, deflate
|
289
|
+
Authorization:
|
290
|
+
- Bearer DEMO_TOKEN
|
281
291
|
User-Agent:
|
282
292
|
- Ruby
|
283
293
|
response:
|
@@ -294,7 +304,7 @@ http_interactions:
|
|
294
304
|
Content-Type:
|
295
305
|
- application/json; charset=utf-8
|
296
306
|
Date:
|
297
|
-
-
|
307
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
298
308
|
Etag:
|
299
309
|
- ! '"1639195967"'
|
300
310
|
Server:
|
@@ -319,10 +329,10 @@ http_interactions:
|
|
319
329
|
5 Common Branch Teacher","id":"530e5955d50c310f36112bd3"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd3"},{"data":{"created":"2014-02-26T21:15:01.138Z","credentials":{"district_username":"daniela.raynor","district_password":"quahse5Ch"},"district":"4fd43cc56d11340000000005","email":"raynor_daniela@example.net","last_modified":"2014-02-26T21:15:01.144Z","name":{"first":"Daniela","middle":"F","last":"Raynor"},"school":"530e595026403103360ff9fe","sis_id":"19","teacher_number":"493218","title":"Grade
|
320
330
|
5 Common Branch Teacher","id":"530e5955d50c310f36112bd4"},"uri":"/v1.1/teachers/530e5955d50c310f36112bd4"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=50c89ff19ed67a1d3f1f50ca"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bcb"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bd4"}]}'
|
321
331
|
http_version:
|
322
|
-
recorded_at:
|
332
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
323
333
|
- request:
|
324
334
|
method: get
|
325
|
-
uri: https://
|
335
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bd4
|
326
336
|
body:
|
327
337
|
encoding: US-ASCII
|
328
338
|
string: ''
|
@@ -331,6 +341,8 @@ http_interactions:
|
|
331
341
|
- ! '*/*; q=0.5, application/xml'
|
332
342
|
Accept-Encoding:
|
333
343
|
- gzip, deflate
|
344
|
+
Authorization:
|
345
|
+
- Bearer DEMO_TOKEN
|
334
346
|
User-Agent:
|
335
347
|
- Ruby
|
336
348
|
response:
|
@@ -347,7 +359,7 @@ http_interactions:
|
|
347
359
|
Content-Type:
|
348
360
|
- application/json; charset=utf-8
|
349
361
|
Date:
|
350
|
-
-
|
362
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
351
363
|
Etag:
|
352
364
|
- ! '"859940908"'
|
353
365
|
Server:
|
@@ -372,10 +384,10 @@ http_interactions:
|
|
372
384
|
7 English Teacher","id":"530e5955d50c310f36112bdd"},"uri":"/v1.1/teachers/530e5955d50c310f36112bdd"},{"data":{"created":"2014-02-26T21:15:01.237Z","credentials":{"district_username":"rhiannon_prosacco","district_password":"ievo9Eeg"},"district":"4fd43cc56d11340000000005","email":"rhiannon_prosacco@example.org","last_modified":"2014-02-26T21:15:01.240Z","name":{"first":"Rhiannon","middle":"K","last":"Prosacco"},"school":"530e595026403103360ff9fe","sis_id":"3","teacher_number":"435202","title":"Grade
|
373
385
|
1 Common Branch Teacher","id":"530e5955d50c310f36112bde"},"uri":"/v1.1/teachers/530e5955d50c310f36112bde"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bd4"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bd5"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bde"}]}'
|
374
386
|
http_version:
|
375
|
-
recorded_at:
|
387
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
376
388
|
- request:
|
377
389
|
method: get
|
378
|
-
uri: https://
|
390
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bde
|
379
391
|
body:
|
380
392
|
encoding: US-ASCII
|
381
393
|
string: ''
|
@@ -384,6 +396,8 @@ http_interactions:
|
|
384
396
|
- ! '*/*; q=0.5, application/xml'
|
385
397
|
Accept-Encoding:
|
386
398
|
- gzip, deflate
|
399
|
+
Authorization:
|
400
|
+
- Bearer DEMO_TOKEN
|
387
401
|
User-Agent:
|
388
402
|
- Ruby
|
389
403
|
response:
|
@@ -400,7 +414,7 @@ http_interactions:
|
|
400
414
|
Content-Type:
|
401
415
|
- application/json; charset=utf-8
|
402
416
|
Date:
|
403
|
-
-
|
417
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
404
418
|
Etag:
|
405
419
|
- ! '"887390389"'
|
406
420
|
Server:
|
@@ -425,10 +439,10 @@ http_interactions:
|
|
425
439
|
School English Teacher","id":"530e5955d50c310f36112be7"},"uri":"/v1.1/teachers/530e5955d50c310f36112be7"},{"data":{"created":"2014-02-26T21:15:01.331Z","credentials":{"district_username":"ankunding.cydney","district_password":"moorei2Ie"},"district":"4fd43cc56d11340000000005","email":"ankunding_cydney@example.com","last_modified":"2014-02-26T21:15:01.334Z","name":{"first":"Cydney","middle":"H","last":"Ankunding"},"school":"530e595026403103360ff9ff","sis_id":"40","teacher_number":"873862","title":"Middle
|
426
440
|
School Science Teacher","id":"530e5955d50c310f36112be8"},"uri":"/v1.1/teachers/530e5955d50c310f36112be8"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bde"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bdf"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112be8"}]}'
|
427
441
|
http_version:
|
428
|
-
recorded_at:
|
442
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
429
443
|
- request:
|
430
444
|
method: get
|
431
|
-
uri: https://
|
445
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112be8
|
432
446
|
body:
|
433
447
|
encoding: US-ASCII
|
434
448
|
string: ''
|
@@ -437,6 +451,8 @@ http_interactions:
|
|
437
451
|
- ! '*/*; q=0.5, application/xml'
|
438
452
|
Accept-Encoding:
|
439
453
|
- gzip, deflate
|
454
|
+
Authorization:
|
455
|
+
- Bearer DEMO_TOKEN
|
440
456
|
User-Agent:
|
441
457
|
- Ruby
|
442
458
|
response:
|
@@ -453,7 +469,7 @@ http_interactions:
|
|
453
469
|
Content-Type:
|
454
470
|
- application/json; charset=utf-8
|
455
471
|
Date:
|
456
|
-
-
|
472
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
457
473
|
Etag:
|
458
474
|
- ! '"-309201969"'
|
459
475
|
Server:
|
@@ -478,10 +494,10 @@ http_interactions:
|
|
478
494
|
2 Common Branch Teacher","id":"530e5955d50c310f36112bf1"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf1"},{"data":{"created":"2014-02-26T21:15:01.401Z","credentials":{"district_username":"preston.lemke","district_password":"caiteiL1ah"},"district":"4fd43cc56d11340000000005","email":"preston.lemke@example.net","last_modified":"2014-02-26T21:15:01.404Z","name":{"first":"Preston","middle":"J","last":"Lemke"},"school":"530e595026403103360ff9fd","sis_id":"51","teacher_number":"171060","title":"Grade
|
479
495
|
12 History Teacher","id":"530e5955d50c310f36112bf2"},"uri":"/v1.1/teachers/530e5955d50c310f36112bf2"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112be8"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112be9"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bf2"}]}'
|
480
496
|
http_version:
|
481
|
-
recorded_at:
|
497
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
482
498
|
- request:
|
483
499
|
method: get
|
484
|
-
uri: https://
|
500
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bf2
|
485
501
|
body:
|
486
502
|
encoding: US-ASCII
|
487
503
|
string: ''
|
@@ -490,6 +506,8 @@ http_interactions:
|
|
490
506
|
- ! '*/*; q=0.5, application/xml'
|
491
507
|
Accept-Encoding:
|
492
508
|
- gzip, deflate
|
509
|
+
Authorization:
|
510
|
+
- Bearer DEMO_TOKEN
|
493
511
|
User-Agent:
|
494
512
|
- Ruby
|
495
513
|
response:
|
@@ -506,7 +524,7 @@ http_interactions:
|
|
506
524
|
Content-Type:
|
507
525
|
- application/json; charset=utf-8
|
508
526
|
Date:
|
509
|
-
-
|
527
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
510
528
|
Etag:
|
511
529
|
- ! '"-1806235015"'
|
512
530
|
Server:
|
@@ -531,10 +549,10 @@ http_interactions:
|
|
531
549
|
9 Algebra Teacher","id":"530e5955d50c310f36112bfb"},"uri":"/v1.1/teachers/530e5955d50c310f36112bfb"},{"data":{"created":"2014-02-26T21:15:01.443Z","credentials":{"district_username":"cullen_bashirian","district_password":"cheikoh1Ies"},"district":"4fd43cc56d11340000000005","email":"bashirian.cullen@example.net","last_modified":"2014-02-26T21:15:01.445Z","name":{"first":"Cullen","middle":"J","last":"Bashirian"},"school":"530e595026403103360ff9fd","sis_id":"61","teacher_number":"311251","title":"Grade
|
532
550
|
10 Geometry Teacher","id":"530e5955d50c310f36112bfc"},"uri":"/v1.1/teachers/530e5955d50c310f36112bfc"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bf2"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bf3"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bfc"}]}'
|
533
551
|
http_version:
|
534
|
-
recorded_at:
|
552
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
535
553
|
- request:
|
536
554
|
method: get
|
537
|
-
uri: https://
|
555
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bfc
|
538
556
|
body:
|
539
557
|
encoding: US-ASCII
|
540
558
|
string: ''
|
@@ -543,6 +561,8 @@ http_interactions:
|
|
543
561
|
- ! '*/*; q=0.5, application/xml'
|
544
562
|
Accept-Encoding:
|
545
563
|
- gzip, deflate
|
564
|
+
Authorization:
|
565
|
+
- Bearer DEMO_TOKEN
|
546
566
|
User-Agent:
|
547
567
|
- Ruby
|
548
568
|
response:
|
@@ -559,7 +579,7 @@ http_interactions:
|
|
559
579
|
Content-Type:
|
560
580
|
- application/json; charset=utf-8
|
561
581
|
Date:
|
562
|
-
-
|
582
|
+
- Sat, 13 Sep 2014 00:05:07 GMT
|
563
583
|
Etag:
|
564
584
|
- ! '"2002280190"'
|
565
585
|
Server:
|
@@ -584,10 +604,10 @@ http_interactions:
|
|
584
604
|
School Media Arts Teacher","id":"530e5955d50c310f36112c05"},"uri":"/v1.1/teachers/530e5955d50c310f36112c05"},{"data":{"created":"2014-02-26T21:15:01.488Z","credentials":{"district_username":"coulton.john","district_password":"posi924adA"},"district":"4fd43cc56d11340000000005","email":"john.coulton@example.net","last_modified":"2014-02-26T21:15:01.491Z","name":{"first":"John","middle":"D","last":"Coulton"},"school":"530e595026403103360ff9fd","sis_id":"72","teacher_number":"900381","title":"High
|
585
605
|
School Music Teacher","id":"530e5955d50c310f36112c06"},"uri":"/v1.1/teachers/530e5955d50c310f36112c06"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112bfc"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112bfd"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c06"}]}'
|
586
606
|
http_version:
|
587
|
-
recorded_at:
|
607
|
+
recorded_at: Sat, 13 Sep 2014 00:05:07 GMT
|
588
608
|
- request:
|
589
609
|
method: get
|
590
|
-
uri: https://
|
610
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c06
|
591
611
|
body:
|
592
612
|
encoding: US-ASCII
|
593
613
|
string: ''
|
@@ -596,6 +616,8 @@ http_interactions:
|
|
596
616
|
- ! '*/*; q=0.5, application/xml'
|
597
617
|
Accept-Encoding:
|
598
618
|
- gzip, deflate
|
619
|
+
Authorization:
|
620
|
+
- Bearer DEMO_TOKEN
|
599
621
|
User-Agent:
|
600
622
|
- Ruby
|
601
623
|
response:
|
@@ -612,7 +634,7 @@ http_interactions:
|
|
612
634
|
Content-Type:
|
613
635
|
- application/json; charset=utf-8
|
614
636
|
Date:
|
615
|
-
-
|
637
|
+
- Sat, 13 Sep 2014 00:05:08 GMT
|
616
638
|
Etag:
|
617
639
|
- ! '"-1878424653"'
|
618
640
|
Server:
|
@@ -637,10 +659,10 @@ http_interactions:
|
|
637
659
|
School Guidance Counselor","id":"530e5955d50c310f36112c0f"},"uri":"/v1.1/teachers/530e5955d50c310f36112c0f"},{"data":{"created":"2014-02-26T21:15:01.537Z","credentials":{"district_username":"kari_hudson","district_password":"dfafsbe5tw3"},"district":"4fd43cc56d11340000000005","email":"kari.hudson@example.net","last_modified":"2014-02-26T21:15:01.538Z","name":{"first":"Kari","middle":"H","last":"Hudson"},"school":"530e595026403103360ff9ff","sis_id":"85","teacher_number":"989342","title":"Middle
|
638
660
|
School Guidance Counselor","id":"530e5955d50c310f36112c10"},"uri":"/v1.1/teachers/530e5955d50c310f36112c10"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c06"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112c07"},{"rel":"next","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c10"}]}'
|
639
661
|
http_version:
|
640
|
-
recorded_at:
|
662
|
+
recorded_at: Sat, 13 Sep 2014 00:05:08 GMT
|
641
663
|
- request:
|
642
664
|
method: get
|
643
|
-
uri: https://
|
665
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c10
|
644
666
|
body:
|
645
667
|
encoding: US-ASCII
|
646
668
|
string: ''
|
@@ -649,6 +671,8 @@ http_interactions:
|
|
649
671
|
- ! '*/*; q=0.5, application/xml'
|
650
672
|
Accept-Encoding:
|
651
673
|
- gzip, deflate
|
674
|
+
Authorization:
|
675
|
+
- Bearer DEMO_TOKEN
|
652
676
|
User-Agent:
|
653
677
|
- Ruby
|
654
678
|
response:
|
@@ -665,7 +689,7 @@ http_interactions:
|
|
665
689
|
Content-Type:
|
666
690
|
- application/json; charset=utf-8
|
667
691
|
Date:
|
668
|
-
-
|
692
|
+
- Sat, 13 Sep 2014 00:05:08 GMT
|
669
693
|
Etag:
|
670
694
|
- ! '"214602549"'
|
671
695
|
Server:
|
@@ -689,5 +713,5 @@ http_interactions:
|
|
689
713
|
Coach","id":"530e5955d50c310f36112c18"},"uri":"/v1.1/teachers/530e5955d50c310f36112c18"},{"data":{"created":"2014-02-26T21:15:01.572Z","credentials":{"district_username":"m_paucek","district_password":"jhga8salgh"},"district":"4fd43cc56d11340000000005","email":"paucek_m@example.org","last_modified":"2014-02-26T21:15:01.574Z","name":{"first":"Meaghan","middle":"P","last":"Paucek"},"school":"530e595026403103360ff9fd","sis_id":"93","teacher_number":"843713","title":"High
|
690
714
|
School Drama Teacher","id":"530e5955d50c310f36112c19"},"uri":"/v1.1/teachers/530e5955d50c310f36112c19"}],"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&starting_after=530e5955d50c310f36112c10"},{"rel":"prev","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers?limit=10&ending_before=530e5955d50c310f36112c11"}]}'
|
691
715
|
http_version:
|
692
|
-
recorded_at:
|
693
|
-
recorded_with: VCR 2.
|
716
|
+
recorded_at: Sat, 13 Sep 2014 00:05:08 GMT
|
717
|
+
recorded_with: VCR 2.9.3
|
@@ -2,7 +2,7 @@
|
|
2
2
|
http_interactions:
|
3
3
|
- request:
|
4
4
|
method: get
|
5
|
-
uri: https://
|
5
|
+
uri: https://api.clever.com/v1.1/districts
|
6
6
|
body:
|
7
7
|
encoding: US-ASCII
|
8
8
|
string: ''
|
@@ -11,6 +11,8 @@ http_interactions:
|
|
11
11
|
- ! '*/*; q=0.5, application/xml'
|
12
12
|
Accept-Encoding:
|
13
13
|
- gzip, deflate
|
14
|
+
Authorization:
|
15
|
+
- Bearer DEMO_TOKEN
|
14
16
|
User-Agent:
|
15
17
|
- Ruby
|
16
18
|
response:
|
@@ -27,7 +29,7 @@ http_interactions:
|
|
27
29
|
Content-Type:
|
28
30
|
- application/json; charset=utf-8
|
29
31
|
Date:
|
30
|
-
-
|
32
|
+
- Sat, 13 Sep 2014 00:06:26 GMT
|
31
33
|
Server:
|
32
34
|
- nginx/1.4.7
|
33
35
|
X-Powered-By:
|
@@ -40,10 +42,10 @@ http_interactions:
|
|
40
42
|
encoding: US-ASCII
|
41
43
|
string: ! '{"data":[{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"uri":"/v1.1/districts/4fd43cc56d11340000000005"}],"paging":{"current":1,"total":1,"count":1},"links":[{"rel":"self","uri":"/v1.1/districts"}]}'
|
42
44
|
http_version:
|
43
|
-
recorded_at:
|
45
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
44
46
|
- request:
|
45
47
|
method: get
|
46
|
-
uri: https://
|
48
|
+
uri: https://api.clever.com/v1.1/districts/4fd43cc56d11340000000005
|
47
49
|
body:
|
48
50
|
encoding: US-ASCII
|
49
51
|
string: ''
|
@@ -52,6 +54,8 @@ http_interactions:
|
|
52
54
|
- ! '*/*; q=0.5, application/xml'
|
53
55
|
Accept-Encoding:
|
54
56
|
- gzip, deflate
|
57
|
+
Authorization:
|
58
|
+
- Bearer DEMO_TOKEN
|
55
59
|
User-Agent:
|
56
60
|
- Ruby
|
57
61
|
response:
|
@@ -68,7 +72,7 @@ http_interactions:
|
|
68
72
|
Content-Type:
|
69
73
|
- application/json; charset=utf-8
|
70
74
|
Date:
|
71
|
-
-
|
75
|
+
- Sat, 13 Sep 2014 00:06:26 GMT
|
72
76
|
Server:
|
73
77
|
- nginx/1.4.7
|
74
78
|
X-Powered-By:
|
@@ -81,10 +85,10 @@ http_interactions:
|
|
81
85
|
encoding: US-ASCII
|
82
86
|
string: ! '{"data":{"name":"Demo District","id":"4fd43cc56d11340000000005"},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005"},{"rel":"schools","uri":"/v1.1/districts/4fd43cc56d11340000000005/schools"},{"rel":"teachers","uri":"/v1.1/districts/4fd43cc56d11340000000005/teachers"},{"rel":"students","uri":"/v1.1/districts/4fd43cc56d11340000000005/students"},{"rel":"sections","uri":"/v1.1/districts/4fd43cc56d11340000000005/sections"},{"rel":"events","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
|
83
87
|
http_version:
|
84
|
-
recorded_at:
|
88
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
85
89
|
- request:
|
86
90
|
method: get
|
87
|
-
uri: https://
|
91
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/events
|
88
92
|
body:
|
89
93
|
encoding: US-ASCII
|
90
94
|
string: ''
|
@@ -93,6 +97,8 @@ http_interactions:
|
|
93
97
|
- ! '*/*; q=0.5, application/xml'
|
94
98
|
Accept-Encoding:
|
95
99
|
- gzip, deflate
|
100
|
+
Authorization:
|
101
|
+
- Bearer DEMO_TOKEN
|
96
102
|
User-Agent:
|
97
103
|
- Ruby
|
98
104
|
response:
|
@@ -109,7 +115,7 @@ http_interactions:
|
|
109
115
|
Content-Type:
|
110
116
|
- application/json; charset=utf-8
|
111
117
|
Date:
|
112
|
-
-
|
118
|
+
- Sat, 13 Sep 2014 00:06:26 GMT
|
113
119
|
Etag:
|
114
120
|
- ! '"-1435704843"'
|
115
121
|
Server:
|
@@ -141,10 +147,10 @@ http_interactions:
|
|
141
147
|
Science, Class 003","course_number":"3","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
|
142
148
|
Science, Class 003 - 003 - J. Stark","period":"4","school":"530e595026403103360ff9fe","sis_id":"866","subject":"science","teacher":"50c20477987eda0d3d02d310","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5961049e75a9262cffbe","530e5961049e75a9262cffc3","530e5961049e75a9262d0000","530e5961049e75a9262d0036","530e5961049e75a9262d0074","530e5962049e75a9262d00c5","530e5963049e75a9262d01fa","530e5964049e75a9262d027e","530e5964049e75a9262d02a8","530e5964049e75a9262d02ab","530e5964049e75a9262d02f7","530e5965049e75a9262d03b2","530e5965049e75a9262d03bf","530e5966049e75a9262d040a","530e5966049e75a9262d0449","530e5967049e75a9262d051b","530e5967049e75a9262d0565","530e5968049e75a9262d05f0","530e5968049e75a9262d061e","530e5968049e75a9262d0623"],"last_modified":"2014-02-26T21:15:39.195Z","created":"2014-02-26T21:15:39.193Z","id":"530e597b049e75a9262d0c12"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.088Z","id":"53ff6e6b322eced00200008e"},"uri":"/v1.1/events/53ff6e6b322eced00200008e"}],"paging":{"current":1,"total":1,"count":7},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
|
143
149
|
http_version:
|
144
|
-
recorded_at:
|
150
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
145
151
|
- request:
|
146
152
|
method: get
|
147
|
-
uri: https://
|
153
|
+
uri: https://api.clever.com//v1.1/districts/4fd43cc56d11340000000005/events
|
148
154
|
body:
|
149
155
|
encoding: US-ASCII
|
150
156
|
string: ''
|
@@ -153,6 +159,8 @@ http_interactions:
|
|
153
159
|
- ! '*/*; q=0.5, application/xml'
|
154
160
|
Accept-Encoding:
|
155
161
|
- gzip, deflate
|
162
|
+
Authorization:
|
163
|
+
- Bearer DEMO_TOKEN
|
156
164
|
User-Agent:
|
157
165
|
- Ruby
|
158
166
|
response:
|
@@ -169,7 +177,7 @@ http_interactions:
|
|
169
177
|
Content-Type:
|
170
178
|
- application/json; charset=utf-8
|
171
179
|
Date:
|
172
|
-
-
|
180
|
+
- Sat, 13 Sep 2014 00:06:26 GMT
|
173
181
|
Etag:
|
174
182
|
- ! '"-1435704843"'
|
175
183
|
Server:
|
@@ -201,5 +209,5 @@ http_interactions:
|
|
201
209
|
Science, Class 003","course_number":"3","district":"4fd43cc56d11340000000005","grade":"Kindergarten","name":"Kindergarten
|
202
210
|
Science, Class 003 - 003 - J. Stark","period":"4","school":"530e595026403103360ff9fe","sis_id":"866","subject":"science","teacher":"50c20477987eda0d3d02d310","term":{"name":"Y1","start_date":"2012-08-01","end_date":"2013-06-01"},"students":["530e5961049e75a9262cffbe","530e5961049e75a9262cffc3","530e5961049e75a9262d0000","530e5961049e75a9262d0036","530e5961049e75a9262d0074","530e5962049e75a9262d00c5","530e5963049e75a9262d01fa","530e5964049e75a9262d027e","530e5964049e75a9262d02a8","530e5964049e75a9262d02ab","530e5964049e75a9262d02f7","530e5965049e75a9262d03b2","530e5965049e75a9262d03bf","530e5966049e75a9262d040a","530e5966049e75a9262d0449","530e5967049e75a9262d051b","530e5967049e75a9262d0565","530e5968049e75a9262d05f0","530e5968049e75a9262d061e","530e5968049e75a9262d0623"],"last_modified":"2014-02-26T21:15:39.195Z","created":"2014-02-26T21:15:39.193Z","id":"530e597b049e75a9262d0c12"},"previous_attributes":{"subject":"homeroom/advisory"}},"created":"2014-08-28T18:01:14.088Z","id":"53ff6e6b322eced00200008e"},"uri":"/v1.1/events/53ff6e6b322eced00200008e"}],"paging":{"current":1,"total":1,"count":7},"links":[{"rel":"self","uri":"/v1.1/districts/4fd43cc56d11340000000005/events"}]}'
|
203
211
|
http_version:
|
204
|
-
recorded_at:
|
205
|
-
recorded_with: VCR 2.
|
212
|
+
recorded_at: Sat, 13 Sep 2014 00:06:26 GMT
|
213
|
+
recorded_with: VCR 2.9.3
|