Class: Podage::OSXBuilder

Inherits:
Builder
  • Object
show all
Defined in:
lib/podage/builders/osx_builder.rb

Instance Method Summary collapse

Methods inherited from Builder

#initialize, #version

Constructor Details

This class inherits a constructor from Podage::Builder

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

#platformObject



47
48
49
50
51
# File 'lib/podage/builders/osx_builder.rb', line 47

def platform

	return :osx

end

#target_nameObject



41
42
43
44
45
# File 'lib/podage/builders/osx_builder.rb', line 41

def target_name

	return 'OSX'

end