Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

validates_email_whitelist_of

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

validates_email_whitelist_of

  • 1.1.1
  • Rubygems
  • Socket score

Version published
Maintainers
1
Created
Source

validates_email_whitelist_of

Plugin for ActiveRecord for validating email format and whitelisting the domain.

Works on Rails 2+, Rails 3+ and Ruby 1.8+.

Usage

Add the gem to your Rails Gemfile

gem 'validates_email_whitelist_of'

Then on ActiveRecord 2.0+ you can do

class User < ActiveRecord::Base
  validates_email_whitelist_of :email, :whitelist => ['example.com', 'google.com']

validates_email_blacklist_of :email, :blacklist => ['123.com']
end

On ActiveRecord 3.0+ you can do

class User < ActiveRecord::Base
  validates :email, :whitelist => ['example.com', 'google.com']
validates :email, :blacklist => ['123.com']
end

If you want to use I18n, make sure you add the scope

activerecord.errors.messages.invalid_email activerecord.errors.messages.invalid_whitelist activerecord.errors.messages.invalid_blacklist

or

errors.messages.invalid_email errors.messages.invalid_whitelist errors.messages.invalid_blacklist

The following locales are builtin:

  • pt
  • pt-BR
  • en

Copyright (c) 2011 Ruben Fonseca, released under the MIT license

FAQs

Package last updated on 04 May 2011

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc