module XcodeServer

Constants

VERSION

Public Class Methods

default_host() click to toggle source
# File lib/xcode_server.rb, line 14
def self.default_host
  @default_host
end
default_host=(host) click to toggle source
# File lib/xcode_server.rb, line 10
def self.default_host=(host)
  @default_host = host
end
new(host=@default_host) click to toggle source
# File lib/xcode_server.rb, line 6
def self.new(host=@default_host)
  Server.new(host)
end