class MachO::LoadCommands::SubUmbrellaCommand

A load command signifying membership of a subumbrella containing the name of an umbrella framework. Corresponds to LC_SUB_UMBRELLA.

Public Instance Methods

to_h() click to toggle source

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

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