class RHC::Client

Public Class Methods

new() click to toggle source
# File lib/rhc/client.rb, line 4
def initialize() #auth info
end

Public Instance Methods

get(uri, headers={}) click to toggle source
# File lib/rhc/client.rb, line 9
def get(uri, headers={})
  # absolute uris are called directly, relative uris are called with
  # the rest api root, and server relative uris are called against the
  # host.  Allow simple templatization via t()
end
t(uri, opts) click to toggle source
# File lib/rhc/client.rb, line 14
def t(uri, opts)
  # templatize uri using AddressableTemplate and opts
end