Skip to content

Commit

Permalink
Version bump to 1.0.0.pre
Browse files Browse the repository at this point in the history
  • Loading branch information
bkeepers committed Dec 6, 2009
1 parent 9ed97db commit 2a2bb0c
Show file tree
Hide file tree
Showing 3 changed files with 104 additions and 55 deletions.
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ Jeweler::Tasks.new do |s|
s.has_rdoc = true
s.extra_rdoc_files = ["README.txt"]
s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
s.test_files = Dir['test/**/*.{yml,rb}']
s.test_files = Dir['test/**/*']
end

desc 'Default: run unit tests.'
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.12
1.0.0.pre
155 changes: 102 additions & 53 deletions graticule.gemspec
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
# Generated by jeweler
# DO NOT EDIT THIS FILE
# Instead, edit Jeweler::Tasks in Rakefile, and run `rake gemspec`
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run the gemspec command
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
s.name = %q{graticule}
s.version = "0.2.12"
s.version = "1.0.0.pre"

s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
s.required_rubygems_version = Gem::Requirement.new("> 1.3.1") if s.respond_to? :required_rubygems_version=
s.authors = ["Brandon Keepers"]
s.date = %q{2009-09-06}
s.date = %q{2009-12-05}
s.default_executable = %q{geocode}
s.description = %q{Graticule is a geocoding API that provides a common interface to all the popular services, including Google, Yahoo, Geocoder.us, and MetaCarta.}
s.email = %q{brandon@opensoul.org}
Expand All @@ -18,10 +18,10 @@ Gem::Specification.new do |s|
"README.txt"
]
s.files = [
".gitignore",
".autotest",
".gitignore",
"CHANGELOG.txt",
"LICENSE.txt",
"Manifest.txt",
"README.txt",
"Rakefile",
"VERSION",
Expand All @@ -38,26 +38,30 @@ Gem::Specification.new do |s|
"lib/graticule/geocoder.rb",
"lib/graticule/geocoder/base.rb",
"lib/graticule/geocoder/bogus.rb",
"lib/graticule/geocoder/freethepostcode.rb",
"lib/graticule/geocoder/geocoder_ca.rb",
"lib/graticule/geocoder/geocoder_us.rb",
"lib/graticule/geocoder/geonames.rb",
"lib/graticule/geocoder/google.rb",
"lib/graticule/geocoder/host_ip.rb",
"lib/graticule/geocoder/local_search_maps.rb",
"lib/graticule/geocoder/mapquest.rb",
"lib/graticule/geocoder/meta_carta.rb",
"lib/graticule/geocoder/multi.rb",
"lib/graticule/geocoder/multimap.rb",
"lib/graticule/geocoder/postcode_anywhere.rb",
"lib/graticule/geocoder/rest.rb",
"lib/graticule/geocoder/yahoo.rb",
"lib/graticule/location.rb",
"lib/graticule/version.rb",
"site/index.html",
"site/plugin.html",
"site/stylesheets/style.css",
"test/config.yml.default",
"test/fixtures/responses/freethepostcode/not_found.txt",
"test/fixtures/responses/freethepostcode/success.txt",
"test/fixtures/responses/geocoder_ca/success.xml",
"test/fixtures/responses/geocoder_us/success.xml",
"test/fixtures/responses/geocoder_us/unknown.xml",
"test/fixtures/responses/geonames/missing.xml",
"test/fixtures/responses/geonames/success.xml",
"test/fixtures/responses/geonames/unknown.xml",
"test/fixtures/responses/google/badkey.xml",
"test/fixtures/responses/google/limit.xml",
"test/fixtures/responses/google/missing_address.xml",
Expand All @@ -76,72 +80,117 @@ Gem::Specification.new do |s|
"test/fixtures/responses/local_search_maps/success.txt",
"test/fixtures/responses/mapquest/multi_result.xml",
"test/fixtures/responses/mapquest/success.xml",
"test/fixtures/responses/meta_carta/bad_address.xml",
"test/fixtures/responses/meta_carta/multiple.xml",
"test/fixtures/responses/meta_carta/success.xml",
"test/fixtures/responses/multimap/missing_params.xml",
"test/fixtures/responses/multimap/no_matches.xml",
"test/fixtures/responses/multimap/success.xml",
"test/fixtures/responses/postcode_anywhere/badkey.xml",
"test/fixtures/responses/postcode_anywhere/canada.xml",
"test/fixtures/responses/postcode_anywhere/empty.xml",
"test/fixtures/responses/postcode_anywhere/success.xml",
"test/fixtures/responses/postcode_anywhere/uk.xml",
"test/fixtures/responses/yahoo/success.xml",
"test/fixtures/responses/yahoo/unknown_address.xml",
"test/graticule/distance_test.rb",
"test/graticule/geocoder/freethepostcode_test.rb",
"test/graticule/geocoder/geocoder_ca_test.rb",
"test/graticule/geocoder/geocoder_us_test.rb",
"test/graticule/geocoder/geocoders.rb",
"test/graticule/geocoder/geonames_test.rb",
"test/graticule/geocoder/google_test.rb",
"test/graticule/geocoder/host_ip_test.rb",
"test/graticule/geocoder/local_search_maps_test.rb",
"test/graticule/geocoder/mapquest_test.rb",
"test/graticule/geocoder/multi_test.rb",
"test/graticule/geocoder/multimap_test.rb",
"test/graticule/geocoder/yahoo_test.rb",
"test/graticule/geocoder_test.rb",
"test/graticule/location_test.rb",
"test/mocks/uri.rb",
"test/test_helper.rb",
"test/unit/graticule/distance_test.rb",
"test/unit/graticule/geocoder/geocoder_us_test.rb",
"test/unit/graticule/geocoder/geocoders.rb",
"test/unit/graticule/geocoder/google_test.rb",
"test/unit/graticule/geocoder/host_ip_test.rb",
"test/unit/graticule/geocoder/local_search_maps_test.rb",
"test/unit/graticule/geocoder/mapquest_test.rb",
"test/unit/graticule/geocoder/meta_carta_test.rb",
"test/unit/graticule/geocoder/multi_test.rb",
"test/unit/graticule/geocoder/multimap_test.rb",
"test/unit/graticule/geocoder/postcode_anywhere_test.rb",
"test/unit/graticule/geocoder/yahoo_test.rb",
"test/unit/graticule/geocoder_test.rb",
"test/unit/graticule/location_test.rb"
"test/test_helper.rb"
]
s.has_rdoc = true
s.homepage = %q{http://github.com/collectiveidea/graticule}
s.rdoc_options = ["--main", "README.rdoc", "--inline-source", "--line-numbers"]
s.require_paths = ["lib"]
s.rubyforge_project = %q{graticule}
s.rubygems_version = %q{1.3.1}
s.rubygems_version = %q{1.3.5}
s.summary = %q{API for using all the popular geocoding services.}
s.test_files = [
"test/mocks/uri.rb",
"test/test_helper.rb",
"test/unit/graticule/distance_test.rb",
"test/unit/graticule/geocoder/geocoder_us_test.rb",
"test/unit/graticule/geocoder/geocoders.rb",
"test/unit/graticule/geocoder/google_test.rb",
"test/unit/graticule/geocoder/host_ip_test.rb",
"test/unit/graticule/geocoder/local_search_maps_test.rb",
"test/unit/graticule/geocoder/mapquest_test.rb",
"test/unit/graticule/geocoder/meta_carta_test.rb",
"test/unit/graticule/geocoder/multi_test.rb",
"test/unit/graticule/geocoder/multimap_test.rb",
"test/unit/graticule/geocoder/postcode_anywhere_test.rb",
"test/unit/graticule/geocoder/yahoo_test.rb",
"test/unit/graticule/geocoder_test.rb",
"test/unit/graticule/location_test.rb"
"test/config.yml",
"test/config.yml.default",
"test/fixtures",
"test/fixtures/responses",
"test/fixtures/responses/freethepostcode",
"test/fixtures/responses/freethepostcode/not_found.txt",
"test/fixtures/responses/freethepostcode/success.txt",
"test/fixtures/responses/geocoder_ca",
"test/fixtures/responses/geocoder_ca/success.xml",
"test/fixtures/responses/geocoder_us",
"test/fixtures/responses/geocoder_us/success.xml",
"test/fixtures/responses/geocoder_us/unknown.xml",
"test/fixtures/responses/geonames",
"test/fixtures/responses/geonames/missing.xml",
"test/fixtures/responses/geonames/success.xml",
"test/fixtures/responses/geonames/unknown.xml",
"test/fixtures/responses/google",
"test/fixtures/responses/google/badkey.xml",
"test/fixtures/responses/google/limit.xml",
"test/fixtures/responses/google/missing_address.xml",
"test/fixtures/responses/google/only_coordinates.xml",
"test/fixtures/responses/google/partial.xml",
"test/fixtures/responses/google/server_error.xml",
"test/fixtures/responses/google/success.xml",
"test/fixtures/responses/google/success_multiple_results.xml",
"test/fixtures/responses/google/unavailable.xml",
"test/fixtures/responses/google/unknown_address.xml",
"test/fixtures/responses/host_ip",
"test/fixtures/responses/host_ip/private.txt",
"test/fixtures/responses/host_ip/success.txt",
"test/fixtures/responses/host_ip/unknown.txt",
"test/fixtures/responses/local_search_maps",
"test/fixtures/responses/local_search_maps/empty.txt",
"test/fixtures/responses/local_search_maps/not_found.txt",
"test/fixtures/responses/local_search_maps/success.txt",
"test/fixtures/responses/mapquest",
"test/fixtures/responses/mapquest/multi_result.xml",
"test/fixtures/responses/mapquest/success.xml",
"test/fixtures/responses/multimap",
"test/fixtures/responses/multimap/missing_params.xml",
"test/fixtures/responses/multimap/no_matches.xml",
"test/fixtures/responses/multimap/success.xml",
"test/fixtures/responses/yahoo",
"test/fixtures/responses/yahoo/success.xml",
"test/fixtures/responses/yahoo/unknown_address.xml",
"test/graticule",
"test/graticule/distance_test.rb",
"test/graticule/geocoder",
"test/graticule/geocoder/freethepostcode_test.rb",
"test/graticule/geocoder/geocoder_ca_test.rb",
"test/graticule/geocoder/geocoder_us_test.rb",
"test/graticule/geocoder/geocoders.rb",
"test/graticule/geocoder/geonames_test.rb",
"test/graticule/geocoder/google_test.rb",
"test/graticule/geocoder/host_ip_test.rb",
"test/graticule/geocoder/local_search_maps_test.rb",
"test/graticule/geocoder/mapquest_test.rb",
"test/graticule/geocoder/multi_test.rb",
"test/graticule/geocoder/multimap_test.rb",
"test/graticule/geocoder/yahoo_test.rb",
"test/graticule/geocoder_test.rb",
"test/graticule/location_test.rb",
"test/mocks",
"test/mocks/uri.rb",
"test/test_helper.rb"
]

if s.respond_to? :specification_version then
current_version = Gem::Specification::CURRENT_SPECIFICATION_VERSION
s.specification_version = 2
s.specification_version = 3

if Gem::Version.new(Gem::RubyGemsVersion) >= Gem::Version.new('1.2.0') then
s.add_runtime_dependency(%q<activesupport>, [">= 0"])
s.add_runtime_dependency(%q<happymapper>, [">= 0.3.0"])
else
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<happymapper>, [">= 0.3.0"])
end
else
s.add_dependency(%q<activesupport>, [">= 0"])
s.add_dependency(%q<happymapper>, [">= 0.3.0"])
end
end

0 comments on commit 2a2bb0c

Please sign in to comment.