module Rake

Constants

CommandLineOptionError
EARLY
LATE
VERSION

Public Instance Methods

add_rakelib(*files) click to toggle source

Add files to the rakelib list

# File lib/rake/rake_module.rb, line 32
def add_rakelib(*files)
  application.options.rakelib ||= []
  application.options.rakelib.concat(files)
end
application() click to toggle source

Current Rake Application

# File lib/rake/rake_module.rb, line 7
def application
  @application ||= Rake::Application.new
end
application=(app) click to toggle source

Set the current Rake application object.

# File lib/rake/rake_module.rb, line 12
def application=(app)
  @application = app
end
load_rakefile(path) click to toggle source

Load a rakefile.

# File lib/rake/rake_module.rb, line 27
def load_rakefile(path)
  load(path)
end
original_dir() click to toggle source

Return the original directory where the Rake application was started.

# File lib/rake/rake_module.rb, line 22
def original_dir
  application.original_dir
end