forked from dummied/google-directions-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make nokogiri dependency explicit in Gemfile
it used to be that my gem manager picked up on this now I need to spell it out
- Loading branch information
Josh Crews
committed
Feb 26, 2014
1 parent
9aa1041
commit e24b49f
Showing
3 changed files
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
source :rubygems | ||
|
||
gemspec | ||
gem 'nokogiri' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,13 @@ require 'rubygems' | |
require 'rake' | ||
require 'echoe' | ||
|
||
Echoe.new('google_directions', '0.1.6') do |p| | ||
Echoe.new('google_directions', '0.1.6.2') do |p| | ||
p.description = "Ruby-wrapper for Google Directions API. Can return the drive time and driving distance between to places" | ||
p.url = "http://github.com/joshcrews/Google-Directions-Ruby" | ||
p.author = "Josh Crews" | ||
p.email = "[email protected]" | ||
p.ignore_pattern = ["tmp/*", "script/*"] | ||
p.development_dependencies = ['nokogiri >=1.4.1'] | ||
p.runtime_dependencies = ['nokogiri >=1.4.1'] | ||
end | ||
|
||
Dir["#{File.dirname(__FILE__)}/tasks/*.rake"].sort.each { |ext| load ext } |