mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
20 lines
236 B
Text
20 lines
236 B
Text
|
#!/usr/bin/env ruby
|
||
|
|
||
|
if ENV['TESTTOPSCOPE']
|
||
|
puts "TOPSCOPE"
|
||
|
end
|
||
|
|
||
|
task :default do
|
||
|
puts "DEFAULT"
|
||
|
end
|
||
|
|
||
|
task :other => [:default] do
|
||
|
puts "OTHER"
|
||
|
end
|
||
|
|
||
|
task :task_scope do
|
||
|
if ENV['TESTTASKSCOPE']
|
||
|
puts "TASKSCOPE"
|
||
|
end
|
||
|
end
|