Skip to content

Instantly share code, notes, and snippets.

@etaque
Created March 4, 2010 11:23
Show Gist options
  • Save etaque/321632 to your computer and use it in GitHub Desktop.
Save etaque/321632 to your computer and use it in GitHub Desktop.
before_validation :clear_empty_attributes
protected
def clear_empty_attributes
attributes.each do |key,value|
self[key] = nil if value.is_a?(String) && value.blank?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment