Skip to content

Instantly share code, notes, and snippets.

@wtnabe
Created May 28, 2011 00:40
Show Gist options
  • Save wtnabe/996460 to your computer and use it in GitHub Desktop.
Save wtnabe/996460 to your computer and use it in GitHub Desktop.
ActiveModel required fields
@model.class.validators.select { |e|
e.is_a? ActiveModel::Validations::PresenceValidator
}.map { |e| e.attributes }.flatten
# => ['foo', 'bar', 'baz']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment