Method: SimpleQS::Request::Base#==

Defined in:
lib/simple_qs/request/base.rb

#==(other) ⇒ Object



18
19
20
21
22
# File 'lib/simple_qs/request/base.rb', line 18

def ==(other)
  self.class.http_method == other.class.http_method\
    && query_params == other.query_params\
    && query_string == other.query_string
end