lib/friendly_shipping/request.rb in friendly_shipping-0.5.1 vs lib/friendly_shipping/request.rb in friendly_shipping-0.5.2

- old
+ new

@@ -4,15 +4,21 @@ class Request attr_reader :url, :body, :headers, :debug # @param [String] url The HTTP request URL # @param [String] body The HTTP request body + # # @param [String] readable_body Human-readable HTTP request body # @param [Hash] headers The HTTP request headers # @param [Boolean] debug Whether to debug the request - def initialize(url:, body: nil, headers: {}, debug: false) + def initialize(url:, body: nil, readable_body: nil, headers: {}, debug: false) @url = url @body = body + @readable_body = readable_body @headers = headers @debug = debug + end + + def readable_body + @readable_body.presence || @body end end end