Skip to content

Instantly share code, notes, and snippets.

@mdeering
Created August 17, 2010 22:50
Show Gist options
  • Save mdeering/532473 to your computer and use it in GitHub Desktop.
Save mdeering/532473 to your computer and use it in GitHub Desktop.
AttributeNormalizer.configure do |config|
config.normalizers[:phone] = lambda do |value, options|
value.is_a?(String) ? value.gsub(/[^0-9]+/, '') : value
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment