mirror of
https://github.com/ruby/ruby.git
synced 2025-08-23 21:14:23 +02: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
|