valid_email2 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 47c9a632e7366f69dce75eb727db1de39a5e3fc3
4
- data.tar.gz: 46515df8af73b701e3d7aa07f0e0aa0978bbe25b
3
+ metadata.gz: 8f47956bfce6f19b06038b178354030dbd54fecb
4
+ data.tar.gz: 24d01788b55185a732f3c1d72574ef4f00a98340
5
5
  SHA512:
6
- metadata.gz: 7216249244329396469e769a6c369446f107af2d0ac52e21e6639a0e3411e5778d5f694ec2b990d304f361705f5c6a9f53bd16083021e337af8f1a01dbcd1efb
7
- data.tar.gz: aacbf6ddd454fe15d081714dee7cbcad1aacc779b514c13fc783265877f7196107110e31a5d0220d36ca435738a038d194659ad923bb6f95cbabfc7ee237b964
6
+ metadata.gz: d9fbe5232c9ab316e58647529ee7c12522d463e5be96ce04908f63736159f6e4e6c9a7cfc291d145919dfe6529ac5ebef6ef2561a18de4e7655d420a08af18fe
7
+ data.tar.gz: 216b24a213667dbe79634a8e29fdc711076913c29fdb64937b2ef3bb4aa465302885613e5cd64cb531c58fdf3fb3021ed4dbc3d3d0a294353e0e9afc8ea17ae7
data/.travis.yml CHANGED
@@ -4,16 +4,8 @@ rvm:
4
4
  - 2.1.0
5
5
  - 2.0.0
6
6
  - 1.9.3
7
- - 1.9.2
8
7
  - jruby-19mode
9
- - jruby-20mode
10
- - rbx-2.1.1
11
8
 
12
9
  gemfile:
13
10
  - gemfiles/activemodel3.gemfile
14
11
  - gemfiles/activemodel4.gemfile
