Skip to content

Instantly share code, notes, and snippets.

@orodio
Created January 4, 2013 06:12
Show Gist options
  • Save orodio/4450320 to your computer and use it in GitHub Desktop.
Save orodio/4450320 to your computer and use it in GitHub Desktop.
def check_for_profanity(field)
if field
if field=~/(fuck)|(cunt)/i
return true
end
end
return false
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment