mail_validation 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/.rspec +1 -0
- data/Gemfile +8 -0
- data/LICENSE.txt +22 -0
- data/README.md +51 -0
- data/Rakefile +22 -0
- data/lib/mail_validation/email_validator.rb +21 -0
- data/lib/mail_validation/version.rb +3 -0
- data/lib/mail_validation.rb +8 -0
- data/mail_validation.gemspec +27 -0
- data/spec/mail_validation/email_validator_spec.rb +40 -0
- metadata +141 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: c64e9807e9cb32624b7ee2fe0ba5956eea0d56b5
|
4
|
+
data.tar.gz: 4483d06d285e24b53747c747fd342c60358792f6
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 8366d7be95c58ba7baf114eade401d11203bb17054c40e9c25535ba43a8c2d4939877cd5faad43a293a99869162f1292576eacb8b2fea26b2045c19b09ae0f0d
|
7
|
+
data.tar.gz: 9d5d78833b9ee4d015390075ac77bf0dbfcc6a7fe719295156582273e4cde636d948048910559c34779174d3ce2c2b3bc24a3c5f8ff68224168fcc5ea1e802f5
|
data/.gitignore
ADDED
data/.rspec
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
--color
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Dan Pickett
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
# MailValidation
|
2
|
+
|
3
|
+
A simple validator for email addresses. Internally, the [mail](https://github.com/mikel/mail) gem is utilized to parse the email address.
|
4
|
+
|
5
|
+
## LoLwut? Why not use a regex?
|
6
|
+
|
7
|
+
Rails already depends on the mail gem, so why not utilize that dependency to parse email addresses properly? Framework wise, it makes sense that we would rely on the mail gem for all things email related.
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
With ActiveRecord:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
class User < ActiveRecord::Base
|
15
|
+
validates :email, "MailValidation::Email" => true
|
16
|
+
end
|
17
|
+
```
|
18
|
+
|
19
|
+
With just ActiveModel:
|
20
|
+
|
21
|
+
```ruby
|
22
|
+
class User
|
23
|
+
include ActiveModel::Model
|
24
|
+
end
|
25
|
+
```
|
26
|
+
|
27
|
+
## Installation
|
28
|
+
|
29
|
+
Add this line to your application's Gemfile:
|
30
|
+
|
31
|
+
gem 'mail_validation'
|
32
|
+
|
33
|
+
And then execute:
|
34
|
+
|
35
|
+
$ bundle
|
36
|
+
|
37
|
+
Or install it yourself as:
|
38
|
+
|
39
|
+
$ gem install mail_validation
|
40
|
+
|
41
|
+
## Usage
|
42
|
+
|
43
|
+
TODO: Write usage instructions here
|
44
|
+
|
45
|
+
## Contributing
|
46
|
+
|
47
|
+
1. Fork it
|
48
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
49
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
50
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
51
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
2
|
+
|
3
|
+
begin
|
4
|
+
require 'rspec/core/rake_task'
|
5
|
+
|
6
|
+
desc "Run specs"
|
7
|
+
RSpec::Core::RakeTask.new do |t|
|
8
|
+
end
|
9
|
+
|
10
|
+
task default: :spec
|
11
|
+
rescue LoadError
|
12
|
+
puts "RSpec is not installed"
|
13
|
+
end
|
14
|
+
|
15
|
+
begin
|
16
|
+
require "yard"
|
17
|
+
YARD::Rake::YardocTask.new do |t|
|
18
|
+
t.files = ['lib/**/*.rb'] # optional
|
19
|
+
end
|
20
|
+
rescue LoadError
|
21
|
+
puts "Yard is not installed"
|
22
|
+
end
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module MailValidation
|
2
|
+
class EmailValidator < ActiveModel::EachValidator
|
3
|
+
#uses the mail gem to validate an email address
|
4
|
+
#also requires that the email is present and includes a domain
|
5
|
+
def validate_each(record, attribute, value)
|
6
|
+
begin
|
7
|
+
address = Mail::Address.new(value)
|
8
|
+
if address.domain.nil?
|
9
|
+
append_error(record, attribute)
|
10
|
+
end
|
11
|
+
rescue Mail::Field::ParseError => e
|
12
|
+
append_error(record, attribute)
|
13
|
+
end
|
14
|
+
end
|
15
|
+
|
16
|
+
protected
|
17
|
+
def append_error(record, attribute)
|
18
|
+
record.errors.add(attribute, options[:message] || :invalid)
|
19
|
+
end
|
20
|
+
end
|
21
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mail_validation/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "mail_validation"
|
8
|
+
spec.version = MailValidation::VERSION
|
9
|
+
spec.authors = ["Dan Pickett"]
|
10
|
+
spec.email = ["dan.pickett@launchware.com"]
|
11
|
+
spec.description = %q{A mail gem based validator for rails}
|
12
|
+
spec.summary = %q{A mail gem based validator for rails}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_dependency "mail"
|
22
|
+
spec.add_dependency "activemodel", ">= 3.0"
|
23
|
+
spec.add_development_dependency "rspec"
|
24
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
25
|
+
spec.add_development_dependency "rake"
|
26
|
+
spec.add_development_dependency "yard"
|
27
|
+
end
|
@@ -0,0 +1,40 @@
|
|
1
|
+
require 'rspec'
|
2
|
+
|
3
|
+
require File.join(File.dirname(__FILE__), '../../lib/mail_validation')
|
4
|
+
|
5
|
+
describe MailValidation::EmailValidator do
|
6
|
+
class User
|
7
|
+
include ActiveModel::Model
|
8
|
+
attr_accessor :email
|
9
|
+
validates :email, 'MailValidation::Email' => true
|
10
|
+
end
|
11
|
+
|
12
|
+
it 'adds an error if the email is blank' do
|
13
|
+
user = User.new
|
14
|
+
expect(user).to_not be_valid
|
15
|
+
end
|
16
|
+
|
17
|
+
it 'adds an error if the email is localized' do
|
18
|
+
user = User.new.tap do |u|
|
19
|
+
u.email = 'bademail'
|
20
|
+
end
|
21
|
+
|
22
|
+
expect(user).to_not be_valid
|
23
|
+
end
|
24
|
+
|
25
|
+
it 'adds an error if the email is invalid' do
|
26
|
+
user = User.new.tap do |u|
|
27
|
+
u.email = '@.com'
|
28
|
+
end
|
29
|
+
|
30
|
+
expect(user).to_not be_valid
|
31
|
+
end
|
32
|
+
|
33
|
+
it 'does not add an error for a valid, nonlocal email' do
|
34
|
+
user = User.new.tap do |u|
|
35
|
+
u.email = 'johnny@example.com'
|
36
|
+
end
|
37
|
+
|
38
|
+
expect(user).to be_valid
|
39
|
+
end
|
40
|
+
end
|
metadata
ADDED
@@ -0,0 +1,141 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: mail_validation
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Dan Pickett
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-22 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: mail
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - '>='
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '0'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - '>='
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: activemodel
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - '>='
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '3.0'
|
34
|
+
type: :runtime
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - '>='
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '3.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - '>='
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - '>='
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: bundler
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '1.3'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '1.3'
|
69
|
+
- !ruby/object:Gem::Dependency
|
70
|
+
name: rake
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - '>='
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
type: :development
|
77
|
+
prerelease: false
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
79
|
+
requirements:
|
80
|
+
- - '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: yard
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - '>='
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :development
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - '>='
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
description: A mail gem based validator for rails
|
98
|
+
email:
|
99
|
+
- dan.pickett@launchware.com
|
100
|
+
executables: []
|
101
|
+
extensions: []
|
102
|
+
extra_rdoc_files: []
|
103
|
+
files:
|
104
|
+
- .gitignore
|
105
|
+
- .rspec
|
106
|
+
- Gemfile
|
107
|
+
- LICENSE.txt
|
108
|
+
- README.md
|
109
|
+
- Rakefile
|
110
|
+
- lib/mail_validation.rb
|
111
|
+
- lib/mail_validation/email_validator.rb
|
112
|
+
- lib/mail_validation/version.rb
|
113
|
+
- mail_validation.gemspec
|
114
|
+
- spec/mail_validation/email_validator_spec.rb
|
115
|
+
homepage: ''
|
116
|
+
licenses:
|
117
|
+
- MIT
|
118
|
+
metadata: {}
|
119
|
+
post_install_message:
|
120
|
+
rdoc_options: []
|
121
|
+
require_paths:
|
122
|
+
- lib
|
123
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
124
|
+
requirements:
|
125
|
+
- - '>='
|
126
|
+
- !ruby/object:Gem::Version
|
127
|
+
version: '0'
|
128
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
129
|
+
requirements:
|
130
|
+
- - '>='
|
131
|
+
- !ruby/object:Gem::Version
|
132
|
+
version: '0'
|
133
|
+
requirements: []
|
134
|
+
rubyforge_project:
|
135
|
+
rubygems_version: 2.1.11
|
136
|
+
signing_key:
|
137
|
+
specification_version: 4
|
138
|
+
summary: A mail gem based validator for rails
|
139
|
+
test_files:
|
140
|
+
- spec/mail_validation/email_validator_spec.rb
|
141
|
+
has_rdoc:
|