Module: Rake
- Extended by:
- Rake
- Includes:
- Test::Unit::Assertions
- Included in:
- Rake
- Defined in:
- lib/rake/contrib/ftptools.rb,
lib/rake/task.rb,
lib/rake/win32.rb,
lib/rake/runtest.rb,
lib/rake/tasklib.rb,
lib/rake/rdoctask.rb,
lib/rake/testtask.rb,
lib/rake/cloneable.rb,
lib/rake/file_list.rb,
lib/rake/file_list.rb,
lib/rake/file_task.rb,
lib/rake/early_time.rb,
lib/rake/multi_task.rb,
lib/rake/name_space.rb,
lib/rake/application.rb,
lib/rake/packagetask.rb,
lib/rake/rake_module.rb,
lib/rake/task_manager.rb,
lib/rake/psuedo_status.rb,
lib/rake/default_loader.rb,
lib/rake/gempackagetask.rb,
lib/rake/task_arguments.rb,
lib/rake/invocation_chain.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/contrib/compositepublisher.rb,
lib/rake/contrib/rubyforgepublisher.rb,
lib/rake/rule_recursion_overflow_error.rb
Overview
:nodoc:
Defined Under Namespace
Modules: AltSystem, Cloneable, TaskManager, Win32 Classes: Application, CompositePublisher, DefaultLoader, EarlyTime, FileCreationTask, FileList, FileTask, FtpFile, FtpUploader, GemPackageTask, InvocationChain, MakefileLoader, MultiTask, NameSpace, PackageTask, PseudoStatus, RDocTask, RubyForgePublisher, RuleRecursionOverflowError, SshDirPublisher, SshFilePublisher, SshFreshDirPublisher, Task, TaskArgumentError, TaskArguments, TaskLib, TestTask
Constant Summary collapse
- EARLY =
EarlyTime.instance
- EMPTY_TASK_ARGS =
TaskArguments.new([], [])
Class Method Summary collapse
-
.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.
-
.original_dir ⇒ Object
Return the original directory where the Rake application was started.
Instance Method Summary collapse
Class Method Details
.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 |
.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
9 10 11 12 13 14 15 16 17 18 19 20 |
# File 'lib/rake/runtest.rb', line 9 def run_tests(pattern='test/test*.rb', log_enabled=false) Dir["#{pattern}"].each { |fn| puts fn if log_enabled begin load fn rescue Exception => ex puts "Error in #{fn}: #{ex.}" puts ex.backtrace assert false end } end |