Module: Rake
- Extended by:
- Rake, FileUtilsExt
- Includes:
- Test::Unit::Assertions
- Included in:
- Rake
- Defined in:
- lib/rake/gempackagetask.rb,
lib/rake/task.rb,
lib/rake/win32.rb,
lib/rake/runtest.rb,
lib/rake/tasklib.rb,
lib/rake/version.rb,
lib/rake/promise.rb,
lib/rake/rdoctask.rb,
lib/rake/rdoctask.rb,
lib/rake/testtask.rb,
lib/rake/cloneable.rb,
lib/rake/file_task.rb,
lib/rake/file_list.rb,
lib/rake/file_list.rb,
lib/rake/backtrace.rb,
lib/rake/multi_task.rb,
lib/rake/early_time.rb,
lib/rake/name_space.rb,
lib/rake/packagetask.rb,
lib/rake/rake_module.rb,
lib/rake/thread_pool.rb,
lib/rake/application.rb,
lib/rake/task_manager.rb,
lib/rake/trace_output.rb,
lib/rake/pseudo_status.rb,
lib/rake/private_reader.rb,
lib/rake/dsl_definition.rb,
lib/rake/default_loader.rb,
lib/rake/file_utils_ext.rb,
lib/rake/task_arguments.rb,
lib/rake/invocation_chain.rb,
lib/rake/contrib/ftptools.rb,
lib/rake/loaders/makefile.rb,
lib/rake/file_creation_task.rb,
lib/rake/task_argument_error.rb,
lib/rake/contrib/sshpublisher.rb,
lib/rake/thread_history_display.rb,
lib/rake/contrib/compositepublisher.rb,
lib/rake/contrib/rubyforgepublisher.rb,
lib/rake/invocation_exception_mixin.rb,
lib/rake/rule_recursion_overflow_error.rb
Overview
:nodoc:
Defined Under Namespace
Modules: AltSystem, Backtrace, Cloneable, DSL, DeprecatedObjectDSL, FileUtilsExt, InvocationExceptionMixin, PrivateReader, TaskManager, TraceOutput, Version, Win32 Classes: Application, CompositePublisher, DefaultLoader, EarlyTime, FileCreationTask, FileList, FileTask, FtpFile, FtpUploader, InvocationChain, MakefileLoader, MultiTask, NameSpace, PackageTask, Promise, PseudoStatus, RubyForgePublisher, RuleRecursionOverflowError, SshDirPublisher, SshFilePublisher, SshFreshDirPublisher, Task, TaskArgumentError, TaskArguments, TaskLib, TestTask, ThreadHistoryDisplay, ThreadPool
Constant Summary collapse
- VERSION =
'0.9.6'
- RDocTask =
RDoc::Task
- EARLY =
EarlyTime.instance
- CommandLineOptionError =
Class.new(StandardError)
- DeprecatedCommands =
Object.new.extend(DSL)
- GemPackageTask =
Gem::PackageTask
- EMPTY_TASK_ARGS =
TaskArguments.new([], [])
Constants included from FileUtilsExt
Constants included from FileUtils
FileUtils::LN_SUPPORTED, FileUtils::RUBY
Class Method Summary collapse
-
.add_rakelib(*files) ⇒ Object
Add files to the rakelib list.
-
.application ⇒ Object
Current Rake Application.
-
.application=(app) ⇒ Object
Set the current Rake application object.
-
.each_dir_parent(dir) ⇒ Object
Yield each file or directory component.
-
.load_rakefile(path) ⇒ Object
Load a rakefile.
-
.original_dir ⇒ Object
Return the original directory where the Rake application was started.
Instance Method Summary collapse
Methods included from FileUtilsExt
nowrite, rake_check_options, rake_merge_option, rake_output_message, verbose, when_writing
Methods included from FileUtils
#ruby, #safe_ln, #sh, #split_all
Class Method Details
.add_rakelib(*files) ⇒ Object
Add files to the rakelib list
29 30 31 32 33 34 |
# File 'lib/rake/rake_module.rb', line 29 def add_rakelib(*files) application..rakelib ||= [] files.each do |file| application..rakelib << file end end |
.application ⇒ Object
Current Rake Application
9 10 11 |
# File 'lib/rake/rake_module.rb', line 9 def application @application ||= Rake::Application.new end |
.application=(app) ⇒ Object
Set the current Rake application object.
14 15 16 |
# File 'lib/rake/rake_module.rb', line 14 def application=(app) @application = app end |
.each_dir_parent(dir) ⇒ Object
Yield each file or directory component.
401 402 403 404 405 406 407 408 |
# File 'lib/rake/file_list.rb', line 401 def each_dir_parent(dir) # :nodoc: old_length = nil while dir != '.' && dir.length != old_length yield(dir) old_length = dir.length dir = File.dirname(dir) end end |
.load_rakefile(path) ⇒ Object
Load a rakefile.
24 25 26 |
# File 'lib/rake/rake_module.rb', line 24 def load_rakefile(path) load(path) end |
.original_dir ⇒ Object
Return the original directory where the Rake application was started.
19 20 21 |
# File 'lib/rake/rake_module.rb', line 19 def original_dir application.original_dir end |
Instance Method Details
#run_tests(pattern = 'test/test*.rb', log_enabled = false) ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 |
# File 'lib/rake/runtest.rb', line 8 def run_tests(pattern='test/test*.rb', log_enabled=false) FileList.glob(pattern).each { |fn| $stderr.puts fn if log_enabled begin require fn rescue Exception => ex $stderr.puts "Error in #{fn}: #{ex.}" $stderr.puts ex.backtrace assert false end } end |