Skip to content

Instantly share code, notes, and snippets.

@mdeering
Created November 26, 2010 05:31
Show Gist options
  • Save mdeering/716312 to your computer and use it in GitHub Desktop.
Save mdeering/716312 to your computer and use it in GitHub Desktop.
replace the default strip with squish
AttributeNormalizer.configure do |config|
config.normalizers[:squish] = lambda do |value, options|
value.is_a?(String) ? value.squish : value
end
config.default_normalizers = :squish, :blank
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment