ratis 3.2.0 → 3.2.1
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.
- data/CHANGELOG +4 -1
- data/lib/ratis/timetable.rb +1 -1
- data/lib/ratis/version.rb +1 -1
- metadata +4 -4
data/CHANGELOG
CHANGED
@@ -28,4 +28,7 @@
|
|
28
28
|
- Within to_hash_from_xml, pull route and sign attributes from the service instead of the realtime info (they always seem to be blank)
|
29
29
|
|
30
30
|
3.2.0
|
31
|
-
- When querying Nextbus for a Light Rail stop, in most cases you will actually get back 2 stops for a single NextRide ID. One for each side of the stop platform. Made changes to handle this case. Both stops services are flattened into the #services attribute.
|
31
|
+
- When querying Nextbus for a Light Rail stop, in most cases you will actually get back 2 stops for a single NextRide ID. One for each side of the stop platform. Made changes to handle this case. Both stops services are flattened into the #services attribute.
|
32
|
+
|
33
|
+
3.2.1
|
34
|
+
- Timetable::Trip now contains the trip's headsign
|
data/lib/ratis/timetable.rb
CHANGED
@@ -42,7 +42,7 @@ module Ratis
|
|
42
42
|
trips_array = []
|
43
43
|
|
44
44
|
headway[:times][:trip].each_with_index do |t,i|
|
45
|
-
trips_array << Timetable::Trip.new(i, t[:time], t[:comment])
|
45
|
+
trips_array << Timetable::Trip.new(i, t[:time], t[:comment], t[:sign])
|
46
46
|
end rescue []
|
47
47
|
|
48
48
|
timetable.trips = trips_array
|
data/lib/ratis/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ratis
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 13
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 3
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 3.2.
|
9
|
+
- 1
|
10
|
+
version: 3.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Burst Software
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2013-06-
|
18
|
+
date: 2013-06-22 00:00:00 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: savon
|