haversine.gemspec in haversine-0.2.0 vs haversine.gemspec in haversine-0.3.0
- old
+ new
@@ -3,15 +3,15 @@
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-
Gem::Specification.new do |s|
s.name = %q{haversine}
- s.version = "0.2.0"
+ s.version = "0.3.0"
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
- s.authors = ["Kristian Mandrup"]
- s.date = %q{2011-01-13}
+ s.authors = [%q{Kristian Mandrup}, %q{Ryan Greenberg}]
+ s.date = %q{2011-06-05}
s.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}
s.email = %q{kmandrup@gmail.com}
s.extra_rdoc_files = [
"LICENSE.txt",
@@ -26,25 +26,26 @@
"README.textile",
"Rakefile",
"VERSION",
"haversine.gemspec",
"lib/haversine.rb",
- "lib/haversine/core_ext.rb",
+ "lib/haversine/distance.rb",
+ "spec/distance_spec.rb",
"spec/haversine_spec.rb",
"spec/spec_helper.rb"
]
s.homepage = %q{http://github.com/kristianmandrup/haversine}
- s.licenses = ["MIT"]
- s.require_paths = ["lib"]
- s.rubygems_version = %q{1.3.7}
+ s.licenses = [%q{MIT}]
+ s.require_paths = [%q{lib}]
+ s.rubygems_version = %q{1.8.5}
s.summary = %q{Calculates the haversine distance between two locations using longitude and latitude}
s.test_files = [
+ "spec/distance_spec.rb",
"spec/haversine_spec.rb",
"spec/spec_helper.rb"
]
if s.respond_to? :specification_version then
- current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 3
if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
s.add_development_dependency(%q<rspec>, [">= 2.3.0"])
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])