class MachO::LoadCommands::PreboundDylibCommand

A load command used to indicate dynamic libraries used in prebinding. Corresponds to LC_PREBOUND_DYLIB.

Public Instance Methods

to_h() click to toggle source

@return [Hash] a hash representation of this {PreboundDylibCommand}

Calls superclass method MachO::LoadCommands::LoadCommand#to_h
# File lib/macho/load_commands.rb, line 696
def to_h
  {
    "name" => name.to_h,
    "nmodules" => nmodules,
    "linked_modules" => linked_modules,
  }.merge super
end