fake_filter 0.0.5
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 +7 -0
- data/README.md +32 -0
- data/lib/data.json +1 -0
- data/lib/fake_filter.rb +23 -0
- metadata +46 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 54972f34a3ddb79c2ed94a874b06b1a778f3305c510bf5553e193f379158b644
|
4
|
+
data.tar.gz: a86921373a79054cd413e37066ba2d446d923542c5f6579b752e51d430cc3aa0
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: fb0fddde61135e878b41ba94c5cb48f55ad75ac37a4cbe9189df78627aeebf76b767fbf7da2d21080039038d86705e4ad36d666572fc8397825faabe507cc930
|
7
|
+
data.tar.gz: 39c81f47f4601c8e3dc8c2617808f0dc626af8cfe1132370b101e697179b5756ad95a0926464b5d22ba48bf9e5e9d5050f8d10b5cf0a7b60bdcf3db87f19fabc
|
data/README.md
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
# FAKEFILTER
|
2
|
+
## _To filter disposable email_
|
3
|
+
|
4
|
+
##### fake_filter is made by reference of fakefilter node module
|
5
|
+
Reference: https://github.com/7c/fakefilter
|
6
|
+
|
7
|
+
|
8
|
+
## Installation
|
9
|
+
|
10
|
+
add your gemfile
|
11
|
+
|
12
|
+
```sh
|
13
|
+
gem 'fake_filter'
|
14
|
+
```
|
15
|
+
|
16
|
+
For production environments...
|
17
|
+
|
18
|
+
# Usage
|
19
|
+
|
20
|
+
|
21
|
+
### Check Disposable email
|
22
|
+
```sh
|
23
|
+
FakeFilter.is_disposable_eamil?('user@example.com')
|
24
|
+
```
|
25
|
+
|
26
|
+
### Get Disposable emails list as json
|
27
|
+
|
28
|
+
```sh
|
29
|
+
FakeFilter.email_data
|
30
|
+
```
|
31
|
+
|
32
|
+
|