class ShopifyAPI::Auth::Oauth::SessionCookie

Constants

Public Instance Methods

==(other) click to toggle source
# File lib/shopify_api/auth/oauth/session_cookie.rb, line 18
def ==(other)
  return false unless other

  name == other.name &&
    value == other.value &&
    expires == other.expires
end
Also aliased as: eql?
eql?(other)
Alias for: ==