class MachO::LoadCommands::PrebindCksumCommand

A load command containing the value of the original checksum for prebound files, or zero. Corresponds to LC_PREBIND_CKSUM.

Public Instance Methods

to_h() click to toggle source

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

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