🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
DemoInstallSign in
Socket

email_domain_inclusion

Package Overview
Dependencies
Maintainers
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

email_domain_inclusion

1.2.1
Rubygems
Version published
Maintainers
1
Created
Source

EmailDomainInclusion

EmailDomainInclusion is a custom ActiveModel::EachValidator that checks if a given email has a whitelisted domain

Installation

Add this line to your application's Gemfile:

gem 'email_domain_inclusion'

And then execute:

$ bundle

Or install it yourself as:

$ gem install email_domain_inclusion

Usage

class Person
  include ActiveModel::Validations
  attr_accessor :name, :email

  validates :email, email_domain_inclusion: {allow_subdomains: true, allowed_domains: ["hotmail.com", "gmail.com"]}
end

You may also pass a Proc to allowed_domains

validates :email, email_domain_inclusion: {allowed_domains: ->(person) { AllowedDomains.pluck(:domain) }}

Contributing

  • Fork it ( https://github.com/[my-github-username]/email_domain_inclusion/fork )
  • Create your feature branch (git checkout -b my-new-feature)
  • Commit your changes (git commit -am 'Add some feature')
  • Push to the branch (git push origin my-new-feature)
  • Create a new Pull Request

FAQs

Package last updated on 08 Jun 2015

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