toll_booth 0.1.0 → 0.2.0
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/README.rdoc +0 -3
- data/Rakefile +5 -3
- data/VERSION +1 -1
- data/toll_booth.gemspec +64 -0
- metadata +7 -6
data/README.rdoc
CHANGED
data/Rakefile
CHANGED
@@ -10,11 +10,13 @@ begin
|
|
10
10
|
gem.email = "dpickett@enlightsolutions.com"
|
11
11
|
gem.homepage = "http://github.com/dpickett/toll_booth"
|
12
12
|
gem.authors = ["Dan Pickett"]
|
13
|
-
gem.add_dependency("
|
14
|
-
gem.add_dependency("
|
13
|
+
gem.add_dependency("httparty", ">= 0.4.5")
|
14
|
+
gem.add_dependency("chronic_duration", ">= 0.7.5")
|
15
15
|
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
16
|
end
|
17
17
|
|
18
|
+
Jeweler::GemcutterTasks.new
|
19
|
+
|
18
20
|
rescue LoadError
|
19
21
|
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
|
20
22
|
end
|
@@ -58,7 +60,7 @@ end
|
|
58
60
|
|
59
61
|
begin
|
60
62
|
require 'cucumber/rake/task'
|
61
|
-
Cucumber::Rake::Task.new(:
|
63
|
+
Cucumber::Rake::Task.new(:cucumber)
|
62
64
|
rescue LoadError
|
63
65
|
task :features do
|
64
66
|
abort "Cucumber is not available. In order to run features, you must: sudo gem install cucumber"
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.
|
1
|
+
0.2.0
|
data/toll_booth.gemspec
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
# Generated by jeweler
|
2
|
+
# DO NOT EDIT THIS FILE DIRECTLY
|
3
|
+
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
|
4
|
+
# -*- encoding: utf-8 -*-
|
5
|
+
|
6
|
+
Gem::Specification.new do |s|
|
7
|
+
s.name = %q{toll_booth}
|
8
|
+
s.version = "0.2.0"
|
9
|
+
|
10
|
+
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
|
+
s.authors = ["Dan Pickett"]
|
12
|
+
s.date = %q{2009-11-21}
|
13
|
+
s.description = %q{API Wrapper for Google Directions}
|
14
|
+
s.email = %q{dpickett@enlightsolutions.com}
|
15
|
+
s.extra_rdoc_files = [
|
16
|
+
"LICENSE",
|
17
|
+
"README.rdoc"
|
18
|
+
]
|
19
|
+
s.files = [
|
20
|
+
".document",
|
21
|
+
".gitignore",
|
22
|
+
"LICENSE",
|
23
|
+
"README.rdoc",
|
24
|
+
"Rakefile",
|
25
|
+
"VERSION",
|
26
|
+
"features/get_directions.feature",
|
27
|
+
"features/step_definitions/direction_steps.rb",
|
28
|
+
"features/step_definitions/location_steps.rb",
|
29
|
+
"features/step_definitions/toll_booth_steps.rb",
|
30
|
+
"features/support/env.rb",
|
31
|
+
"lib/toll_booth.rb",
|
32
|
+
"lib/toll_booth/location.rb",
|
33
|
+
"lib/toll_booth/route.rb",
|
34
|
+
"lib/toll_booth/route_collection.rb",
|
35
|
+
"lib/toll_booth/route_step.rb",
|
36
|
+
"test/test_helper.rb",
|
37
|
+
"toll_booth.gemspec"
|
38
|
+
]
|
39
|
+
s.homepage = %q{http://github.com/dpickett/toll_booth}
|
40
|
+
s.rdoc_options = ["--charset=UTF-8"]
|
41
|
+
s.require_paths = ["lib"]
|
42
|
+
s.rubygems_version = %q{1.3.5}
|
43
|
+
s.summary = %q{API Wrapper for Google Directions}
|
44
|
+
s.test_files = [
|
45
|
+
"test/test_helper.rb"
|
46
|
+
]
|
47
|
+
|
48
|
+
if s.respond_to? :specification_version then
|
49
|
+
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
|
50
|
+
s.specification_version = 3
|
51
|
+
|
52
|
+
if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
|
53
|
+
s.add_runtime_dependency(%q<httparty>, [">= 0.4.5"])
|
54
|
+
s.add_runtime_dependency(%q<chronic_duration>, [">= 0.7.5"])
|
55
|
+
else
|
56
|
+
s.add_dependency(%q<httparty>, [">= 0.4.5"])
|
57
|
+
s.add_dependency(%q<chronic_duration>, [">= 0.7.5"])
|
58
|
+
end
|
59
|
+
else
|
60
|
+
s.add_dependency(%q<httparty>, [">= 0.4.5"])
|
61
|
+
s.add_dependency(%q<chronic_duration>, [">= 0.7.5"])
|
62
|
+
end
|
63
|
+
end
|
64
|
+
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: toll_booth
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dan Pickett
|
@@ -9,28 +9,28 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2009-
|
12
|
+
date: 2009-11-21 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
|
-
name:
|
16
|
+
name: httparty
|
17
17
|
type: :runtime
|
18
18
|
version_requirement:
|
19
19
|
version_requirements: !ruby/object:Gem::Requirement
|
20
20
|
requirements:
|
21
21
|
- - ">="
|
22
22
|
- !ruby/object:Gem::Version
|
23
|
-
version: 0.4.
|
23
|
+
version: 0.4.5
|
24
24
|
version:
|
25
25
|
- !ruby/object:Gem::Dependency
|
26
|
-
name:
|
26
|
+
name: chronic_duration
|
27
27
|
type: :runtime
|
28
28
|
version_requirement:
|
29
29
|
version_requirements: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
31
|
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: 0.7.
|
33
|
+
version: 0.7.5
|
34
34
|
version:
|
35
35
|
description: API Wrapper for Google Directions
|
36
36
|
email: dpickett@enlightsolutions.com
|
@@ -59,6 +59,7 @@ files:
|
|
59
59
|
- lib/toll_booth/route_collection.rb
|
60
60
|
- lib/toll_booth/route_step.rb
|
61
61
|
- test/test_helper.rb
|
62
|
+
- toll_booth.gemspec
|
62
63
|
has_rdoc: true
|
63
64
|
homepage: http://github.com/dpickett/toll_booth
|
64
65
|
licenses: []
|