Sha256: edbf66b90f67f97cf182733a6fa3902e37362da7a4f24cdadaa167acf3274e2a
Contents?: true
Size: 718 Bytes
Versions: 3
Compression:
Stored size: 718 Bytes
Contents
module Workarea module MailChimp class BogusAPIRequest def initialize(builder: nil) @request_builder = builder end def post(params: nil, headers: nil, body: nil) Gibbon::Response.new(headers: {}, body: {}) end def patch(params: nil, headers: nil, body: nil) Gibbon::Response.new(headers: {}, body: {}) end def put(params: nil, headers: nil, body: nil) Gibbon::Response.new(headers: {}, body: {}) end def get(params: nil, headers: nil) Gibbon::Response.new(headers: {}, body: {}) end def delete(params: nil, headers: nil) Gibbon::Response.new(headers: {}, body: {}) end end end end
Version data entries
3 entries across 3 versions & 1 rubygems