module Rake::DSL
Public Instance Methods
application_task(*args, &block)
click to toggle source
DSL
method to create an application task.
# File lib/mtbuild/application_task.rb, line 17 def application_task(*args, &block) new_task = Rake::ApplicationTask.define_task(*args, &block) end
framework_task(*args, &block)
click to toggle source
DSL
method to create a framework task.
# File lib/mtbuild/framework_task.rb, line 29 def framework_task(*args, &block) new_task = Rake::FrameworkTask.define_task(*args, &block) end
static_library_task(*args, &block)
click to toggle source
DSL
method to create a static library task.
# File lib/mtbuild/staticlibrary_task.rb, line 29 def static_library_task(*args, &block) new_task = Rake::StaticLibraryTask.define_task(*args, &block) end
test_application_task(*args, &block)
click to toggle source
DSL
method to create a test application task.
# File lib/mtbuild/test_application_task.rb, line 17 def test_application_task(*args, &block) new_task = Rake::TestApplicationTask.define_task(*args, &block) end