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 +4 -4
- data/CHANGELOG.md +31 -0
- data/README.md +0 -28
- data/lib/disposable_mail/disposable.rb +1 -0
- data/lib/disposable_mail/version.rb +1 -1
- data/test/disposable_mail_tests.rb +1 -0
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: da069deb3cecff7e2c71fc30ad2f40c718273266
|
4
|
+
data.tar.gz: f9c98811d809b01c543a0fe25bc9a74ac5d56f0a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
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.
|
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:
|
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
|