Class: Rake::FrameworkTask

Inherits:
Task
  • Object
show all
Defined in:
lib/mtbuild/framework_task.rb

Overview

This is a top-level Rake task for loading a framework

Instance Attribute Summary collapse

Instance Method Summary collapse

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_headersObject

API header location for the framework



9
10
11
# File 'lib/mtbuild/framework_task.rb', line 9

def api_headers
  @api_headers
end

#configuration_headersObject

Configuration header location for the framework



12
13
14
# File 'lib/mtbuild/framework_task.rb', line 12

def configuration_headers
  @configuration_headers
end

#library_filesObject

The framework objects



15
16
17
# File 'lib/mtbuild/framework_task.rb', line 15

def library_files
  @library_files
end