Sha256: f188ed667033939f2acada0c9ccd45d4e979cb2f57e2632c70fb39ee3d3916d0
Contents?: true
Size: 753 Bytes
Versions: 7
Compression:
Stored size: 753 Bytes
Contents
require 'simctl/command' require 'simctl/device' require 'simctl/device_type' require 'simctl/list' require 'simctl/runtime' module SimCtl @@default_timeout = 15 class << self def default_timeout @@default_timeout end def default_timeout=(timeout) @@default_timeout = timeout end def command return @command if defined?(@command) @command = SimCtl::Command.new end private def respond_to_missing?(method_name, include_private=false) command.respond_to?(method_name, include_private) end def method_missing(method_name, *args, &block) if command.respond_to?(method_name) return command.send(method_name, *args, &block) end super end end end
Version data entries
7 entries across 7 versions & 1 rubygems