public
Description: Official Geokit Gem. Geokit gem provides geocoding and distance/heading calculations. Pair with the geokit-rails plugin for full-fledged location-based app functionality.
Homepage: http://geokit.rubyforge.org
Clone URL: git://github.com/andre/geokit-gem.git
geokit-gem / Rakefile
100644 23 lines (17 sloc) 0.528 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- ruby -*-
 
require 'rubygems'
require 'hoe'
require './lib/geokit.rb'
 
# undefined method `empty?' for nil:NilClass
# /Library/Ruby/Site/1.8/rubygems/specification.rb:886:in `validate'
class NilClass
  def empty?
    true
  end
end
 
project=Hoe.new('geokit', Geokit::VERSION) do |p|
  #p.rubyforge_name = 'geokit' # if different than lowercase project name
  p.developer('Andre Lewis', 'andre@earthcode.com')
  p.summary="Geokit provides geocoding and distance calculation in an easy-to-use API"
end
 
 
# vim: syntax=Ruby