public
Description: A set of Koans to teach the Ruby language
Homepage:
Clone URL: git://github.com/edgecase/ruby_koans.git
ruby_koans / Rakefile
100644 15 lines (11 sloc) 0.262 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'rubygems'
require 'rake/rdoctask'
 
task :default => :walk_the_path
 
task :walk_the_path do
  cd 'koans'
  ruby 'path_to_enlightenment.rb'
end
 
Rake::RDocTask.new do |rd|
  rd.main = "README.rdoc"
  rd.rdoc_files.include("README.rdoc", "koans/*.rb")
end