class PossibleEmail::CLI
Public Instance Methods
find_profile(*emails)
click to toggle source
# File lib/possible_email/cli.rb, line 28 def find_profile(*emails) profiles = PossibleEmail.find_profile(emails) puts profiles end
search(first_name, last_name, *domain)
click to toggle source
# File lib/possible_email/cli.rb, line 16 def search(first_name, last_name, *domain) profiles = PossibleEmail.search(first_name, last_name, domain) puts profiles end