class Tanker::EmailVerificationMethod

Attributes

email[R]

Public Class Methods

new(email) click to toggle source
Calls superclass method
# File lib/tanker/core/verification_method.rb, line 19
def initialize(email)
  super()
  @email = email
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method Tanker::VerificationMethod#==
# File lib/tanker/core/verification_method.rb, line 24
def ==(other)
  super && email == other.email
end