Skip to content

Instantly share code, notes, and snippets.

@kalmanh
Created July 30, 2017 04:23
Show Gist options
  • Save kalmanh/3eb8370fc15d016f2e44e57a64b8ed11 to your computer and use it in GitHub Desktop.
Save kalmanh/3eb8370fc15d016f2e44e57a64b8ed11 to your computer and use it in GitHub Desktop.
Example of inclusion validation
class Car < ActiveRecord::Base
validates :color, inclusion: { in: [ "green", "red", "None" ] }
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment