Skip to content

Instantly share code, notes, and snippets.

@RStankov
Created January 5, 2015 18:00
Show Gist options
  • Save RStankov/e371c63ad70d16ad3379 to your computer and use it in GitHub Desktop.
Save RStankov/e371c63ad70d16ad3379 to your computer and use it in GitHub Desktop.
module TitleValidator
module_function
def call(object)
object.errors.add :title, :blank if object.title.blank
object
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment