forked from neweryankee/nextbus
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nextbus.gemspec
118 lines (113 loc) · 3.87 KB
/
nextbus.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{nextbus}
s.version = "0.0.1"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.authors = ["Greg Sterndale"]
s.date = %q{2010-02-24}
s.description = %q{NextBus API client}
s.email = %q{[email protected]}
s.extra_rdoc_files = [
"LICENSE",
"README.rdoc"
]
s.files = [
".gitignore",
"Gemfile",
"Gemfile.lock",
"LICENSE",
"README.rdoc",
"Rakefile",
"VERSION",
"doc/ERM.graffle",
"doc/MBTA_XML_Feed_Trial_Docs_13Nov09-1.pdf",
"lib/attr_with_default.rb",
"lib/instantiate_with_attrs.rb",
"lib/nextbus.rb",
"lib/nextbus/agency.rb",
"lib/nextbus/client.rb",
"lib/nextbus/direction.rb",
"lib/nextbus/mash_extensions.rb",
"lib/nextbus/prediction.rb",
"lib/nextbus/report.rb",
"lib/nextbus/route.rb",
"lib/nextbus/stop.rb",
"lib/nextbus/string_extensions.rb",
"lib/nextbus/vehicle.rb",
"nextbus.gemspec",
"test/fixtures/agency_list.xml",
"test/fixtures/error.xml",
"test/fixtures/predictions.xml",
"test/fixtures/predictions_for_multi_stops.xml",
"test/fixtures/route_config.xml",
"test/fixtures/route_list.xml",
"test/fixtures/vehicle_locations.xml",
"test/helper.rb",
"test/unit/test_agency.rb",
"test/unit/test_attr_with_default.rb",
"test/unit/test_client.rb",
"test/unit/test_direction.rb",
"test/unit/test_instantiate_with_attrs.rb",
"test/unit/test_mash_extensions.rb",
"test/unit/test_nextbus.rb",
"test/unit/test_prediction.rb",
"test/unit/test_report.rb",
"test/unit/test_route.rb",
"test/unit/test_stop.rb",
"test/unit/test_string_extensions.rb",
"test/unit/test_vehicle.rb",
"vendor/cache/columnize-0.3.1.gem",
"vendor/cache/crack-0.1.6.gem",
"vendor/cache/hashie-0.1.8.gem",
"vendor/cache/httparty-0.5.2.gem",
"vendor/cache/linecache-0.43.gem",
"vendor/cache/mocha-0.9.8.gem",
"vendor/cache/rake-0.8.7.gem",
"vendor/cache/ruby-debug-0.10.3.gem",
"vendor/cache/ruby-debug-base-0.10.3.gem"
]
s.homepage = %q{http://github.com/neweryankee/nextbus}
s.rdoc_options = ["--charset=UTF-8"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.5}
s.summary = %q{NextBus API client}
s.test_files = [
"test/helper.rb",
"test/unit/test_agency.rb",
"test/unit/test_attr_with_default.rb",
"test/unit/test_client.rb",
"test/unit/test_direction.rb",
"test/unit/test_instantiate_with_attrs.rb",
"test/unit/test_mash_extensions.rb",
"test/unit/test_nextbus.rb",
"test/unit/test_prediction.rb",
"test/unit/test_report.rb",
"test/unit/test_route.rb",
"test/unit/test_stop.rb",
"test/unit/test_string_extensions.rb",
"test/unit/test_vehicle.rb"
]
if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<httparty>, ["= 0.5.2"])
s.add_runtime_dependency(%q<hashie>, ["= 0.1.8"])
s.add_development_dependency(%q<mocha>, [">= 0.9.7"])
s.add_development_dependency(%q<ruby-debug>, [">= 0.10.3"])
else
s.add_dependency(%q<httparty>, ["= 0.5.2"])
s.add_dependency(%q<hashie>, ["= 0.1.8"])
s.add_dependency(%q<mocha>, [">= 0.9.7"])
s.add_dependency(%q<ruby-debug>, [">= 0.10.3"])
end
else
s.add_dependency(%q<httparty>, ["= 0.5.2"])
s.add_dependency(%q<hashie>, ["= 0.1.8"])
s.add_dependency(%q<mocha>, [">= 0.9.7"])
s.add_dependency(%q<ruby-debug>, [">= 0.10.3"])
end
end