ped 0.1.0 → 0.2.0

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
  SHA256:
3
- metadata.gz: d94d3b39ccc7bb6bd482b67e5fe5db1321837743545010ab7667822ca7909533
4
- data.tar.gz: 1714d0b305c57b3af42fcf3b3035c9a147a5dd5b89ec594116f87ccb057382e4
3
+ metadata.gz: aaefc4d9d10a54972e86ae20a13175438e48e442079d701984f4008a28d48d48
4
+ data.tar.gz: c04d0e1056805f466e14e57bac7988095060887f7b8ab8459e2ef42e54d9b879
5
5
  SHA512:
6
- metadata.gz: 47add42ab996e0902d1b45a7fd0b6967c555e183312323af993828fcb5d17afc8bd0ddbc306c4d8d1904fba6c3fd5e7ee4abcd5d951eeb4eb580689996b0401f
7
- data.tar.gz: 6de115dcf87c7cebbbdd3f9e4ecec3c99c1bbe592d8edf5975d733cbef026b210c8ba69ef07a3e94c0cd7c398ed5b26e336aaebeaed4f46efb8b0cd91403ee40
6
+ metadata.gz: 8147ae2be8ab064453cfc78bf77bc9d768d31334d201bd9c93d2b907e916657684ed01f89f1085095dde804f0285e41d05a2e59c44c073866637662a71787d81
7
+ data.tar.gz: bc35867f2ee3dacb2622b0ca4c84c652d7dc06562572db82b227ab9e58194e4efa98701f304c9b7ca7ca003a0dd9cf1553a684fa720ba481c7fb98feb128704d
data/.gitignore CHANGED
@@ -9,3 +9,4 @@
9
9
 
10
10
  # rspec failure tracking
11
11
  .rspec_status
12
+ *.gem
data/.idea/.gitignore ADDED
@@ -0,0 +1,10 @@
1
+ # Default ignored files
2
+ /shelf/
3
+ /workspace.xml
4
+ # Datasource local storage ignored files
5
+ /dataSources/
6
+ /dataSources.local.xml
7
+ # Editor-based HTTP Client requests
8
+ /httpRequests/
9
+ /vcs.xml
10
+ /misc.xml
data/README.md CHANGED
@@ -1,7 +1,9 @@
1
+ [![Gem Version](https://badge.fury.io/rb/ped.svg)](https://badge.fury.io/rb/ped)
2
+ [![Build Status](https://github.com/igor-alexandrov/ped/workflows/Build/badge.svg?branch=master)](https://github.com/igor-alexandrov/ped/actions)
3
+
1
4
  # PED
2
5
 
3
6
  PED – check you email domain over list of Public Email Domains.
4
- Based on data from this GIST [https://gist.github.com/tbrianjones/5992856](https://gist.github.com/tbrianjones/5992856).
5
7
 
6
8
  ## Installation
7
9
 
@@ -13,11 +15,15 @@ gem 'ped'
13
15
 
14
16
  And then execute:
15
17
 
18
+ ```bash
16
19
  $ bundle install
20
+ ```
17
21
 
18
22
  Or install it yourself as:
19
23
 
24
+ ```bash
20
25
  $ gem install ped
26
+ ```
21
27
 
22
28
  ## Usage
23
29