summaryrefslogtreecommitdiff
path: root/tool/dummy-rake-compiler/rake/extensiontask.rb
blob: 62b7ff8018bb276f62819d5518cc91429a56c960 (plain)
1
2
3
4
5
6
7
8
9
module Rake
  class ExtensionTask < TaskLib
    def initialize(...)
      task :compile do
        puts "Dummy `compile` task defined in #{__FILE__}"
      end
    end
  end
end