Sha256: b8fbca23bab9e80489acadc6ff9c3631a4dcebe0414e0e9101beb9e2faa105dd

Contents?: true

Size: 522 Bytes

Versions: 2

Compression:

Stored size: 522 Bytes

Contents

require 'hover/client/hmac'

module Hover
  module Client
    class Hover < Hover::Client::HMAC
      
      def json_get(*args)
        parse_response(get(*args))
      end
      
      def json_put(*args)
        parse_response(put(*args))
      end
      
      def json_post(*args)
        parse_response(post(*args))
      end
      
      def json_patch(*args)
        parse_response(patch(*args))
      end
      
      def json_delete(*args)
        parse_response(delete(*args))
      end
      
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hover-ruby-client-0.4.0 lib/hover/client/hover.rb
hover-ruby-client-0.3.1 lib/hover/client/hover.rb