123456789_123456789_123456789_123456789_123456789_

Module: Rake

Constant Summary

Class Attribute Summary

Class Method Summary

FileUtilsExt - Extended

nowrite

Get/set the nowrite flag controlling output from the ::FileUtils utilities.

rake_check_options

Check that the options do not contain options not listed in optdecl.

rake_merge_option

Merge the given options with the default values.

rake_output_message

Send the message to the default rake output (which is $stderr).

verbose

Get/set the verbose flag controlling output from the ::FileUtils utilities.

when_writing

Use this function to prevent potentially destructive ruby code from running when the :nowrite flag is set.

::FileUtils - Included

ruby

Run a Ruby interpreter with the given arguments.

safe_ln

Attempt to do a normal file link, but fall back to a copy if the link fails.

sh

Run the system command cmd.

split_all

Split a file path into individual directory names.

Class Attribute Details

.application (rw)

Current Rake ::Rake::Application

[ GitHub ]

  
# File 'lib/rake/rake_module.rb', line 7

def application
  @application ||= Rake::Application.new
end

.application=(app) (rw)

Set the current Rake application object.

[ GitHub ]

  
# File 'lib/rake/rake_module.rb', line 12

def application=(app)
  @application = app
end

Class Method Details

.add_rakelib(*files)

Add files to the rakelib list

[ GitHub ]

  
# File 'lib/rake/rake_module.rb', line 32

def add_rakelib(*files)
  application.options.rakelib ||= []
  application.options.rakelib.concat(files)
end

.load_rakefile(path)

Load a rakefile.

[ GitHub ]

  
# File 'lib/rake/rake_module.rb', line 27

def load_rakefile(path)
  load(path)
end

.original_dir

Return the original directory where the Rake application was started.

[ GitHub ]

  
# File 'lib/rake/rake_module.rb', line 22

def original_dir
  application.original_dir
end