ttc-gps 0.5.4 → 0.5.5
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/VERSION +1 -1
- data/lib/ttc-gps/models.rb +1 -1
- data/ttc-gps.gemspec +17 -19
- metadata +5 -12
- data/.gitignore +0 -21
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
0.5.
|
|
1
|
+
0.5.5
|
data/lib/ttc-gps/models.rb
CHANGED
data/ttc-gps.gemspec
CHANGED
|
@@ -1,45 +1,43 @@
|
|
|
1
1
|
# Generated by jeweler
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
|
-
# Instead, edit Jeweler::Tasks in Rakefile, and run
|
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
5
|
|
|
6
6
|
Gem::Specification.new do |s|
|
|
7
7
|
s.name = %q{ttc-gps}
|
|
8
|
-
s.version = "0.5.
|
|
8
|
+
s.version = "0.5.5"
|
|
9
9
|
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
11
11
|
s.authors = ["Scott Hyndman"]
|
|
12
|
-
s.date = %q{2010-
|
|
12
|
+
s.date = %q{2010-11-25}
|
|
13
13
|
s.description = %q{Uses NextBus data.}
|
|
14
14
|
s.email = %q{scotty.hyndman@gmail.com}
|
|
15
15
|
s.extra_rdoc_files = [
|
|
16
16
|
"LICENSE",
|
|
17
|
-
|
|
17
|
+
"README.rdoc"
|
|
18
18
|
]
|
|
19
19
|
s.files = [
|
|
20
20
|
".document",
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
"ttc-gps.gemspec"
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.rdoc",
|
|
23
|
+
"Rakefile",
|
|
24
|
+
"VERSION",
|
|
25
|
+
"lib/ttc-gps.rb",
|
|
26
|
+
"lib/ttc-gps/constants.rb",
|
|
27
|
+
"lib/ttc-gps/extensions.rb",
|
|
28
|
+
"lib/ttc-gps/models.rb",
|
|
29
|
+
"lib/ttc-gps/service.rb",
|
|
30
|
+
"test/helper.rb",
|
|
31
|
+
"test/test_ttc-gps.rb",
|
|
32
|
+
"ttc-gps.gemspec"
|
|
34
33
|
]
|
|
35
34
|
s.homepage = %q{http://github.com/shyndman/ttc-gps}
|
|
36
|
-
s.rdoc_options = ["--charset=UTF-8"]
|
|
37
35
|
s.require_paths = ["lib"]
|
|
38
36
|
s.rubygems_version = %q{1.3.7}
|
|
39
37
|
s.summary = %q{A service for consuming TTC streetcar GPS data.}
|
|
40
38
|
s.test_files = [
|
|
41
39
|
"test/helper.rb",
|
|
42
|
-
|
|
40
|
+
"test/test_ttc-gps.rb"
|
|
43
41
|
]
|
|
44
42
|
|
|
45
43
|
if s.respond_to? :specification_version then
|
metadata
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ttc-gps
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash: 3
|
|
5
4
|
prerelease: false
|
|
6
5
|
segments:
|
|
7
6
|
- 0
|
|
8
7
|
- 5
|
|
9
|
-
-
|
|
10
|
-
version: 0.5.
|
|
8
|
+
- 5
|
|
9
|
+
version: 0.5.5
|
|
11
10
|
platform: ruby
|
|
12
11
|
authors:
|
|
13
12
|
- Scott Hyndman
|
|
@@ -15,7 +14,7 @@ autorequire:
|
|
|
15
14
|
bindir: bin
|
|
16
15
|
cert_chain: []
|
|
17
16
|
|
|
18
|
-
date: 2010-
|
|
17
|
+
date: 2010-11-25 00:00:00 -05:00
|
|
19
18
|
default_executable:
|
|
20
19
|
dependencies:
|
|
21
20
|
- !ruby/object:Gem::Dependency
|
|
@@ -26,7 +25,6 @@ dependencies:
|
|
|
26
25
|
requirements:
|
|
27
26
|
- - ">="
|
|
28
27
|
- !ruby/object:Gem::Version
|
|
29
|
-
hash: 3
|
|
30
28
|
segments:
|
|
31
29
|
- 0
|
|
32
30
|
version: "0"
|
|
@@ -40,7 +38,6 @@ dependencies:
|
|
|
40
38
|
requirements:
|
|
41
39
|
- - ">="
|
|
42
40
|
- !ruby/object:Gem::Version
|
|
43
|
-
hash: 3
|
|
44
41
|
segments:
|
|
45
42
|
- 0
|
|
46
43
|
version: "0"
|
|
@@ -54,7 +51,6 @@ dependencies:
|
|
|
54
51
|
requirements:
|
|
55
52
|
- - ">="
|
|
56
53
|
- !ruby/object:Gem::Version
|
|
57
|
-
hash: 3
|
|
58
54
|
segments:
|
|
59
55
|
- 0
|
|
60
56
|
version: "0"
|
|
@@ -71,7 +67,6 @@ extra_rdoc_files:
|
|
|
71
67
|
- README.rdoc
|
|
72
68
|
files:
|
|
73
69
|
- .document
|
|
74
|
-
- .gitignore
|
|
75
70
|
- LICENSE
|
|
76
71
|
- README.rdoc
|
|
77
72
|
- Rakefile
|
|
@@ -89,8 +84,8 @@ homepage: http://github.com/shyndman/ttc-gps
|
|
|
89
84
|
licenses: []
|
|
90
85
|
|
|
91
86
|
post_install_message:
|
|
92
|
-
rdoc_options:
|
|
93
|
-
|
|
87
|
+
rdoc_options: []
|
|
88
|
+
|
|
94
89
|
require_paths:
|
|
95
90
|
- lib
|
|
96
91
|
required_ruby_version: !ruby/object:Gem::Requirement
|
|
@@ -98,7 +93,6 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
98
93
|
requirements:
|
|
99
94
|
- - ">="
|
|
100
95
|
- !ruby/object:Gem::Version
|
|
101
|
-
hash: 3
|
|
102
96
|
segments:
|
|
103
97
|
- 0
|
|
104
98
|
version: "0"
|
|
@@ -107,7 +101,6 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
107
101
|
requirements:
|
|
108
102
|
- - ">="
|
|
109
103
|
- !ruby/object:Gem::Version
|
|
110
|
-
hash: 3
|
|
111
104
|
segments:
|
|
112
105
|
- 0
|
|
113
106
|
version: "0"
|