class Object

Public Instance Methods

post(*args) click to toggle source
# File lib/attache/api/test.rb, line 4
def post(*args)
  Struct.new(:body).new.tap do |response|
    response.body = '{}' # empty json
  end
end
post_content(*args) click to toggle source
# File lib/attache/api/test.rb, line 10
def post_content(*args)
  ""
end