guessmail 0.1.2 → 0.2.0
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 +5 -5
- data/.ruby-version +1 -1
- data/.travis.yml +1 -2
- data/Gemfile +2 -0
- data/README.md +89 -11
- data/Rakefile +5 -3
- data/bin/console +4 -3
- data/bin/guessmail +29 -26
- data/guessmail.gemspec +14 -13
- data/lib/guessmail.rb +22 -2
- data/lib/guessmail/version.rb +3 -1
- data/lib/templates.rb +129 -43
- metadata +20 -22
- data/lib/extravagant.rb +0 -85
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f7041404bbe3148a627657032369cc85597a2bc8e3d5da136f4ff25817342264
|
4
|
+
data.tar.gz: d54bdede9cb09a338ca2201e339c536fb10b57da2a8527054d7ca399768532f0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 92464606a90556f4f62acf8b315f494f7bf02b2e004e52db1af35879c8786e5b55411a67dbd177b805f1a862233158ca6c2697d52324e0177e0146a07ad5ae37
|
7
|
+
data.tar.gz: 07f112483e771eea0e72e4b25d6429a1ff0a87396a21e10f320a691a278a9f77781be91f155f0eb22d9ea823533b77441e90831290cdb18d45a553d498c5b74d
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
ruby-2.
|
1
|
+
ruby-2.7.1
|
data/.travis.yml
CHANGED
data/Gemfile
CHANGED
data/README.md
CHANGED
@@ -1,8 +1,65 @@
|
|
1
|
-
# Guessmail
|
1
|
+
# Guessmail 💌
|
2
2
|
|
3
|
-
|
3
|
+
[](https://travis-ci.org/krmbzds/guessmail)
|
4
|
+
[](https://rubygems.org/gems/guessmail)
|
5
|
+
[](https://rubygems.org/gems/guessmail)
|
4
6
|
|
5
|
-
|
7
|
+
[**guessmail**][Guessmail] helps you find possible email addresses of a person.
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
```
|
12
|
+
Usage: guessmail [-e] [-l LANGUAGE] first [middle] last domain
|
13
|
+
-e, --extended Include less common email combinations
|
14
|
+
-l, --language LANGUAGE Set language
|
15
|
+
-h, --help Shows help message
|
16
|
+
-v, --version Shows version
|
17
|
+
```
|
18
|
+
|
19
|
+
## Examples
|
20
|
+
|
21
|
+
Let's say you want to find the email address of Bill Gates.
|
22
|
+
|
23
|
+
```sh
|
24
|
+
$ guessmail Bill Gates microsoft.com
|
25
|
+
```
|
26
|
+
|
27
|
+
This will return you a set of possible emails:
|
28
|
+
|
29
|
+
```
|
30
|
+
bill@microsoft.com
|
31
|
+
gates@microsoft.com
|
32
|
+
billgates@microsoft.com
|
33
|
+
bill.gates@microsoft.com
|
34
|
+
bgates@microsoft.com
|
35
|
+
b.gates@microsoft.com
|
36
|
+
billg@microsoft.com <-- This is the actual email address
|
37
|
+
bill.g@microsoft.com
|
38
|
+
bg@microsoft.com
|
39
|
+
b.g@microsoft.com
|
40
|
+
gatesbill@microsoft.com
|
41
|
+
gates.bill@microsoft.com
|
42
|
+
gatesb@microsoft.com
|
43
|
+
gates.b@microsoft.com
|
44
|
+
gbill@microsoft.com
|
45
|
+
g.bill@microsoft.com
|
46
|
+
gb@microsoft.com
|
47
|
+
g.b@microsoft.com
|
48
|
+
```
|
49
|
+
|
50
|
+
You can then use an email verifier service or use other methods to find out which one of these email addresses belong to the person you are searching for.
|
51
|
+
|
52
|
+
[guessmail][Guessmail] can transliterate non-ASCII input since it uses [tate][tate] under the hood. Try it out!
|
53
|
+
|
54
|
+
```sh
|
55
|
+
guessmail Игорь Богданов lex.bg -el bg
|
56
|
+
guessmail Günter Außem gmx.de --language de
|
57
|
+
guessmail Yukihiro Matz Matsumoto ruby-lang.org
|
58
|
+
```
|
59
|
+
|
60
|
+
## Is it any good?
|
61
|
+
|
62
|
+
Yes.
|
6
63
|
|
7
64
|
## Installation
|
8
65
|
|
@@ -14,23 +71,44 @@ gem 'guessmail'
|
|
14
71
|
|
15
72
|
And then execute:
|
16
73
|
|
17
|
-
|
74
|
+
```sh
|
75
|
+
$ bundle
|
76
|
+
```
|
18
77
|
|
19
78
|
Or install it yourself as:
|
20
79
|
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
TODO: Write usage instructions here
|
80
|
+
```sh
|
81
|
+
$ gem install guessmail
|
82
|
+
```
|
26
83
|
|
27
84
|
## Development
|
28
85
|
|
29
86
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
|
30
87
|
|
31
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org]
|
88
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org][RubyGems].
|
32
89
|
|
33
90
|
## Contributing
|
34
91
|
|
35
|
-
|
92
|
+
1. [Fork the repository][Fork]
|
93
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
94
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
95
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
96
|
+
5. Create a new Pull Request
|
97
|
+
|
98
|
+
### Donations ❤️
|
99
|
+
|
100
|
+
You can donate me at [Liberapay][Donation]. Thanks! ☕️
|
101
|
+
|
102
|
+
## License
|
103
|
+
|
104
|
+
Copyright © 2016-2020 [Kerem Bozdas][Personal Webpage]
|
105
|
+
|
106
|
+
This project is available under the terms of the [MIT License][License].
|
36
107
|
|
108
|
+
[Donation]: https://liberapay.com/krmbzds/donate
|
109
|
+
[Fork]: https://github.com/krmbzds/guessmail/fork
|
110
|
+
[Guessmail]: https://github.com/krmbzds/guessmail
|
111
|
+
[License]: http://kerem.mit-license.org
|
112
|
+
[Personal Webpage]: http://kerembozdas.com
|
113
|
+
[RubyGems]: https://rubygems.org
|
114
|
+
[Tate]: https://github.com/krmbzds/tate
|
data/Rakefile
CHANGED
data/bin/console
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
+
# frozen_string_literal: true
|
2
3
|
|
3
|
-
require
|
4
|
-
require
|
4
|
+
require 'bundler/setup'
|
5
|
+
require 'guessmail'
|
5
6
|
|
6
7
|
# You can add fixtures and/or initialization code here to make experimenting
|
7
8
|
# with your gem easier. You can also use a different console, if you like.
|
@@ -10,5 +11,5 @@ require "guessmail"
|
|
10
11
|
# require "pry"
|
11
12
|
# Pry.start
|
12
13
|
|
13
|
-
require
|
14
|
+
require 'irb'
|
14
15
|
IRB.start
|
data/bin/guessmail
CHANGED
@@ -1,38 +1,41 @@
|
|
1
1
|
#!/usr/bin/env ruby
|
2
|
-
#
|
2
|
+
# frozen_string_literal: true
|
3
3
|
|
4
4
|
lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
|
5
5
|
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
|
6
6
|
|
7
|
-
require '
|
8
|
-
require '
|
7
|
+
require 'guessmail'
|
8
|
+
require 'optparse'
|
9
9
|
|
10
|
-
|
11
|
-
Usage: guessmail first [middle] last domain
|
10
|
+
options = {}
|
12
11
|
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
12
|
+
option_parser = OptionParser.new do |opts|
|
13
|
+
opts.banner = 'Usage: guessmail [-e] [-l LANGUAGE] first [middle] last domain'
|
14
|
+
opts.on('-e', '--extended', 'Include less common email combinations') do
|
15
|
+
options[:extended] = true
|
16
|
+
end
|
17
|
+
opts.on('-l LANGUAGE', '--language LANGUAGE', String, 'Set language') do |language|
|
18
|
+
options[:language] = language
|
19
|
+
end
|
20
|
+
opts.on('-h', '--help', 'Shows help message') do
|
21
|
+
options[:help] = opts.help
|
22
|
+
end
|
23
|
+
opts.on('-v', '--version', 'Shows version') do
|
24
|
+
options[:version] = Guessmail::VERSION
|
25
|
+
end
|
26
|
+
end
|
18
27
|
|
19
|
-
|
20
|
-
args = ARGV.map { |x| Tate.transliterate(x.downcase) } # tate'd
|
28
|
+
option_parser.parse!
|
21
29
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
fn, mn, ln = args.values_at(0, 1, 2)
|
30
|
-
fi, mi, li = fn[0], mn[0], ln[0]
|
31
|
-
dn = args[3]
|
32
|
-
STDOUT.write $FML % {fn: fn, mn: mn, ln: ln, fi: fi, mi: mi, li: li, dn: dn}
|
30
|
+
result =
|
31
|
+
if options[:help]
|
32
|
+
options[:help]
|
33
|
+
elsif options[:version]
|
34
|
+
options[:version]
|
35
|
+
elsif [3, 4].include? ARGV.size
|
36
|
+
Guessmail.guess(ARGV, options)
|
33
37
|
else
|
34
|
-
|
38
|
+
option_parser.help
|
35
39
|
end
|
36
|
-
end
|
37
40
|
|
38
|
-
|
41
|
+
STDOUT.write result
|
data/guessmail.gemspec
CHANGED
@@ -1,25 +1,26 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path('lib', __dir__)
|
3
4
|
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
5
|
require 'guessmail/version'
|
5
6
|
|
6
7
|
Gem::Specification.new do |spec|
|
7
|
-
spec.name =
|
8
|
+
spec.name = 'guessmail'
|
8
9
|
spec.version = Guessmail::VERSION
|
9
|
-
spec.authors = [
|
10
|
-
spec.email = [
|
10
|
+
spec.authors = ['Kerem Bozdas']
|
11
|
+
spec.email = ['krmbzds.github@gmail.com']
|
11
12
|
|
12
13
|
spec.summary = "Find anyone's email address"
|
13
14
|
spec.description = "Find anyone's email address"
|
14
|
-
spec.homepage =
|
15
|
+
spec.homepage = 'https://github.com/krmbzds/guessmail'
|
15
16
|
|
16
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
17
|
-
spec.bindir =
|
18
|
-
spec.executables = [
|
19
|
-
spec.require_paths = [
|
18
|
+
spec.bindir = 'bin'
|
19
|
+
spec.executables = ['guessmail']
|
20
|
+
spec.require_paths = ['lib']
|
20
21
|
|
21
|
-
spec.add_runtime_dependency
|
22
|
-
spec.add_development_dependency
|
23
|
-
spec.add_development_dependency
|
24
|
-
spec.add_development_dependency
|
22
|
+
spec.add_runtime_dependency 'tate', '~> 1.6.0'
|
23
|
+
spec.add_development_dependency 'bundler'
|
24
|
+
spec.add_development_dependency 'rake'
|
25
|
+
spec.add_development_dependency 'rspec'
|
25
26
|
end
|
data/lib/guessmail.rb
CHANGED
@@ -1,5 +1,25 @@
|
|
1
|
-
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
lib = File.expand_path(File.dirname(__FILE__) + '/../lib')
|
4
|
+
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)
|
5
|
+
|
6
|
+
require 'guessmail/version'
|
7
|
+
require 'tate'
|
8
|
+
require 'templates'
|
2
9
|
|
3
10
|
module Guessmail
|
4
|
-
|
11
|
+
def self.guess(names, options)
|
12
|
+
names.map!(&:downcase)
|
13
|
+
|
14
|
+
dn = names.pop
|
15
|
+
fn = names.shift
|
16
|
+
ln = names.pop
|
17
|
+
mn = names.pop
|
18
|
+
|
19
|
+
params = { fn: fn, mn: mn, ln: ln, fi: fn[0], mi: (mn[0] if mn), li: ln[0], dn: dn }
|
20
|
+
template = options[:extended] ? (mn ? FMLE : FLE) : (mn ? FL : FML)
|
21
|
+
string = format(template, params)
|
22
|
+
|
23
|
+
Tate.transliterate(string, options[:language])
|
24
|
+
end
|
5
25
|
end
|
data/lib/guessmail/version.rb
CHANGED
data/lib/templates.rb
CHANGED
@@ -1,47 +1,133 @@
|
|
1
|
+
# frozen_string_literal: true
|
1
2
|
|
2
|
-
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
3
|
+
FL = "%<fn>s@%<dn>s
|
4
|
+
%<ln>s@%<dn>s
|
5
|
+
%<fn>s%<ln>s@%<dn>s
|
6
|
+
%<fn>s.%<ln>s@%<dn>s
|
7
|
+
%<fi>s%<ln>s@%<dn>s
|
8
|
+
%<fi>s.%<ln>s@%<dn>s
|
9
|
+
%<fn>s%<li>s@%<dn>s
|
10
|
+
%<fn>s.%<li>s@%<dn>s
|
11
|
+
%<fi>s%<li>s@%<dn>s
|
12
|
+
%<fi>s.%<li>s@%<dn>s
|
13
|
+
%<ln>s%<fn>s@%<dn>s
|
14
|
+
%<ln>s.%<fn>s@%<dn>s
|
15
|
+
%<ln>s%<fi>s@%<dn>s
|
16
|
+
%<ln>s.%<fi>s@%<dn>s
|
17
|
+
%<li>s%<fn>s@%<dn>s
|
18
|
+
%<li>s.%<fn>s@%<dn>s
|
19
|
+
%<li>s%<fi>s@%<dn>s
|
20
|
+
%<li>s.%<fi>s@%<dn>s
|
20
21
|
"
|
21
22
|
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
23
|
+
FML = "%<fn>s@%<dn>s
|
24
|
+
%<ln>s@%<dn>s
|
25
|
+
%<fn>s%<ln>s@%<dn>s
|
26
|
+
%<fn>s.%<ln>s@%<dn>s
|
27
|
+
%<fi>s%<ln>s@%<dn>s
|
28
|
+
%<fi>s.%<ln>s@%<dn>s
|
29
|
+
%<fn>s%<li>s@%<dn>s
|
30
|
+
%<fn>s.%<li>s@%<dn>s
|
31
|
+
%<fi>s%<li>s@%<dn>s
|
32
|
+
%<fi>s.%<li>s@%<dn>s
|
33
|
+
%<ln>s%<fn>s@%<dn>s
|
34
|
+
%<ln>s.%<fn>s@%<dn>s
|
35
|
+
%<ln>s%<fi>s@%<dn>s
|
36
|
+
%<ln>s.%<fi>s@%<dn>s
|
37
|
+
%<li>s%<fn>s@%<dn>s
|
38
|
+
%<li>s.%<fn>s@%<dn>s
|
39
|
+
%<li>s%<fi>s@%<dn>s
|
40
|
+
%<li>s.%<fi>s@%<dn>s
|
41
|
+
%<fi>s%<mi>s%<ln>s@%<dn>s
|
42
|
+
%<fi>s%<mi>s.%<ln>s@%<dn>s
|
43
|
+
%<fn>s%<mi>s%<ln>s@%<dn>s
|
44
|
+
%<fn>s.%<mi>s.%<ln>s@%<dn>s
|
45
|
+
%<fn>s%<mn>s%<ln>s@%<dn>s
|
46
|
+
%<fn>s.%<mn>s.%<ln>s@%<dn>s
|
47
|
+
%<mn>s@%<dn>s
|
48
|
+
"
|
49
|
+
|
50
|
+
FLE = "%<fn>s@%<dn>s
|
51
|
+
%<ln>s@%<dn>s
|
52
|
+
%<fn>s%<ln>s@%<dn>s
|
53
|
+
%<fn>s.%<ln>s@%<dn>s
|
54
|
+
%<fi>s%<ln>s@%<dn>s
|
55
|
+
%<fi>s.%<ln>s@%<dn>s
|
56
|
+
%<fn>s%<li>s@%<dn>s
|
57
|
+
%<fn>s.%<li>s@%<dn>s
|
58
|
+
%<fi>s%<li>s@%<dn>s
|
59
|
+
%<fi>s.%<li>s@%<dn>s
|
60
|
+
%<ln>s%<fn>s@%<dn>s
|
61
|
+
%<ln>s.%<fn>s@%<dn>s
|
62
|
+
%<ln>s%<fi>s@%<dn>s
|
63
|
+
%<ln>s.%<fi>s@%<dn>s
|
64
|
+
%<li>s%<fn>s@%<dn>s
|
65
|
+
%<li>s.%<fn>s@%<dn>s
|
66
|
+
%<li>s%<fi>s@%<dn>s
|
67
|
+
%<li>s.%<fi>s@%<dn>s
|
68
|
+
%<fn>s-%<ln>s@%<dn>s
|
69
|
+
%<fi>s-%<ln>s@%<dn>s
|
70
|
+
%<fn>s-%<li>s@%<dn>s
|
71
|
+
%<fi>s-%<li>s@%<dn>s
|
72
|
+
%<ln>s-%<fn>s@%<dn>s
|
73
|
+
%<ln>s-%<fi>s@%<dn>s
|
74
|
+
%<li>s-%<fn>s@%<dn>s
|
75
|
+
%<li>s-%<fi>s@%<dn>s
|
76
|
+
%<fn>s_%<ln>s@%<dn>s
|
77
|
+
%<fi>s_%<ln>s@%<dn>s
|
78
|
+
%<fn>s_%<li>s@%<dn>s
|
79
|
+
%<fi>s_%<li>s@%<dn>s
|
80
|
+
%<ln>s_%<fn>s@%<dn>s
|
81
|
+
%<ln>s_%<fi>s@%<dn>s
|
82
|
+
%<li>s_%<fn>s@%<dn>s
|
83
|
+
%<li>s_%<fi>s@%<dn>s
|
84
|
+
"
|
85
|
+
|
86
|
+
FMLE = "%<fn>s@%<dn>s
|
87
|
+
%<ln>s@%<dn>s
|
88
|
+
%<fn>s%<ln>s@%<dn>s
|
89
|
+
%<fn>s.%<ln>s@%<dn>s
|
90
|
+
%<fi>s%<ln>s@%<dn>s
|
91
|
+
%<fi>s.%<ln>s@%<dn>s
|
92
|
+
%<fn>s%<li>s@%<dn>s
|
93
|
+
%<fn>s.%<li>s@%<dn>s
|
94
|
+
%<fi>s%<li>s@%<dn>s
|
95
|
+
%<fi>s.%<li>s@%<dn>s
|
96
|
+
%<ln>s%<fn>s@%<dn>s
|
97
|
+
%<ln>s.%<fn>s@%<dn>s
|
98
|
+
%<ln>s%<fi>s@%<dn>s
|
99
|
+
%<ln>s.%<fi>s@%<dn>s
|
100
|
+
%<li>s%<fn>s@%<dn>s
|
101
|
+
%<li>s.%<fn>s@%<dn>s
|
102
|
+
%<li>s%<fi>s@%<dn>s
|
103
|
+
%<li>s.%<fi>s@%<dn>s
|
104
|
+
%<fi>s%<mi>s%<ln>s@%<dn>s
|
105
|
+
%<fi>s%<mi>s.%<ln>s@%<dn>s
|
106
|
+
%<fn>s%<mi>s%<ln>s@%<dn>s
|
107
|
+
%<fn>s.%<mi>s.%<ln>s@%<dn>s
|
108
|
+
%<fn>s%<mn>s%<ln>s@%<dn>s
|
109
|
+
%<fn>s.%<mn>s.%<ln>s@%<dn>s
|
110
|
+
%<fn>s-%<ln>s@%<dn>s
|
111
|
+
%<fi>s-%<ln>s@%<dn>s
|
112
|
+
%<fn>s-%<li>s@%<dn>s
|
113
|
+
%<fi>s-%<li>s@%<dn>s
|
114
|
+
%<ln>s-%<fn>s@%<dn>s
|
115
|
+
%<ln>s-%<fi>s@%<dn>s
|
116
|
+
%<li>s-%<fn>s@%<dn>s
|
117
|
+
%<li>s-%<fi>s@%<dn>s
|
118
|
+
%<fi>s%<mi>s-%<ln>s@%<dn>s
|
119
|
+
%<fn>s-%<mi>s-%<ln>s@%<dn>s
|
120
|
+
%<fn>s-%<mn>s-%<ln>s@%<dn>s
|
121
|
+
%<fn>s_%<ln>s@%<dn>s
|
122
|
+
%<fi>s_%<ln>s@%<dn>s
|
123
|
+
%<fn>s_%<li>s@%<dn>s
|
124
|
+
%<fi>s_%<li>s@%<dn>s
|
125
|
+
%<ln>s_%<fn>s@%<dn>s
|
126
|
+
%<ln>s_%<fi>s@%<dn>s
|
127
|
+
%<li>s_%<fn>s@%<dn>s
|
128
|
+
%<li>s_%<fi>s@%<dn>s
|
129
|
+
%<fi>s%<mi>s_%<ln>s@%<dn>s
|
130
|
+
%<fn>s_%<mi>s_%<ln>s@%<dn>s
|
131
|
+
%<fn>s_%<mn>s_%<ln>s@%<dn>s
|
132
|
+
%<mn>s@%<dn>s
|
47
133
|
"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guessmail
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Kerem Bozdas
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2020-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tate
|
@@ -16,56 +16,56 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version:
|
19
|
+
version: 1.6.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version:
|
26
|
+
version: 1.6.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
30
30
|
requirements:
|
31
|
-
- - "
|
31
|
+
- - ">="
|
32
32
|
- !ruby/object:Gem::Version
|
33
|
-
version: '
|
33
|
+
version: '0'
|
34
34
|
type: :development
|
35
35
|
prerelease: false
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
37
37
|
requirements:
|
38
|
-
- - "
|
38
|
+
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
|
-
version: '
|
40
|
+
version: '0'
|
41
41
|
- !ruby/object:Gem::Dependency
|
42
42
|
name: rake
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
44
44
|
requirements:
|
45
|
-
- - "
|
45
|
+
- - ">="
|
46
46
|
- !ruby/object:Gem::Version
|
47
|
-
version: '
|
47
|
+
version: '0'
|
48
48
|
type: :development
|
49
49
|
prerelease: false
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
51
51
|
requirements:
|
52
|
-
- - "
|
52
|
+
- - ">="
|
53
53
|
- !ruby/object:Gem::Version
|
54
|
-
version: '
|
54
|
+
version: '0'
|
55
55
|
- !ruby/object:Gem::Dependency
|
56
56
|
name: rspec
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - ">="
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version: '
|
61
|
+
version: '0'
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - ">="
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version: '
|
68
|
+
version: '0'
|
69
69
|
description: Find anyone's email address
|
70
70
|
email:
|
71
71
|
- krmbzds.github@gmail.com
|
@@ -86,14 +86,13 @@ files:
|
|
86
86
|
- bin/guessmail
|
87
87
|
- bin/setup
|
88
88
|
- guessmail.gemspec
|
89
|
-
- lib/extravagant.rb
|
90
89
|
- lib/guessmail.rb
|
91
90
|
- lib/guessmail/version.rb
|
92
91
|
- lib/templates.rb
|
93
92
|
homepage: https://github.com/krmbzds/guessmail
|
94
93
|
licenses: []
|
95
94
|
metadata: {}
|
96
|
-
post_install_message:
|
95
|
+
post_install_message:
|
97
96
|
rdoc_options: []
|
98
97
|
require_paths:
|
99
98
|
- lib
|
@@ -108,9 +107,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
107
|
- !ruby/object:Gem::Version
|
109
108
|
version: '0'
|
110
109
|
requirements: []
|
111
|
-
|
112
|
-
|
113
|
-
signing_key:
|
110
|
+
rubygems_version: 3.1.2
|
111
|
+
signing_key:
|
114
112
|
specification_version: 4
|
115
113
|
summary: Find anyone's email address
|
116
114
|
test_files: []
|
data/lib/extravagant.rb
DELETED
@@ -1,85 +0,0 @@
|
|
1
|
-
|
2
|
-
$FL = "%{fn}@%{dn}
|
3
|
-
%{ln}@%{dn}
|
4
|
-
%{fn}%{ln}@%{dn}
|
5
|
-
%{fn}.%{ln}@%{dn}
|
6
|
-
%{fi}%{ln}@%{dn}
|
7
|
-
%{fi}.%{ln}@%{dn}
|
8
|
-
%{fn}%{li}@%{dn}
|
9
|
-
%{fn}.%{li}@%{dn}
|
10
|
-
%{fi}%{li}@%{dn}
|
11
|
-
%{fi}.%{li}@%{dn}
|
12
|
-
%{ln}%{fn}@%{dn}
|
13
|
-
%{ln}.%{fn}@%{dn}
|
14
|
-
%{ln}%{fi}@%{dn}
|
15
|
-
%{ln}.%{fi}@%{dn}
|
16
|
-
%{li}%{fn}@%{dn}
|
17
|
-
%{li}.%{fn}@%{dn}
|
18
|
-
%{li}%{fi}@%{dn}
|
19
|
-
%{li}.%{fi}@%{dn}
|
20
|
-
%{fn}-%{ln}@%{dn}
|
21
|
-
%{fi}-%{ln}@%{dn}
|
22
|
-
%{fn}-%{li}@%{dn}
|
23
|
-
%{fi}-%{li}@%{dn}
|
24
|
-
%{ln}-%{fn}@%{dn}
|
25
|
-
%{ln}-%{fi}@%{dn}
|
26
|
-
%{li}-%{fn}@%{dn}
|
27
|
-
%{li}-%{fi}@%{dn}
|
28
|
-
%{fn}_%{ln}@%{dn}
|
29
|
-
%{fi}_%{ln}@%{dn}
|
30
|
-
%{fn}_%{li}@%{dn}
|
31
|
-
%{fi}_%{li}@%{dn}
|
32
|
-
%{ln}_%{fn}@%{dn}
|
33
|
-
%{ln}_%{fi}@%{dn}
|
34
|
-
%{li}_%{fn}@%{dn}
|
35
|
-
%{li}_%{fi}@%{dn}
|
36
|
-
"
|
37
|
-
|
38
|
-
$FML = "%{fn}@%{dn}
|
39
|
-
%{ln}@%{dn}
|
40
|
-
%{fn}%{ln}@%{dn}
|
41
|
-
%{fn}.%{ln}@%{dn}
|
42
|
-
%{fi}%{ln}@%{dn}
|
43
|
-
%{fi}.%{ln}@%{dn}
|
44
|
-
%{fn}%{li}@%{dn}
|
45
|
-
%{fn}.%{li}@%{dn}
|
46
|
-
%{fi}%{li}@%{dn}
|
47
|
-
%{fi}.%{li}@%{dn}
|
48
|
-
%{ln}%{fn}@%{dn}
|
49
|
-
%{ln}.%{fn}@%{dn}
|
50
|
-
%{ln}%{fi}@%{dn}
|
51
|
-
%{ln}.%{fi}@%{dn}
|
52
|
-
%{li}%{fn}@%{dn}
|
53
|
-
%{li}.%{fn}@%{dn}
|
54
|
-
%{li}%{fi}@%{dn}
|
55
|
-
%{li}.%{fi}@%{dn}
|
56
|
-
%{fi}%{mi}%{ln}@%{dn}
|
57
|
-
%{fi}%{mi}.%{ln}@%{dn}
|
58
|
-
%{fn}%{mi}%{ln}@%{dn}
|
59
|
-
%{fn}.%{mi}.%{ln}@%{dn}
|
60
|
-
%{fn}%{mn}%{ln}@%{dn}
|
61
|
-
%{fn}.%{mn}.%{ln}@%{dn}
|
62
|
-
%{fn}-%{ln}@%{dn}
|
63
|
-
%{fi}-%{ln}@%{dn}
|
64
|
-
%{fn}-%{li}@%{dn}
|
65
|
-
%{fi}-%{li}@%{dn}
|
66
|
-
%{ln}-%{fn}@%{dn}
|
67
|
-
%{ln}-%{fi}@%{dn}
|
68
|
-
%{li}-%{fn}@%{dn}
|
69
|
-
%{li}-%{fi}@%{dn}
|
70
|
-
%{fi}%{mi}-%{ln}@%{dn}
|
71
|
-
%{fn}-%{mi}-%{ln}@%{dn}
|
72
|
-
%{fn}-%{mn}-%{ln}@%{dn}
|
73
|
-
%{fn}_%{ln}@%{dn}
|
74
|
-
%{fi}_%{ln}@%{dn}
|
75
|
-
%{fn}_%{li}@%{dn}
|
76
|
-
%{fi}_%{li}@%{dn}
|
77
|
-
%{ln}_%{fn}@%{dn}
|
78
|
-
%{ln}_%{fi}@%{dn}
|
79
|
-
%{li}_%{fn}@%{dn}
|
80
|
-
%{li}_%{fi}@%{dn}
|
81
|
-
%{fi}%{mi}_%{ln}@%{dn}
|
82
|
-
%{fn}_%{mi}_%{ln}@%{dn}
|
83
|
-
%{fn}_%{mn}_%{ln}@%{dn}
|
84
|
-
%{mn}@%{dn}
|
85
|
-
"
|