mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9 lines
178 B
Ruby
9 lines
178 B
Ruby
module Rake
|
|
class ExtensionTask < TaskLib
|
|
def initialize(...)
|
|
task :compile do
|
|
puts "Dummy `compile` task defined in #{__FILE__}"
|
|
end
|
|
end
|
|
end
|
|
end
|