Rakefile in darrell-geokit-1.2.4.1 vs Rakefile in darrell-geokit-1.4.1.1

- old
+ new

@@ -1,20 +1,22 @@ # -*- ruby -*- require 'rubygems' require 'hoe' -require './lib/geokit' +require './lib/geokit.rb' -Hoe.new('Geokit', Geokit::VERSION) do |p| - # p.rubyforge_name = 'Geokitx' # if different than lowercase project name - p.developer('Andre Lewis and Bill Eisenhauer', 'andre@earthcode.com / bill_eisenhauer@yahoo.com') -end +# undefined method `empty?' for nil:NilClass +# /Library/Ruby/Site/1.8/rubygems/specification.rb:886:in `validate' +class NilClass + def empty? + true + end +end -task :generate_gemspec do - system "rake debug_gem | grep -v \"(in \" > `basename \\`pwd\\``.gemspec" +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 -task :update_manifest do - system "touch Manifest.txt; rake check_manifest | grep -v \"(in \" | patch" -end # vim: syntax=Ruby