Class: Podage::OSXBuilder
Instance Method Summary
collapse
Methods inherited from Builder
#initialize, #version
Instance Method Details
#build(configuration, &block) ⇒ Object
31
32
33
34
35
36
37
38
39
|
# File 'lib/podage/builders/osx_builder.rb', line 31
def build(configuration, &block)
super
build_frameworks configuration
copy_frameworks
end
|
47
48
49
50
51
|
# File 'lib/podage/builders/osx_builder.rb', line 47
def platform
return :osx
end
|
#target_name ⇒ Object
41
42
43
44
45
|
# File 'lib/podage/builders/osx_builder.rb', line 41
def target_name
return 'OSX'
end
|