Class: FWToolkit::Tasks::BuildTask

Inherits:
Rake::TaskLib
  • Object
show all
Includes:
Rake::DSL
Defined in:
lib/fwtoolkit/tasks/build.rb

Constant Summary collapse

TEMPLATES_DIR =
File.expand_path('../../../templates/', File.dirname(__FILE__))

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize {|_self| ... } ⇒ BuildTask

Returns a new instance of BuildTask.

Yields:

  • (_self)

Yield Parameters:



46
47
48
49
# File 'lib/fwtoolkit/tasks/build.rb', line 46

def initialize(&block)
  yield self if block_given?
  define
end

Instance Attribute Details

#certificateObject

Returns the value of attribute certificate.



43
44
45
# File 'lib/fwtoolkit/tasks/build.rb', line 43

def certificate
  @certificate
end

#projectObject

Returns the value of attribute project.



42
43
44
# File 'lib/fwtoolkit/tasks/build.rb', line 42

def project
  @project
end

#provisioning_profileObject

Returns the value of attribute provisioning_profile.



44
45
46
# File 'lib/fwtoolkit/tasks/build.rb', line 44

def provisioning_profile
  @provisioning_profile
end

#schemeObject

Returns the value of attribute scheme.



41
42
43
# File 'lib/fwtoolkit/tasks/build.rb', line 41

def scheme
  @scheme
end

#workspaceObject

Returns the value of attribute workspace.



40
41
42
# File 'lib/fwtoolkit/tasks/build.rb', line 40

def workspace
  @workspace
end