-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rakefile
29 lines (26 loc) · 966 Bytes
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'rubygems'
require 'rake'
begin
require 'jeweler'
Jeweler::Tasks.new do |gem|
gem.name = "geocoder"
gem.summary = %Q{Geocoding API for Google and Yahoo geocoding Web Services}
gem.description = %Q{Geocoding API for Google and Yahoo geocoding Web Services}
gem.email = "nc@appspark.us"
gem.homepage = "http://github.com/nc/geocoder"
gem.authors = ["Namit Chadha"]
gem.add_development_dependency "rspec", ">= 1.2.9"
# 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: gem install jeweler"
end
require 'rake/rdoctask'
Rake::RDocTask.new do |rdoc|
version = File.exist?('VERSION') ? File.read('VERSION') : ""
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "geocoder #{version}"
rdoc.rdoc_files.include('README*')
rdoc.rdoc_files.include('lib/**/*.rb')
end