module Warbler::RakeHelper
This module exists for compatibility with Rake 0.9.
Public Class Methods
extended(base)
click to toggle source
# File lib/warbler/rake_helper.rb, line 21 def self.extended(base) base.extend Rake::DSL if defined?(Rake::DSL) if defined?(Rake::FileUtilsExt) base.extend FileUtils base.extend Rake::FileUtilsExt end end
included(base)
click to toggle source
# File lib/warbler/rake_helper.rb, line 11 def self.included(base) base.class_eval do include Rake::DSL if defined?(Rake::DSL) if defined?(Rake::FileUtilsExt) include FileUtils include Rake::FileUtilsExt end end end