Merge pull request #33432 from damireh/patch-1

Update with_options.rb [ci skip]
This commit is contained in:
George Claghorn 2018-07-25 12:10:16 -04:00 committed by GitHub
commit ab8847c920
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class Object
# You can access these methods using the class name instead:
#
# class Phone < ActiveRecord::Base
# enum phone_number_type: [home: 0, office: 1, mobile: 2]
# enum phone_number_type: { home: 0, office: 1, mobile: 2 }
#
# with_options presence: true do
# validates :phone_number_type, inclusion: { in: Phone.phone_number_types.keys }