Method: RunLoop::Environment.uia_timeout

Defined in:
lib/run_loop/environment.rb

.uia_timeoutObject

Returns the value of UIA_TIMEOUT. Use this control how long to wait for instruments to launch and attach to your application.

Non-empty values are converted to a float.



51
52
53
54
# File 'lib/run_loop/environment.rb', line 51

def self.uia_timeout
  timeout = ENV['UIA_TIMEOUT']
  timeout ? timeout.to_f : nil
end