Sha256: e904a0420f7722e45b84a5ccc0bcb4a87ba9e057d6dda06ee37400be6179e19a
Contents?: true
Size: 828 Bytes
Versions: 24
Compression:
Stored size: 828 Bytes
Contents
module RemoteResource module REST def get(attributes = {}, connection_options = {}) RemoteResource::Request.new(self, __method__, attributes, connection_options).perform end def put(attributes = {}, connection_options = {}) RemoteResource::Request.new(self, __method__, attributes, connection_options).perform end def patch(attributes = {}, connection_options = {}) RemoteResource::Request.new(self, __method__, attributes, connection_options).perform end def post(attributes = {}, connection_options = {}) RemoteResource::Request.new(self, __method__, attributes, connection_options).perform end def delete(attributes = {}, connection_options = {}) RemoteResource::Request.new(self, __method__, attributes, connection_options).perform end end end
Version data entries
24 entries across 24 versions & 1 rubygems