Class: MachO::LoadCommands::BuildVersionCommand::ToolEntries::Tool

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

Overview

An individual tool.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(tool, version) ⇒ Tool

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.

Returns a new instance of Tool.

Parameters:

  • tool (Integer)

    32-bit integer

  • version (Integer)

    32-bit integer



1135
1136
1137
1138
# File 'lib/macho/load_commands.rb', line 1135

def initialize(tool, version)
  @tool = tool
  @version = version
end

Instance Attribute Details

#toolInteger (readonly)

Returns the enum for the tool.

Returns:

  • (Integer)

    the enum for the tool



1127
1128
1129
# File 'lib/macho/load_commands.rb', line 1127

def tool
  @tool
end

#versionInteger (readonly)

Returns the tool's version number.

Returns:

  • (Integer)

    the tool's version number



1130
1131
1132
# File 'lib/macho/load_commands.rb', line 1130

def version
  @version
end

Instance Method Details

#to_hHash

Returns a hash representation of this MachO::LoadCommands::BuildVersionCommand::ToolEntries::Tool.

Returns:



1141
1142
1143
1144
1145
1146
# File 'lib/macho/load_commands.rb', line 1141

def to_h
  {
    "tool" => tool,
    "version" => version,
  }
end