class MachO::LoadCommands::FvmlibCommand

An obsolete load command containing the path to a library to be loaded into memory. Corresponds to LC_LOADFVMLIB and LC_IDFVMLIB.

Public Instance Methods

to_h() click to toggle source

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

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