gtfs-realtime-bindings 0.0.2 → 0.0.3
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/UPDATING.md +3 -1
- data/gtfs-realtime-bindings.gemspec +1 -1
- data/lib/google/transit/gtfs-realtime.pb.rb +1 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9f6ea62ac050814f02f54c98aed84877b9c29f65
|
|
4
|
+
data.tar.gz: 6f07670eb7a8363f85909f651000766811b06f0d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2e6b45a18b20103e8ef139ba27e86698c7e5ff94cdc475dc87e913af3911fbae117705bc0c714b5388f834e23d5c8ce5c1a42b8f9912a7ce4d9b2748d1354490
|
|
7
|
+
data.tar.gz: f31346a21531adbcdb0859228b0ef11339dd5c27b64e6203abca59009c2741fd423a2367d42359b9f921df625a5da9a977986b4f95133168f78aa4ed3642c5d1
|
data/UPDATING.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
Regenerate the language binding source from gtfs-realtime.proto.
|
|
4
4
|
|
|
5
5
|
```
|
|
6
|
-
protoc --ruby_out=lib/google/transit gtfs-realtime.proto
|
|
6
|
+
protoc --ruby_out=lib/google/transit --proto_path=.. ../gtfs-realtime.proto
|
|
7
7
|
```
|
|
8
8
|
|
|
9
9
|
Add the license header back to the generated source file.
|
|
@@ -14,6 +14,8 @@ Test the generated code:
|
|
|
14
14
|
rspec specs/
|
|
15
15
|
````
|
|
16
16
|
|
|
17
|
+
Update the version number in `gtfs-realtime-bindings.gemspec`.
|
|
18
|
+
|
|
17
19
|
Build and deploy the gem to rubygems.org
|
|
18
20
|
|
|
19
21
|
```
|
|
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
|
4
4
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
spec.name = "gtfs-realtime-bindings"
|
|
7
|
-
spec.version = "0.0.
|
|
7
|
+
spec.version = "0.0.3"
|
|
8
8
|
spec.authors = ["Google Inc."]
|
|
9
9
|
spec.email = ["gtfs-realtime@googlegroups.com"]
|
|
10
10
|
spec.homepage = "http://github.com/google/gtfs-realtime-bindings"
|
|
@@ -173,6 +173,7 @@ module Transit_realtime
|
|
|
173
173
|
optional ::Transit_realtime::VehicleDescriptor, :vehicle, 3
|
|
174
174
|
repeated ::Transit_realtime::TripUpdate::StopTimeUpdate, :stop_time_update, 2
|
|
175
175
|
optional :uint64, :timestamp, 4
|
|
176
|
+
optional :int32, :delay, 5
|
|
176
177
|
# Extension Fields
|
|
177
178
|
extensions 1000...2000
|
|
178
179
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gtfs-realtime-bindings
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Google Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-01-
|
|
11
|
+
date: 2015-01-28 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: protobuf
|