class Rake::FrameworkTask

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

Attributes

api_headers[RW]

API header location for the framework

configuration_headers[RW]

Configuration header location for the framework

library_files[RW]

The framework objects

Public Class Methods

new(task_name, app) click to toggle source
Calls superclass method
# File lib/mtbuild/framework_task.rb, line 17
def initialize(task_name, app)
  super
  @api_headers = []
  @configuration_headers = []
  @library_files = []
end