Class: BinaryLib
- Inherits:
-
Object
- Object
- BinaryLib
- Defined in:
- lib/rakepp/binarylib.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#includes ⇒ Object
readonly
Returns the value of attribute includes.
-
#libs ⇒ Object
readonly
Returns the value of attribute libs.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#outFile ⇒ Object
Returns the value of attribute outFile.
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Instance Method Summary collapse
-
#initialize(compiler, name, libs = [], includes = [], path = nil) ⇒ BinaryLib
constructor
A new instance of BinaryLib.
Constructor Details
#initialize(compiler, name, libs = [], includes = [], path = nil) ⇒ BinaryLib
Returns a new instance of BinaryLib.
5 6 7 8 9 10 11 |
# File 'lib/rakepp/binarylib.rb', line 5 def initialize(compiler, name, libs=[], includes=[], path=nil) @name = name @libs = libs @includes = includes @path = path compiler.add_tasks(self) end |
Instance Attribute Details
#includes ⇒ Object (readonly)
Returns the value of attribute includes.
2 3 4 |
# File 'lib/rakepp/binarylib.rb', line 2 def includes @includes end |
#libs ⇒ Object (readonly)
Returns the value of attribute libs.
2 3 4 |
# File 'lib/rakepp/binarylib.rb', line 2 def libs @libs end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
2 3 4 |
# File 'lib/rakepp/binarylib.rb', line 2 def name @name end |
#outFile ⇒ Object
Returns the value of attribute outFile.
2 3 4 |
# File 'lib/rakepp/binarylib.rb', line 2 def outFile @outFile end |
#path ⇒ Object (readonly)
Returns the value of attribute path.
2 3 4 |
# File 'lib/rakepp/binarylib.rb', line 2 def path @path end |