class RepoForker::Client

Public Class Methods

new(host = uri.host, port = uri.port) click to toggle source
Calls superclass method
# File lib/repo_forker/client.rb, line 3
def self.new(host = uri.host, port = uri.port)
  super(host, port)
end
new(host, port) click to toggle source
Calls superclass method
# File lib/repo_forker/client.rb, line 7
def initialize(host, port)
  super
  self.use_ssl = true
end

Private Class Methods

uri() click to toggle source
# File lib/repo_forker/client.rb, line 13
def self.uri
  @uri ||= URI(RepoForker.endpoint)
end