Sha256: a50d5c2aea4478a5eae9ac3bf72dea442fc0ef9591f528531d7faad19f615dab

Contents?: true

Size: 189 Bytes

Versions: 1

Compression:

Stored size: 189 Bytes

Contents

require 'httparty'

class HTTPartySekken
  def get(url)
    HTTParty.get(url).body
  end

  def post(url, headers, body)
    HTTParty.post(url, headers: headers, body: body).body
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
soapy_cake-0.2.12 lib/soapy_cake/http_client.rb