class RseClient

Public Class Methods

call(x) click to toggle source
# File lib/rsc.rb, line 12
def self.call(x)        RSC.new.get(x)        end
delete(x) click to toggle source
# File lib/rsc.rb, line 15
def self.delete(x)      RSC.new.delete(x)     end
get(x) click to toggle source
# File lib/rsc.rb, line 13
def self.get(x)         RSC.new.get(x)        end
post(x, val) click to toggle source
# File lib/rsc.rb, line 14
def self.post(x, val)   RSC.new.post(x, val)  end
put(x, val) click to toggle source
# File lib/rsc.rb, line 16
def self.put(x, val)    RSC.new.put(x, val)   end