Class: Mutant::World Private

Inherits:
Object
  • Object
show all
Includes:
Unparser::Adamantium
Defined in:
lib/mutant/world.rb

Overview

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

The outer world IO objects mutant does interact with

Constant Summary collapse

INSPECT =

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

'#<Mutant::World>'

Instance Method Summary collapse

Instance Method Details

#capture_stdout(command) ⇒ Either<String,String>

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.

Capture stdout of a command

Parameters:

  • command (Array<String>)

Returns:



45
46
47
48
49
50
51
52
53
# File 'lib/mutant/world.rb', line 45

def capture_stdout(command)
  stdout, status = open3.capture2(*command, binmode: true)

  if status.success?
    Either::Right.new(stdout)
  else
    Either::Left.new("Command #{command} failed!")
  end
end

#deadline(allowed_time) ⇒ Object

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.

Deadline

Parameters:

  • allowed_time (Float, nil)


71
72
73
74
75
76
77
78
79
80
# File 'lib/mutant/world.rb', line 71

def deadline(allowed_time)
  if allowed_time
    Timer::Deadline.new(
      allowed_time: allowed_time,
      timer:        timer
    )
  else
    Timer::Deadline::None.new
  end
end

#inspectString

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.

Object inspection

Returns:

  • (String)


36
37
38
# File 'lib/mutant/world.rb', line 36

def inspect
  INSPECT
end

#record(name, &block) ⇒ Object

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.



82
83
84
# File 'lib/mutant/world.rb', line 82

def record(name, &block)
  recorder.record(name, &block)
end

#try_const_get(name) ⇒ Class|Module|nil

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.

Try const get

rubocop:disable Lint/SuppressedException

Parameters:

  • (String)

Returns:

  • (Class|Module|nil)


62
63
64
65
# File 'lib/mutant/world.rb', line 62

def try_const_get(name)
  kernel.const_get(name)
rescue NameError
end