Rakefile in haversine-0.2.0 vs Rakefile in haversine-0.3.0

- old
+ new

@@ -6,10 +6,11 @@ $stderr.puts e.message $stderr.puts "Run `bundle install` to install missing gems" exit e.status_code end require 'rake' +include Rake::DSL if defined? Rake::DSL require 'jeweler' Jeweler::Tasks.new do |gem| # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options gem.name = "haversine" @@ -17,10 +18,10 @@ gem.license = "MIT" gem.summary = %Q{Calculates the haversine distance between two locations using longitude and latitude} gem.description = %Q{Calculates the haversine distance between two locations using longitude and latitude. This is done using Math formulas without resorting to Active Record or SQL DB functionality} gem.email = "kmandrup@gmail.com" - gem.authors = ["Kristian Mandrup"] + gem.authors = ["Kristian Mandrup", "Ryan Greenberg"] # Include your dependencies below. Runtime dependencies are required when using your gem, # and development dependencies are only needed for development (ie running rake tasks, tests, etc) # gem.add_runtime_dependency 'jabber4r', '> 0.1' # gem.add_development_dependency 'rspec', '> 1.2.3' end