lib/grit_ext/actor.rb (12 lines of code) (raw):

module Grit class Actor alias_method :old_name, :name alias_method :old_email, :email def name GritExt.encode! old_name end def email GritExt.encode! old_email end end end