class Recurly::HTTP::Request
Attributes
Public Class Methods
Source
# File lib/recurly/http.rb, line 33 def initialize(method, path, body = nil) @method = method @path = path if body && !body.empty? @body = body else @body = nil end end
Public Instance Methods
Source
# File lib/recurly/http.rb, line 43 def ==(other) method == other.method \ && path == other.path \ && body == other.body end