Skip to content

Instantly share code, notes, and snippets.

@ursm
Forked from kenchan/User.rb
Created April 20, 2012 14:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ursm/2429171 to your computer and use it in GitHub Desktop.
Save ursm/2429171 to your computer and use it in GitHub Desktop.
indent?
class User < ActiveRecord::Base
validates(
:email,
presence: true,
format: {with: VALID_EMAIL_REGEX},
uniqueness: {case_sensitive: false}
)
end
class User < ActiveRecord::Base
validates :email, {
presence: true,
format: {with: VALID_EMAIL_REGEX},
uniqueness: {case_sensitive: false}
}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment