Class: MachO::DylibCommand

Inherits:
LoadCommand show all
Defined in:
lib/macho/load_commands.rb

Overview

A load command representing some aspect of shared libraries, depending on filetype. Corresponds to LC_ID_DYLIB, LC_LOAD_DYLIB, LC_LOAD_WEAK_DYLIB, and LC_REEXPORT_DYLIB.

Instance Attribute Summary collapse

Attributes inherited from LoadCommand

#cmd, #cmdsize, #offset

Instance Method Summary collapse

Methods inherited from LoadCommand

new_from_bin, #to_s

Methods inherited from MachOStructure

bytesize, new_from_bin

Constructor Details

#initialize(offset, cmd, cmdsize, name, timestamp, current_version, compatibility_version) ⇒ DylibCommand

Returns a new instance of DylibCommand.



482
483
484
485
486
487
488
489
# File 'lib/macho/load_commands.rb', line 482

def initialize(offset, cmd, cmdsize, name, timestamp, current_version,
    compatibility_version)
  super(offset, cmd, cmdsize)
  @name = name
  @timestamp = timestamp
  @current_version = current_version
  @compatibility_version = compatibility_version
end

Instance Attribute Details

#compatibility_versionFixnum (readonly)

Returns the library’s compatibility version number.

Returns:

  • (Fixnum)

    the library’s compatibility version number



476
477
478
# File 'lib/macho/load_commands.rb', line 476

def compatibility_version
  @compatibility_version
end

#current_versionFixnum (readonly)

Returns the library’s current version number.

Returns:

  • (Fixnum)

    the library’s current version number



473
474
475
# File 'lib/macho/load_commands.rb', line 473

def current_version
  @current_version
end

#nameFixnum (readonly)

Returns the library’s path name (lc_str).

Returns:

  • (Fixnum)

    the library’s path name (lc_str)



467
468
469
# File 'lib/macho/load_commands.rb', line 467

def name
  @name
end

#timestampFixnum (readonly)

Returns the library’s build time stamp.

Returns:

  • (Fixnum)

    the library’s build time stamp



470
471
472
# File 'lib/macho/load_commands.rb', line 470

def timestamp
  @timestamp
end