public
Description: Official Geokit plugin for Rails/ActiveRecord. Provides location-based goodness for your Rails app. Requires the Geokit gem.
Homepage: http://geokit.rubyforge.org
Clone URL: git://github.com/andre/geokit-rails.git
geokit-rails / Rakefile
100644 19 lines (14 sloc) 0.423 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'rake'
require 'rake/testtask'
require 'rake/rdoctask'
 
load 'test/tasks.rake'
 
desc 'Default: run unit tests.'
task :default => :test
 
desc 'Generate documentation for the GeoKit plugin.'
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.rdoc_dir = 'rdoc'
  rdoc.title = 'GeoKit'
  rdoc.options << '--line-numbers' << '--inline-source'
  rdoc.rdoc_files.include('README')
  rdoc.rdoc_files.include('lib/**/*.rb')
end