![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This gem adds the capability of validating email addresses to ActiveModel
.
The gem only supports Rails 3 (has dependencies in ActiveModel and ActiveSupport 3.0)
# add this to your Gemfile
gem "validate_email"
# and then run
rake gems:install
# or just run
sudo gem install validate_email
class Pony < ActiveRecord::Base
# standard validation
validates :email_address, :email => true
# with allow_nil
validates :email_address, :email => {:allow_nil => true}
# with allow_blank
validates :email_address, :email => {:allow_blank => true}
end
class Unicorn
include ActiveModel::Validations
attr_accessor :email_address
# with legacy syntax (the syntax above works also)
validates_email :email_address, :allow_blank => true
end
The error message will be looked up according to the standard ActiveModel::Errors scheme. For the above Unicorn class this would be:
A default errors.messages.email of is not a valid email address
is provided.
You can also pass the :message => "my custom error"
option to your validation to define your own custom message.
Tanel Suurhans (http://twitter.com/tanelsuurhans)
Tarmo Lehtpuu (http://twitter.com/tarmolehtpuu)
Copyright 2010 by PerfectLine LLC (http://www.perfectline.co.uk) and is released under the MIT license.
FAQs
Unknown package
We found that validate_email demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
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.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.