Skip to content
Snippets Groups Projects
Commit 3ad53a50 authored by Alex Reisner's avatar Alex Reisner
Browse files

Remove jeweler tasks.

parent 1fcac562
No related branches found
No related tags found
No related merge requests found
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "rails-geocoder"
gem.summary = %Q{Add geocoding functionality to Rails models.}
gem.description = %Q{Geocoder adds object geocoding and database-agnostic distance calculations to Ruby on Rails. It does not rely on proprietary database functions so finding geocoded objects in a given area is easily done using out-of-the-box MySQL or even SQLite.}
gem.email = "alex@alexreisner.com"
gem.homepage = "http://github.com/alexreisner/geocoder"
gem.authors = ["Alex Reisner"]
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
end
Jeweler::GemcutterTasks.new
rescue LoadError
puts "Jeweler (or a dependency) not available. Install it with: sudo gem install jeweler"
end
require 'rake/testtask'
Rake::TestTask.new(:test) do |test|
test.libs << 'lib' << 'test'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment