Sha256: 86a279372ea9bf31301d42f88a8ce67f35371dc770f1a5e17e647150108c4242
Contents?: true
Size: 287 Bytes
Versions: 7
Compression:
Stored size: 287 Bytes
Contents
# frozen_string_literal: true # Force the request headers to only accept JSON, and disable gzip. # This makes our VCR cassettes human readable. module RestClient class Request def default_headers { accept: 'application/json', accept_encoding: 'identity' } end end end
Version data entries
7 entries across 7 versions & 1 rubygems