Class: RseClient

Inherits:
Object
  • Object
show all
Defined in:
lib/rsc.rb

Class Method Summary collapse

Class Method Details

.call(x) ⇒ Object



12
# File 'lib/rsc.rb', line 12

def self.call(x)        RSC.new.get(x)        end

.delete(x) ⇒ Object



15
# File 'lib/rsc.rb', line 15

def self.delete(x)      RSC.new.delete(x)     end

.get(x) ⇒ Object



13
# File 'lib/rsc.rb', line 13

def self.get(x)         RSC.new.get(x)        end

.post(x, val) ⇒ Object



14
# File 'lib/rsc.rb', line 14

def self.post(x, val)   RSC.new.post(x, val)  end

.put(x, val) ⇒ Object



16
# File 'lib/rsc.rb', line 16

def self.put(x, val)    RSC.new.put(x, val)   end