This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require File.expand_path('../config/application', __FILE__) | |
require 'rake' | |
module ::Dpp | |
class Application | |
include Rake::DSL | |
end | |
end | |
module ::RakeFileUtils | |
extend Rake::FileUtilsExt | |
end | |
Dpp::Application.load_tasks |
Just make sure the modules are added before the Application.load_tasks call.