From e24b49ff4c6d334a4bc296b29005f096d39ae63e Mon Sep 17 00:00:00 2001 From: Josh Crews Date: Tue, 25 Feb 2014 23:50:24 -0600 Subject: [PATCH] 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 --- Gemfile | 2 +- Gemfile.lock | 8 +------- Rakefile | 4 ++-- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/Gemfile b/Gemfile index a1b93f3..b8d67a4 100644 --- a/Gemfile +++ b/Gemfile @@ -1,3 +1,3 @@ source :rubygems -gemspec +gem 'nokogiri' diff --git a/Gemfile.lock b/Gemfile.lock index 8e25d72..6558434 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,9 +1,3 @@ -PATH - remote: . - specs: - google_directions (0.1.5) - nokogiri (>= 1.4.1) - GEM remote: http://rubygems.org/ specs: @@ -15,4 +9,4 @@ PLATFORMS ruby DEPENDENCIES - google_directions! + nokogiri diff --git a/Rakefile b/Rakefile index 2caeee8..f168c5a 100644 --- a/Rakefile +++ b/Rakefile @@ -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 = "josh@joshcrews.com" 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 } \ No newline at end of file