module Restfully

Constants

VERSION

Public Class Methods

get(url, args = {}) click to toggle source
# File lib/restfully.rb, line 13
def self.get url, args = {}
        Request.get url, args
end
get_stream(url, file_path, args = {}) click to toggle source
# File lib/restfully.rb, line 21
def self.get_stream url, file_path, args = {}
        Request.get_stream url, file_path, args
end
post(url, args = {}) click to toggle source
# File lib/restfully.rb, line 17
def self.post url, args = {}
        Request.post url, args
end
post_stream(url, file_path, args = {}) click to toggle source
# File lib/restfully.rb, line 25
def self.post_stream url, file_path, args = {}
        Request.post_stream url, file_path, args
end
version() click to toggle source
# File lib/restfully.rb, line 9
def self.version
        Restfully::VERSION
end