9 lines
220 B
Ruby
9 lines
220 B
Ruby
RUBIES = ENV['KOAN_RUBIES'] || %w(ruby-1.8.7-p299,ruby-1.9.2-p0,jruby-1.5.2,jruby-head)
|
|
|
|
task :runall do
|
|
chdir('src') do
|
|
ENV['SIMPLE_KOAN_OUTPUT'] = 'true'
|
|
sh "rvm #{RUBIES} path_to_enlightenment.rb"
|
|
end
|
|
end
|