Class: Rake::FrameworkTask
- Inherits:
-
Task
- Object
- Task
- Rake::FrameworkTask
- Defined in:
- lib/mtbuild/framework_task.rb
Overview
This is a top-level Rake task for loading a framework
Instance Attribute Summary collapse
-
#api_headers ⇒ Object
API header location for the framework.
-
#configuration_headers ⇒ Object
Configuration header location for the framework.
-
#library_files ⇒ Object
The framework objects.
Instance Method Summary collapse
-
#initialize(task_name, app) ⇒ FrameworkTask
constructor
A new instance of FrameworkTask.
Constructor Details
#initialize(task_name, app) ⇒ FrameworkTask
Returns a new instance of FrameworkTask.
17 18 19 20 21 22 |
# File 'lib/mtbuild/framework_task.rb', line 17 def initialize(task_name, app) super @api_headers = [] @configuration_headers = [] @library_files = [] end |
Instance Attribute Details
#api_headers ⇒ Object
API header location for the framework
9 10 11 |
# File 'lib/mtbuild/framework_task.rb', line 9 def api_headers @api_headers end |
#configuration_headers ⇒ Object
Configuration header location for the framework
12 13 14 |
# File 'lib/mtbuild/framework_task.rb', line 12 def configuration_headers @configuration_headers end |
#library_files ⇒ Object
The framework objects
15 16 17 |
# File 'lib/mtbuild/framework_task.rb', line 15 def library_files @library_files end |