summaryrefslogtreecommitdiff
path: root/gems/lib/rake/extensiontask.rb
blob: aa668935fc154c321919fb4adde84a746d9a9eb8 (plain)
1
2
3
4
5
6
7
8
9
10
module Rake
  class ExtensionTask < TaskLib
    def initialize(...)
      task :compile do |args|
        puts "Dummy `compile` task defined in #{__FILE__}"
        puts "#{args.name} => #{args.prereqs.join(' ')}"
      end
    end
  end
end