Class: MachO::RpathCommand
- Inherits:
-
LoadCommand
- Object
- MachOStructure
- LoadCommand
- MachO::RpathCommand
- Defined in:
- lib/macho/load_commands.rb
Instance Attribute Summary collapse
-
#path ⇒ Object
readonly
Returns the value of attribute path.
Attributes inherited from LoadCommand
Instance Method Summary collapse
-
#initialize(offset, cmd, cmdsize, path) ⇒ RpathCommand
constructor
A new instance of RpathCommand.
Methods inherited from LoadCommand
Methods inherited from MachOStructure
Constructor Details
#initialize(offset, cmd, cmdsize, path) ⇒ RpathCommand
483 484 485 486 |
# File 'lib/macho/load_commands.rb', line 483 def initialize(offset, cmd, cmdsize, path) super(offset, cmd, cmdsize) @path = path end |
Instance Attribute Details
#path ⇒ Object (readonly)
Returns the value of attribute path.
478 479 480 |
# File 'lib/macho/load_commands.rb', line 478 def path @path end |