ratis 3.4.1 → 3.4.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/CHANGELOG +4 -1
- data/Gemfile.lock +1 -1
- data/lib/ratis.rb +1 -0
- data/lib/ratis/fleet_location.rb +42 -0
- data/lib/ratis/landmark.rb +9 -7
- data/lib/ratis/version.rb +1 -1
- data/ratis.gemspec +2 -2
- data/spec/ratis/fleet_location_spec.rb +64 -0
- data/spec/ratis/landmark_spec.rb +40 -20
- data/spec/ratis/timetable_spec.rb +13 -0
- data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/only_makes_one_request.yml +609 -0
- data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/parses_out_the_vehicle_fields_correctly.yml +630 -0
- data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/returns_multiple_vehicles.yml +621 -0
- data/spec/support/vcr_cassettes/Ratis_FleetLocation/_current/should_return_a_collection_of_Ratis_Vehicle_s_.yml +621 -0
- data/spec/support/vcr_cassettes/Ratis_Landmark/_where/only_makes_one_request.yml +4186 -0
- data/spec/support/vcr_cassettes/Ratis_Landmark/_where/parses_out_the_landmark_fields_correctly.yml +4186 -0
- data/spec/support/vcr_cassettes/Ratis_Landmark/_where/returns_multiple_landmarks.yml +4186 -0
- data/spec/support/vcr_cassettes/Ratis_Landmark/_where/should_return_a_collection_of_Ratis_Landmark_s_.yml +4186 -0
- data/spec/support/vcr_cassettes/Ratis_Timetable/_where/ATIS_call/should_not_throw_a_500.yml +722 -0
- metadata +15 -4
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ratis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.4.
|
4
|
+
version: 3.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
7
|
+
- Velocity labs
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: savon
|
@@ -207,7 +207,7 @@ dependencies:
|
|
207
207
|
- !ruby/object:Gem::Version
|
208
208
|
version: '1.17'
|
209
209
|
description:
|
210
|
-
email: irish@
|
210
|
+
email: irish@velocitylabs.io
|
211
211
|
executables: []
|
212
212
|
extensions: []
|
213
213
|
extra_rdoc_files:
|
@@ -227,6 +227,7 @@ files:
|
|
227
227
|
- lib/ratis/config.rb
|
228
228
|
- lib/ratis/core_ext.rb
|
229
229
|
- lib/ratis/errors.rb
|
230
|
+
- lib/ratis/fleet_location.rb
|
230
231
|
- lib/ratis/itinerary.rb
|
231
232
|
- lib/ratis/landmark.rb
|
232
233
|
- lib/ratis/landmark_category.rb
|
@@ -265,6 +266,7 @@ files:
|
|
265
266
|
- spec/ratis/closest_stop_spec.rb
|
266
267
|
- spec/ratis/config_spec.rb
|
267
268
|
- spec/ratis/core_ext_spec.rb
|
269
|
+
- spec/ratis/fleet_location_spec.rb
|
268
270
|
- spec/ratis/itinerary_spec.rb
|
269
271
|
- spec/ratis/landmark_category_spec.rb
|
270
272
|
- spec/ratis/landmark_spec.rb
|
@@ -294,6 +296,14 @@ files:
|
|
294
296
|
- spec/support/vcr_cassettes/Ratis_ClosestStop/_where/parses_out_the_stop_fields_correctly.yml
|
295
297
|
- spec/support/vcr_cassettes/Ratis_ClosestStop/_where/returns_multiple_locations.yml
|
296
298
|
- spec/support/vcr_cassettes/Ratis_ClosestStop/_where/should_return_a_collection_of_Ratis_Stop_s_.yml
|
299
|
+
- spec/support/vcr_cassettes/Ratis_FleetLocation/_current/only_makes_one_request.yml
|
300
|
+
- spec/support/vcr_cassettes/Ratis_FleetLocation/_current/parses_out_the_vehicle_fields_correctly.yml
|
301
|
+
- spec/support/vcr_cassettes/Ratis_FleetLocation/_current/returns_multiple_vehicles.yml
|
302
|
+
- spec/support/vcr_cassettes/Ratis_FleetLocation/_current/should_return_a_collection_of_Ratis_Vehicle_s_.yml
|
303
|
+
- spec/support/vcr_cassettes/Ratis_Landmark/_where/only_makes_one_request.yml
|
304
|
+
- spec/support/vcr_cassettes/Ratis_Landmark/_where/parses_out_the_landmark_fields_correctly.yml
|
305
|
+
- spec/support/vcr_cassettes/Ratis_Landmark/_where/returns_multiple_landmarks.yml
|
306
|
+
- spec/support/vcr_cassettes/Ratis_Landmark/_where/should_return_a_collection_of_Ratis_Landmark_s_.yml
|
297
307
|
- spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/only_makes_one_request.yml
|
298
308
|
- spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_a_collection_of_Ratis_LandmarkCategory_s_.yml
|
299
309
|
- spec/support/vcr_cassettes/Ratis_LandmarkCategory/_all/should_return_all_landmark_categories.yml
|
@@ -355,6 +365,7 @@ files:
|
|
355
365
|
- spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_a_single_service_at_the_stop.yml
|
356
366
|
- spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/returns_all_the_stops.yml
|
357
367
|
- spec/support/vcr_cassettes/Ratis_ScheduleNearby/_where/should_return_no_data_error_when_date_is_in_the_past.yml
|
368
|
+
- spec/support/vcr_cassettes/Ratis_Timetable/_where/ATIS_call/should_not_throw_a_500.yml
|
358
369
|
- spec/support/vcr_cassettes/Ratis_Timetable/_where/only_makes_one_request.yml
|
359
370
|
- spec/support/vcr_cassettes/Ratis_Timetable/_where/should_parse_the_timetable/stop/trip_fields.yml
|
360
371
|
- spec/support/vcr_cassettes/Ratis_Timetable/_where/should_return_a_collection_Timetable_Stop_s_.yml
|