disposable_mail 0.1.5 → 0.1.6

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: ac731b227f16c80d8d5e539d5052c29c1d7be60a
4
- data.tar.gz: 8e7b03916808addb9c06988c57d0eb8be07c35f7
3
+ metadata.gz: da069deb3cecff7e2c71fc30ad2f40c718273266
4
+ data.tar.gz: f9c98811d809b01c543a0fe25bc9a74ac5d56f0a
5
5
  SHA512:
6
- metadata.gz: 346a1651ea65e8066868df0008ca695709be6ed7de64605c1959c0ddc323149bc656faaeb2d4dadb04aba0cfe9ab309f3db7383c9fb817af8e78b04132ad7f14
7
- data.tar.gz: db20c2183f08749ae6d1c1ea77da2d56e58738b5b5294f9f46d3a1d7bdcf70ab0109129e8a38ab7acee6aec0b553b74b80aee6940a4592bb0548871d0bab7d6c
6
+ metadata.gz: a561dcb50b3a6eb4df5eca3f3caf9a820b0d3de3346b08e20d1dc36f77d7e31b2834bd3947ff8a9099318cdf965431f19bcfe292cb5d1be734c0ebc304ab2a79
7
+ data.tar.gz: 7473a30515b245b51c6417772f6399af7215f2f45a197636e438cff8bf6bac4b1ea88d46fcf04bb452050c373133c85a4ddd2944c71dbab814b6e141cf073028
data/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ ## Changelog
2
+
3
+ ### 0.1.6 - 2017-03-02
4
+
5
+ * Do not raise an exception for a nil mail ([see #1](https://github.com/oesgalha/disposable_mail/pull/1), thanks @jan)
6
+
7
+ ### 0.1.5 - 2016-06-27
8
+
9
+ * Update blacklist
10
+
11
+ ### 0.1.4 - 2016-04-04
12
+
13
+ * Slightly faster `#include?`
14
+ * Update blacklist
15
+
16
+ ### 0.1.2 - 2015-11-03
17
+
18
+ * Update blacklist
19
+
20
+ ### 0.1.1 - 2015-08-13
21
+
22
+ * Update blacklist
23
+
24
+ ### 0.1.0 - 2015-08-03
25
+
26
+ * Remove IO to load the blacklist
27
+ * Update blacklist
28
+
29
+ ### 0.0.1 - 2015-07-21
30
+
31
+ * Initial version
data/README.md CHANGED
@@ -101,31 +101,3 @@ This gem comes with default messages for the following locales:
101
101
  3. Commit your changes (`git commit -am 'Add some feature'`)
102
102
  4. Push to the branch (`git push origin my-new-feature`)
103
103
  5. Create a new Pull Request
104
-
105
- ## Changelog
106
-
107
- ### 0.1.5 - 2016-06-27
108
-
109
- * Update blacklist
110
-
111
- ### 0.1.4 - 2016-04-04
112
-
113
- * Slightly faster `#include?`
114
- * Update blacklist
115
-
116
- ### 0.1.2 - 2015-11-03
117
-
118
- * Update blacklist
119
-
120
- ### 0.1.1 - 2015-08-13
121
-
122
- * Update blacklist
123
-
124
- ### 0.1.0 - 2015-08-03
125
-
126
- * Remove IO to load the blacklist
127
- * Update blacklist
128
-
129
- ### 0.0.1 - 2015-07-21
130
-
131
- * Initial version
@@ -2133,6 +2133,7 @@ module DisposableMail
2133
2133
 
2134
2134
  # Check if a mail is disposable (if it's domain is in the list)
2135
2135
  def include?(mail)
2136
+ return false if mail.nil?
2136
2137
  domain = mail[/@(.+)/, 1]
2137
2138
  list.bsearch { |d| domain <=> d }
2138
2139
  end
@@ -1,3 +1,3 @@
1
1
  module DisposableMail
2
- VERSION = '0.1.5'
2
+ VERSION = '0.1.6'
3
3
  end
@@ -21,5 +21,6 @@ class TestDisposableMail < MiniTest::Test
21
21
 
22
22
  refute DisposableMail.include? "legit-person@yahoo.com"
23
23
  refute DisposableMail.include? "someone@gmail.com"
24
+ refute DisposableMail.include? nil
24
25
  end
25
26
  end
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.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oscar Esgalha
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-06-27 00:00:00.000000000 Z
11
+ date: 2017-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -65,6 +65,7 @@ files:
65
65
  - ".gitignore"
66
66
  - ".gitmodules"
67
67
  - ".travis.yml"
68
+ - CHANGELOG.md
68
69
  - Gemfile
69
70
  - LICENSE.txt
70
71
  - README.md