15
-
16
- matrix:
17
- exclude:
18
- - rvm: 1.9.2
19
- gemfile: gemfiles/activemodel4.gemfile
data/CHANGELOG.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## Version 1.1.1
2
+ Added more disposable emails (https://github.com/lisinge/valid_email2/pull/9 and https://github.com/lisinge/valid_email2/pull/10)
3
+
1
4
  ## Version 1.1.0
2
5
  Added support to locally blacklist emails
3
6
 
data/README.md CHANGED
@@ -1,10 +1,6 @@
1
1
  # ValidEmail2
2
2
  [![Build Status](https://travis-ci.org/lisinge/valid_email2.png?branch=master)](https://travis-ci.org/lisinge/valid_email2)
3
3
  [![Gem Version](https://badge.fury.io/rb/valid_email2.png)](http://badge.fury.io/rb/valid_email2)
4
- [![Coverage Status](https://coveralls.io/repos/lisinge/valid_email2/badge.png)](https://coveralls.io/r/lisinge/valid_email2)
5
- [![Code Climate](https://codeclimate.com/github/lisinge/valid_email2.png)](https://codeclimate.com/github/lisinge/valid_email2)
6
- [![Dependency Status](https://gemnasium.com/lisinge/valid_email2.png)](https://gemnasium.com/lisinge/valid_email2)
7
- [![Stories in Ready](https://badge.waffle.io/lisinge/valid_email2.png)](http://waffle.io/lisinge/valid_email2)
8
4
 
9
5
  Validate emails with the help of the `mail` gem instead of some clunky regexp.
10
6
  Aditionally validate that the domain has a MX record.
@@ -92,13 +88,11 @@ end
92
88
 
93
89
  ## Requirements
94
90
 
95
- This gem requires Rails 3.2 or 4.0. It is tested against both versions under:
91
+ This gem requires Rails 3.2 or 4.0. It is tested against both versions using:
96
92
  * Ruby-1.9
97
93
  * Ruby-2.0
98
94
  * Ruby-2.1
99
95
  * JRuby-1.9
100
- * JRuby-2.0
101
- * Rubinius-2.1
102
96
 
103
97
  ## Contributing
104
98
 
@@ -1,3 +1,3 @@
1
1
  module ValidEmail2
2
- VERSION = "1.1.0"
2
+ VERSION = "1.1.1"
3
3
  end
data/spec/spec_helper.rb CHANGED
@@ -1,6 +1,4 @@
1
1
  $:.unshift File.expand_path("../lib",__FILE__)
2
- require "coveralls"
3
- Coveralls.wear!
4
2
  require "valid_email2"
5
3
 
6
4
  class TestModel
data/valid_email2.gemspec CHANGED
@@ -18,10 +18,11 @@ Gem::Specification.new do |spec|
18
18
  spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
19
  spec.require_paths = ["lib"]
20
20
 
21
+ spec.required_ruby_version = ">= 1.9.3"
22
+
21
23
  spec.add_development_dependency "bundler", "~> 1.3"
22
24
  spec.add_development_dependency "rake"
23
25
  spec.add_development_dependency "rspec", "~> 2.14.1"
24
- spec.add_development_dependency "coveralls"
25
- spec.add_runtime_dependency "mail", '~> 2.5.4'
26
- spec.add_runtime_dependency "activemodel"
26
+ spec.add_runtime_dependency "mail", "~> 2.5.4"
27
+ spec.add_runtime_dependency "activemodel", ">= 3.2"
27
28
  end
@@ -89,10 +89,12 @@
89
89
  - dodgeit.com
90
90
  - dodgit.com
91
91
  - dodgit.org
92
+ - doiea.com
92
93
  - donemail.ru
93
94
  - dontreg.com
94
95
  - dontsendmespam.de
95
96
  - drdrb.com
97
+ - drdrb.net
96
98
  - dump-email.info
97
99
  - dumpandjunk.com
98
100
  - dumpmail.de
@@ -117,6 +119,7 @@
117
119
  - etranquil.com
118
120
  - etranquil.net
119
121
  - etranquil.org
122
+ - evopo.com
120
123
  - explodemail.com
121
124
  - fakeinbox.com
122
125
  - fakeinformation.com
@@ -180,6 +183,7 @@
180
183
  - hulapla.de
181
184
  - ieatspam.eu
182
185
  - ieatspam.info
186
+ - ieh-mail.de
183
187
  - ihateyoualot.info
184
188
  - iheartspam.org
185
189
  - imails.info
@@ -236,14 +240,15 @@
236
240
  - maildrop.cc
237
241
  - maileater.com
238
242
  - mailexpire.com
239
- - mailfreeonline.com
240
243
  - mailforspam.com
244
+ - mailfreeonline.com
241
245
  - mailin8r.com
242
246
  - mailinater.com
243
247
  - mailinator.com
244
248
  - mailinator.net
245
249
  - mailinator2.com
246
250
  - mailincubator.com
251
+ - mailismagic.com
247
252
  - mailme.ir
248
253
  - mailme.lv
249
254
  - mailmetrash.com
@@ -254,6 +259,7 @@
254
259
  - mailshell.com
255
260
  - mailsiphon.com
256
261
  - mailslite.com
262
+ - mailtemp.info
257
263
  - mailzilla.com
258
264
  - mailzilla.org
259
265
  - mbx.cc
@@ -271,6 +277,7 @@
271
277
  - msb.minsmail.com
272
278
  - mt2009.com
273
279
  - mx0.wwwnew.eu
280
+ - my10minutemail.com
274
281
  - mycleaninbox.net
275
282
  - mypartyclip.de
276
283
  - myphantomemail.com
@@ -310,6 +317,7 @@
310
317
  - onewaymail.com
311
318
  - online.ms
312
319
  - oopi.org
320
+ - opayq.com
313
321
  - ordinaryamerican.net
314
322
  - otherinbox.com
315
323
  - ourklips.com
@@ -441,6 +449,7 @@
441
449
  - throwawayemailaddress.com
442
450
  - tilien.com
443
451
  - tmailinator.com
452
+ - toiea.com
444
453
  - tradermail.info
445
454
  - trash-amil.com
446
455
  - trash-mail.at
@@ -458,6 +467,7 @@
458
467
  - trashmailer.com
459
468
  - trashymail.com
460
469
  - trashymail.net
470
+ - trbvm.com
461
471
  - trillianpro.com
462
472
  - turual.com
463
473
  - twinmail.de
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: valid_email2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Micke Lisinge
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-02-20 00:00:00.000000000 Z
11
+ date: 2014-08-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -52,20 +52,6 @@ dependencies:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
54
  version: 2.14.1
55
- - !ruby/object:Gem::Dependency
56
- name: coveralls
57
- requirement: !ruby/object:Gem::Requirement
58
- requirements:
59
- - - ">="
60
- - !ruby/object:Gem::Version
61
- version: '0'
62
- type: :development
63
- prerelease: false
64
- version_requirements: !ruby/object:Gem::Requirement
65
- requirements:
66
- - - ">="
67
- - !ruby/object:Gem::Version
68
- version: '0'
69
55
  - !ruby/object:Gem::Dependency
70
56
  name: mail
71
57
  requirement: !ruby/object:Gem::Requirement
@@ -86,14 +72,14 @@ dependencies:
86
72
  requirements:
87
73
  - - ">="
88
74
  - !ruby/object:Gem::Version
89
- version: '0'
75
+ version: '3.2'
90
76
  type: :runtime
91
77
  prerelease: false
92
78
  version_requirements: !ruby/object:Gem::Requirement
93
79
  requirements:
94
80
  - - ">="
95
81
  - !ruby/object:Gem::Version
96
- version: '0'
82
+ version: '3.2'
97
83
  description: ActiveModel validation for email. Including MX lookup and disposable
98
84
  email blacklist
99
85
  email:
@@ -132,7 +118,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
132
118
  requirements:
133
119
  - - ">="
134
120
  - !ruby/object:Gem::Version
135
- version: '0'
121
+ version: 1.9.3
136
122
  required_rubygems_version: !ruby/object:Gem::Requirement
137
123
  requirements:
138
124
  - - ">="
@@ -140,7 +126,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
140
126
  version: '0'
141
127
  requirements: []
142
128
  rubyforge_project:
143
- rubygems_version: 2.2.1
129
+ rubygems_version: 2.2.2
144
130
  signing_key:
145
131
  specification_version: 4
146
132
  summary: ActiveModel validation for email. Including MX lookup and disposable email