module SimCtl

Constants

VERSION

Public Class Methods

command() click to toggle source
# File lib/simctl.rb, line 26
def command
  return @command if defined?(@command)
  @command = SimCtl::Command.new
end
default_timeout() click to toggle source
# File lib/simctl.rb, line 18
def default_timeout
  @@default_timeout
end
default_timeout=(timeout) click to toggle source
# File lib/simctl.rb, line 22
def default_timeout=(timeout)
  @@default_timeout = timeout
end

Private Class Methods

method_missing(method_name, *args, &block) click to toggle source
Calls superclass method
# File lib/simctl.rb, line 37
def method_missing(method_name, *args, &block)
  if command.respond_to?(method_name)
    return command.send(method_name, *args, &block)
  end
  super
end
respond_to_missing?(method_name, include_private = false) click to toggle source
# File lib/simctl.rb, line 33
def respond_to_missing?(method_name, include_private = false)
  command.respond_to?(method_name, include_private)
end