class EmailRepair::Mechanic::CommonDomainRepair

Public Class Methods

common_domains() click to toggle source
# File lib/email_repair/mechanic.rb, line 64
def self.common_domains
  {
    'gmail' => 'com',
    'yahoo' => 'com',
    'hotmail' => 'com',
    'att' => 'net',
    'chalkschools' => 'com',
    'sbcglobal' => 'net',
    'aol' => 'com',
    'earthlink' => 'net',
  }
end
repair(*) click to toggle source
# File lib/email_repair/mechanic.rb, line 60
def self.repair(*)
  raise 'not implemented'
end