Class: MacOSRunnerSpec Private

Inherits:
T::Struct
  • Object
show all
Defined in:
macos_runner_spec.rb

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name:, runner:, timeout:, cleanup:) ⇒ void

Parameters:

  • name (String)
  • runner (String)
  • timeout (Integer)
  • cleanup (Boolean)


# File ''

const :name, String
const :runner, String
const :timeout, Integer
const :cleanup, T::Boolean

Instance Attribute Details

#cleanupBoolean (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop cleanup.

Returns:

  • (Boolean)


# File ''

const :cleanup, T::Boolean

#nameString (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop name.

Returns:



# File ''

const :name, String

#runnerString (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop runner.

Returns:



# File ''

const :runner, String

#timeoutInteger (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns the value of prop timeout.

Returns:

  • (Integer)


# File ''

const :timeout, Integer

Instance Method Details

#to_hHash

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



11
12
13
14
15
16
17
18
# File 'macos_runner_spec.rb', line 11

def to_h
  {
    name:,
    runner:,
    timeout:,
    cleanup:,
  }
end