1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/tool/dummy-rake-compiler/rake/extensiontask.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
178 B
Ruby
Raw Normal View History

2021-10-28 02:49:55 -04:00
module Rake
class ExtensionTask < TaskLib
def initialize(...)
task :compile do
puts "Dummy `compile` task defined in #{__FILE__}"
end
end
end
end