disposable_mail 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2cd82e802df31f895cf346115e01d7f06be4bb44
4
- data.tar.gz: adb73e51344649feb77a341987ed7c9a41dae0d6
3
+ metadata.gz: 821c219cd55c335309e0a870d343ce223da868fa
4
+ data.tar.gz: f8fbc311d35d4a4fad3cf0a87594f2151b593cc6
5
5
  SHA512:
6
- metadata.gz: c6a941ae6aec898507e0bc0684f08acd06e07001c9f8e7d3ce3d2cfe6c88552b363f81cd3a3850071c134403020cc1c13b59a822d85a7ca783dc45fe4e79159f
7
- data.tar.gz: 20d5cdae96f44fc730d7011e3b7b9d2686ed9af24c1166dff37482f48133b750083a965b492120abea2f36402fed5e30e3de0c808245c598da4c34d7fab03b29
6
+ metadata.gz: 5e402d3a440f98ad70f984acf3b0e0b375f462ebad8005bff2a3b280b071b31b53b1bf258eacee5fccc40a7ee537b0cf9c3abc8c65e24e82fe11d6d61aca182b
7
+ data.tar.gz: 2e6df6b7a95d2ddbc268494430df6d226472c683d1abd9adc7f02fce32ee04076a039d0c5aa3be6d744ef9c86e0e770e880c368f4546b382966d0dbd8d6189fb
data/.gitignore CHANGED
@@ -11,4 +11,5 @@
11
11
  *.so
12
12
  *.o
13
13
  *.a
14
+ *.gem
14
15
  mkmf.log
data/LICENSE.txt CHANGED
@@ -1,4 +1,4 @@
1
- Copyright (c) 2015 oesgalha
1
+ Copyright (c) 2015 Oscar Esgalha
2
2
 
3
3
  MIT License
4
4
 
data/README.md CHANGED
@@ -14,7 +14,7 @@ And this gem syncs with it through a git submodule (see the data folder).
14
14
  Add this line to your application's Gemfile:
15
15
 
16
16
  ```ruby
17
- gem 'disposable_mail', github: 'oesgalha/disposable_mail', submodules: true
17
+ gem 'disposable_mail', '~> 0.1.0'
18
18
  ```
19
19
 
20
20
  (Notice: The `submodules: true` option is important! The data from this gem comes from a git submodule and without it, it won't work properly)
@@ -59,8 +59,6 @@ module DisposableMail
59
59
  "anonbox.net",
60
60
  "anonymail.dk",
61
61
  "anonymbox.com",
62
- "antichef.com",
63
- "antichef.net",
64
62
  "antispam.de",
65
63
  "armyspy.com",
66
64
  "azmeil.tk",
@@ -136,7 +134,6 @@ module DisposableMail
136
134
  "despam.it",
137
135
  "despammed.com",
138
136
  "devnullmail.com",
139
- "dfgh.net",
140
137
  "digitalsanctuary.com",
141
138
  "dingbone.com",
142
139
  "discard.email",
@@ -454,7 +451,6 @@ module DisposableMail
454
451
  "netmails.com",
455
452
  "netmails.net",
456
453
  "netzidiot.de",
457
- "neverbox.com",
458
454
  "nice-4u.com",
459
455
  "nobulk.com",
460
456
  "noclickemail.com",
@@ -518,7 +514,6 @@ module DisposableMail
518
514
  "rcpt.at",
519
515
  "reallymymail.com",
520
516
  "recode.me",
521
- "recursor.net",
522
517
  "recyclemail.dk",
523
518
  "regbypass.com",
524
519
  "regbypass.comsafe-mail.net",
@@ -576,8 +571,6 @@ module DisposableMail
576
571
  "spambox.info",
577
572
  "spambox.irishspringrealty.com",
578
573
  "spambox.us",
579
- "spamcannon.com",
580
- "spamcannon.net",
581
574
  "spamcero.com",
582
575
  "spamcon.org",
583
576
  "spamcorptastic.com",
@@ -594,9 +587,6 @@ module DisposableMail
594
587
  "spamfree24.org",
595
588
  "spamfree.eu",
596
589
  "spamgoes.in",
597
- "spamgourmet.com",
598
- "spamgourmet.net",
599
- "spamgourmet.org",
600
590
  "SpamHereLots.com",
601
591
  "SpamHerePlease.com",
602
592
  "spamhole.com",
@@ -748,7 +738,6 @@ module DisposableMail
748
738
  "xemaps.com",
749
739
  "xents.com",
750
740
  "xmaily.com",
751
- "xoxy.net",
752
741
  "xyzfree.net",
753
742
  "yahoo.com.ph",
754
743
  "yahoo.com.vn",
@@ -1,3 +1,3 @@
1
1
  module DisposableMail
2
- VERSION = '0.1.0'
2
+ VERSION = '0.1.1'
3
3
  end
@@ -14,7 +14,7 @@ class TestDisposableMail < MiniTest::Test
14
14
  def test_include
15
15
  assert DisposableMail.include? "bot@mailinator.com"
16
16
  assert DisposableMail.include? "fake@guerillamail.com"
17
- assert DisposableMail.include? "johndoe@spamgourmet.com"
17
+ assert DisposableMail.include? "johndoe@trashmail.com"
18
18
 
19
19
  refute DisposableMail.include? "legit-person@yahoo.com"
20
20
  refute DisposableMail.include? "someone@gmail.com"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: disposable_mail
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oscar Esgalha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-08-03 00:00:00.000000000 Z
11
+ date: 2015-08-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler