ratis 3.2.0 → 3.2.1

Sign up to get free protection for your applications and to get access to all the features.
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
@@ -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
@@ -5,7 +5,7 @@ module Ratis
5
5
  def version
6
6
  @version ||= begin
7
7
 
8
- string = '3.2.0'
8
+ string = '3.2.1'
9
9
 
10
10
  def string.parts
11
11
  split('.').map { |p| p.to_i }
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: 15
4
+ hash: 13
5
5
  prerelease:
6
6
  segments:
7
7
  - 3
8
8
  - 2
9
- - 0
10
- version: 3.2.0
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-14 00:00:00 Z
18
+ date: 2013-06-22 00:00:00 Z
19
19
  dependencies:
20
20
  - !ruby/object:Gem::Dependency
21
21
  name: savon