guessmail 0.1.2 → 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
- SHA1:
3
- metadata.gz: eff22c909ff3254e8cd3f0b69131e51385eb77ec
4
- data.tar.gz: caaf6f8f7edb362ec058cc436be634cba8d91dcd
2
+ SHA256:
3
+ metadata.gz: f7041404bbe3148a627657032369cc85597a2bc8e3d5da136f4ff25817342264
4
+ data.tar.gz: d54bdede9cb09a338ca2201e339c536fb10b57da2a8527054d7ca399768532f0
5
5
  SHA512:
6
- metadata.gz: a25f66284e28516f448269db43a9ecfe17d8d9832110dcddb3a40a7a73f9c44b6ab901ebfd11366fbc06bf567efe6ae4932d209f70864b3fa820cb3c81516c27
7
- data.tar.gz: 949cc5216165f71541aab6d788a4e0323b1a48849b24a9eadb0b6915b4a27ba047e0284b1853fa8414d608c369cd2c11e80259792dfd0811e5c43f7ec685344e
6
+ metadata.gz: 92464606a90556f4f62acf8b315f494f7bf02b2e004e52db1af35879c8786e5b55411a67dbd177b805f1a862233158ca6c2697d52324e0177e0146a07ad5ae37
7
+ data.tar.gz: 07f112483e771eea0e72e4b25d6429a1ff0a87396a21e10f320a691a278a9f77781be91f155f0eb22d9ea823533b77441e90831290cdb18d45a553d498c5b74d
@@ -1 +1 @@
1
- ruby-2.3.0
1
+ ruby-2.7.1
@@ -1,4 +1,3 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.3
4
- before_install: gem install bundler -v 1.11.2
3
+ - 2.7.1
data/Gemfile CHANGED
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  source 'https://rubygems.org'
2
4
 
3
5
  # Specify your gem's dependencies in guessmail.gemspec
data/README.md CHANGED
@@ -1,8 +1,65 @@
1
- # Guessmail
1
+ # Guessmail 💌
2
2
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/guessmail`. To experiment with that code, run `bin/console` for an interactive prompt.
3
+ [![Travis](https://img.shields.io/travis/krmbzds/guessmail.svg)](https://travis-ci.org/krmbzds/guessmail)
4
+ [![Gem](https://img.shields.io/gem/dt/guessmail.svg)](https://rubygems.org/gems/guessmail)
5
+ [![Gem](https://img.shields.io/gem/v/guessmail.svg)](https://rubygems.org/gems/guessmail)
4
6
 
5
- TODO: Delete this and the text above, and describe your gem
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
- $ bundle
74
+ ```sh
75
+ $ bundle
76
+ ```
18
77
 
19
78
  Or install it yourself as:
20
79
 
21
- $ gem install guessmail
22
-
23
- ## Usage
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](https://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
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/guessmail.
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
@@ -1,6 +1,8 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
1
+ # frozen_string_literal: true
2
+
3
+ require 'bundler/gem_tasks'
4
+ require 'rspec/core/rake_task'
3
5
 
4
6
  RSpec::Core::RakeTask.new(:spec)
5
7
 
6
- task :default => :spec
8
+ task default: :spec
@@ -1,7 +1,8 @@
1
1
  #!/usr/bin/env ruby
2
+ # frozen_string_literal: true
2
3
 
3
- require "bundler/setup"
4
- require "guessmail"
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 "irb"
14
+ require 'irb'
14
15
  IRB.start
@@ -1,38 +1,41 @@
1
1
  #!/usr/bin/env ruby
2
- # encoding: UTF-8
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 'tate'
8
- require 'templates'
7
+ require 'guessmail'
8
+ require 'optparse'
9
9
 
10
- @help = '
11
- Usage: guessmail first [middle] last domain
10
+ options = {}
12
11
 
13
- Examples
14
- guessmail Yukihiro Matz Matsumoto ruby-lang.org
15
- guessmail Satoshi Nakamoto gmx.de
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
- def main
20
- args = ARGV.map { |x| Tate.transliterate(x.downcase) } # tate'd
28
+ option_parser.parse!
21
29
 
22
- case args.length
23
- when 3
24
- fn, ln = args.values_at(0, 1)
25
- fi, li = fn[0], ln[0]
26
- dn = args[2]
27
- STDOUT.write $FL % {fn: fn, ln: ln, fi: fi, li: li, dn: dn}
28
- when 4
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
- STDOUT.write @help
38
+ option_parser.help
35
39
  end
36
- end
37
40
 
38
- main
41
+ STDOUT.write result
@@ -1,25 +1,26 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
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 = "guessmail"
8
+ spec.name = 'guessmail'
8
9
  spec.version = Guessmail::VERSION
9
- spec.authors = ["Kerem Bozdas"]
10
- spec.email = ["krmbzds.github@gmail.com"]
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 = "https://github.com/krmbzds/guessmail"
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 = "bin"
18
- spec.executables = ["guessmail"]
19
- spec.require_paths = ["lib"]
18
+ spec.bindir = 'bin'
19
+ spec.executables = ['guessmail']
20
+ spec.require_paths = ['lib']
20
21
 
21
- spec.add_runtime_dependency "tate", "~> 0.1.4"
22
- spec.add_development_dependency "bundler", "~> 1.11"
23
- spec.add_development_dependency "rake", "~> 10.0"
24
- spec.add_development_dependency "rspec", "~> 3.0"
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
@@ -1,5 +1,25 @@
1
- require "guessmail/version"
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
- # I do nothing
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
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Guessmail
2
- VERSION = "0.1.2"
4
+ VERSION = '0.2.0'
3
5
  end
@@ -1,47 +1,133 @@
1
+ # frozen_string_literal: true
1
2
 
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}
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
- $FML = "%{fn}@%{dn}
23
- %{ln}@%{dn}
24
- %{fn}%{ln}@%{dn}
25
- %{fn}.%{ln}@%{dn}
26
- %{fi}%{ln}@%{dn}
27
- %{fi}.%{ln}@%{dn}
28
- %{fn}%{li}@%{dn}
29
- %{fn}.%{li}@%{dn}
30
- %{fi}%{li}@%{dn}
31
- %{fi}.%{li}@%{dn}
32
- %{ln}%{fn}@%{dn}
33
- %{ln}.%{fn}@%{dn}
34
- %{ln}%{fi}@%{dn}
35
- %{ln}.%{fi}@%{dn}
36
- %{li}%{fn}@%{dn}
37
- %{li}.%{fn}@%{dn}
38
- %{li}%{fi}@%{dn}
39
- %{li}.%{fi}@%{dn}
40
- %{fi}%{mi}%{ln}@%{dn}
41
- %{fi}%{mi}.%{ln}@%{dn}
42
- %{fn}%{mi}%{ln}@%{dn}
43
- %{fn}.%{mi}.%{ln}@%{dn}
44
- %{fn}%{mn}%{ln}@%{dn}
45
- %{fn}.%{mn}.%{ln}@%{dn}
46
- %{mn}@%{dn}
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.1.2
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: 2016-01-28 00:00:00.000000000 Z
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: 0.1.4
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: 0.1.4
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: '1.11'
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: '1.11'
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: '10.0'
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: '10.0'
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: '3.0'
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: '3.0'
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
- rubyforge_project:
112
- rubygems_version: 2.5.1
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: []
@@ -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
- "