Skip to content

Instantly share code, notes, and snippets.

@qmaruf
Created May 12, 2013 15:51
Show Gist options
  • Save qmaruf/5563980 to your computer and use it in GitHub Desktop.
Save qmaruf/5563980 to your computer and use it in GitHub Desktop.
before_validation :upcase_title
validates_presence_of :title
def upcase_title
title.upcase if title.present?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment