Class: JohnHenryUser

Inherits:
ActiveRecord::Base
  • Object
show all
Defined in:
app/models/john_henry_user.rb

Instance Method Summary collapse

Instance Method Details

#guess_name_from_emailObject



9
10
11
12
# File 'app/models/john_henry_user.rb', line 9

def guess_name_from_email
  s = email.split('@').first.try(:titleize)
  s.split(/[.+-]/).first.try(:gsub, /[0-9]*/, '')
end