Merge branch 'master' of git://github.com/caius/ruby_koans into caius/master
[ruby_koans.git] / Rakefile
1 require 'rubygems'
2 require 'rake/rdoctask'
3
4 task :default => :walk_the_path
5
6 task :walk_the_path do
7   cd 'koans'
8   ruby 'path_to_enlightenment.rb'
9 end
10
11 Rake::RDocTask.new do |rd|
12   rd.main = "README.rdoc"
13   rd.rdoc_files.include("README.rdoc", "koans/*.rb")
14 end