guessmail 0.1.1 → 0.3.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: 166fa080670449e6b344a45c2d8b57b7d709048c
4
- data.tar.gz: 3eb8810197b8bcd70a414ff5d4c24ec147d97899
2
+ SHA256:
3
+ metadata.gz: 372a27c73e9b4551a1a829601df8327b5756baa35c87048170d50c0eb8e1dd29
4
+ data.tar.gz: 76079eb13a70adaab6e6fa8c8297133c9300b3a9149b3815530ff51cea7fea34
5
5
  SHA512:
6
- metadata.gz: 429b58c575e599d4cd270ab72edd72a78caeb0e0d0b0d4c3077f9d8cb98f778d5ef6fec1141c04ba3ff87bba3b54eb979362261ddeed9c42630b78fde29b8430
7
- data.tar.gz: 0dea73960311fe61f55b1d445c8754b2d9bfde863e3016965e8a63ce8a13b288205766dd26a7d3d13e6b9ac55918d3be55518b85cce44007a29e0d91659c424b
6
+ metadata.gz: d8cb64950b388523ce5a10a5482b7d0ab479a1582aaad7f0722968070e43a6676f90d40f43dd87fb46067f2fedfd6ebd09c5c346907445ecf661387c30fd2287
7
+ data.tar.gz: 2f242f0e52a45cdae1324f1e5a66d47a35074c62f39f350e510e4f945d0a3ff8d7ae1c94ebfc5092b741640586f484c129142396651ed45bf9c7e46f6176a900
@@ -0,0 +1,24 @@
1
+ name: Publish
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build:
9
+ name: Publish Packages
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+
15
+ - name: Set up Ruby
16
+ uses: ruby/setup-ruby@v1
17
+ with:
18
+ bundler-cache: true
19
+
20
+ - name: Publish to RubyGems
21
+ uses: dawidd6/action-publish-gem@v1
22
+ with:
23
+ api_key: ${{secrets.RUBYGEMS_AUTH_TOKEN}}
24
+
@@ -0,0 +1,54 @@
1
+ name: Test
2
+
3
+ on:
4
+ pull_request:
5
+
6
+ push:
7
+ branches: [ develop, master ]
8
+
9
+ env:
10
+ GIT_COMMIT_SHA: ${{ github.sha }}
11
+ GIT_BRANCH: ${{ github.ref }}
12
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
13
+
14
+ jobs:
15
+
16
+ lint:
17
+ runs-on: ubuntu-latest
18
+ name: lint ${{ matrix.ruby }}
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ ruby: [ '2.6.9', '2.7.5', '3.0.3', '3.1.1' ]
23
+
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ - uses: ruby/setup-ruby@v1
27
+ with:
28
+ ruby-version: ${{ matrix.ruby }}
29
+ bundler-cache: true
30
+
31
+ - name: StandardRB
32
+ continue-on-error: ${{ matrix.experimental }}
33
+ run: bundle exec standardrb --parallel --format progress
34
+
35
+ test:
36
+ needs: [ lint ]
37
+ runs-on: ubuntu-latest
38
+ name: test ${{ matrix.ruby }}
39
+ strategy:
40
+ fail-fast: false
41
+ matrix:
42
+ ruby: [ '2.6.9', '2.7.5', '3.0.3', '3.1.1' ]
43
+
44
+ steps:
45
+ - uses: actions/checkout@v2
46
+ - uses: ruby/setup-ruby@v1
47
+ with:
48
+ ruby-version: ${{ matrix.ruby }}
49
+ bundler-cache: true
50
+
51
+ - name: Test
52
+ continue-on-error: ${{ matrix.experimental }}
53
+ run: bundle exec rake
54
+
data/.tool-versions ADDED
@@ -0,0 +1 @@
1
+ ruby 3.1.1
data/Gemfile CHANGED
@@ -1,4 +1,6 @@
1
- source 'https://rubygems.org'
1
+ # frozen_string_literal: true
2
+
3
+ source "https://rubygems.org"
2
4
 
3
5
  # Specify your gem's dependencies in guessmail.gemspec
4
6
  gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2022 Kerem Bozdas
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
data/README.md CHANGED
@@ -1,8 +1,68 @@
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
+ [![Build Status](https://img.shields.io/github/workflow/status/krmbzds/guessmail/Test/master)](https://github.com/krmbzds/guessmail/actions/workflows/test.yml)
4
+ [![Coveralls](https://img.shields.io/coveralls/github/krmbzds/guessmail)](https://coveralls.io/github/krmbzds/guessmail)
5
+ [![Maintainability](https://img.shields.io/codeclimate/maintainability/krmbzds/guessmail.svg)](https://codeclimate.com/github/krmbzds/guessmail/maintainability)
6
+ [![Downloads](https://img.shields.io/gem/dt/guessmail.svg)](https://rubygems.org/gems/guessmail)
7
+ [![Gem Version](https://img.shields.io/gem/v/guessmail.svg)](https://rubygems.org/gems/guessmail)
4
8
 
5
- TODO: Delete this and the text above, and describe your gem
9
+
10
+ [**guessmail**][Guessmail] helps you find possible email addresses of a person.
11
+
12
+ ## Usage
13
+
14
+ ```
15
+ Usage: guessmail [-e] [-l LANGUAGE] first [middle] last domain
16
+ -e, --extended Include less common email combinations
17
+ -l, --language LANGUAGE Set language
18
+ -h, --help Shows help message
19
+ -v, --version Shows version
20
+ ```
21
+
22
+ ## Examples
23
+
24
+ Let's say you want to find the email address of Bill Gates.
25
+
26
+ ```sh
27
+ $ guessmail Bill Gates microsoft.com
28
+ ```
29
+
30
+ This will return you a set of possible emails:
31
+
32
+ ```
33
+ bill@microsoft.com
34
+ gates@microsoft.com
35
+ billgates@microsoft.com
36
+ bill.gates@microsoft.com
37
+ bgates@microsoft.com
38
+ b.gates@microsoft.com
39
+ billg@microsoft.com <-- This is the actual email address
40
+ bill.g@microsoft.com
41
+ bg@microsoft.com
42
+ b.g@microsoft.com
43
+ gatesbill@microsoft.com
44
+ gates.bill@microsoft.com
45
+ gatesb@microsoft.com
46
+ gates.b@microsoft.com
47
+ gbill@microsoft.com
48
+ g.bill@microsoft.com
49
+ gb@microsoft.com
50
+ g.b@microsoft.com
51
+ ```
52
+
53
+ 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.
54
+
55
+ [guessmail][Guessmail] can transliterate non-ASCII input since it uses [tate][tate] under the hood. Try it out!
56
+
57
+ ```sh
58
+ guessmail Игорь Богданов lex.bg -el bg
59
+ guessmail Günter Außem gmx.de --language de
60
+ guessmail Yukihiro Matz Matsumoto ruby-lang.org
61
+ ```
62
+
63
+ ## Is it any good?
64
+
65
+ Yes.
6
66
 
7
67
  ## Installation
8
68
 
@@ -14,23 +74,44 @@ gem 'guessmail'
14
74
 
15
75
  And then execute:
16
76
 
17
- $ bundle
77
+ ```sh
78
+ $ bundle
79
+ ```
18
80
 
19
81
  Or install it yourself as:
20
82
 
21
- $ gem install guessmail
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
83
+ ```sh
84
+ $ gem install guessmail
85
+ ```
26
86
 
27
87
  ## Development
28
88
 
29
89
  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
90
 
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).
91
+ 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
92
 
33
93
  ## Contributing
34
94
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/guessmail.
95
+ 1. [Fork the repository][Fork]
96
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
97
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
98
+ 4. Push to the branch (`git push origin my-new-feature`)
99
+ 5. Create a new Pull Request
100
+
101
+ ### Donations ❤️
102
+
103
+ You can donate me at [Liberapay][Donation]. Thanks! ☕️
104
+
105
+ ## License
106
+
107
+ Copyright © 2016-2022 [Kerem Bozdas][Personal Webpage]
108
+
109
+ This project is available under the terms of the [MIT License][License].
36
110
 
111
+ [Donation]: https://liberapay.com/krmbzds/donate
112
+ [Fork]: https://github.com/krmbzds/guessmail/fork
113
+ [Guessmail]: https://github.com/krmbzds/guessmail
114
+ [License]: http://kerem.mit-license.org
115
+ [Personal Webpage]: http://kerembozdas.com
116
+ [RubyGems]: https://rubygems.org
117
+ [Tate]: https://github.com/krmbzds/tate
data/Rakefile CHANGED
@@ -1,6 +1,8 @@
1
+ # frozen_string_literal: true
2
+
1
3
  require "bundler/gem_tasks"
2
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
data/bin/console CHANGED
@@ -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
data/bin/guessmail CHANGED
@@ -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
data/guessmail.gemspec CHANGED
@@ -1,25 +1,28 @@
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
- require 'guessmail/version'
5
+ require "guessmail/version"
5
6
 
6
7
  Gem::Specification.new do |spec|
7
- spec.name = "guessmail"
8
- spec.version = Guessmail::VERSION
9
- spec.authors = ["Kerem Bozdas"]
10
- spec.email = ["krmbzds.github@gmail.com"]
8
+ spec.name = "guessmail"
9
+ spec.version = Guessmail::VERSION
10
+ spec.authors = ["Kerem Bozdas"]
11
+ spec.email = ["krmbzds.github@gmail.com"]
11
12
 
12
- spec.summary = "Find anyone's email address"
13
- spec.description = "Find anyone's email address"
14
- spec.homepage = "https://github.com/krmbzds/guessmail"
13
+ spec.summary = "Find anyone's email address"
14
+ spec.description = "Find anyone's email address"
15
+ spec.homepage = "https://github.com/krmbzds/guessmail"
15
16
 
16
- spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
17
- spec.bindir = "bin"
18
- spec.executables = ["guessmail"]
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = "bin"
19
+ spec.executables = ["guessmail"]
19
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.7.0"
23
+ spec.add_development_dependency "bundler"
24
+ spec.add_development_dependency "rake"
25
+ spec.add_development_dependency "rspec"
26
+ spec.add_development_dependency "standardrb"
27
+ spec.add_development_dependency "coveralls_reborn"
25
28
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  module Guessmail
2
- VERSION = "0.1.1"
4
+ VERSION = "0.3.0"
3
5
  end
data/lib/guessmail.rb CHANGED
@@ -1,5 +1,29 @@
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
+
1
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 = if options[:extended]
21
+ mn ? FMLE : FLE
22
+ else
23
+ (mn ? FML : FL)
24
+ end
25
+ string = format(template, params)
26
+
27
+ Tate.transliterate(string, options[:language])
28
+ end
5
29
  end
data/lib/templates.rb CHANGED
@@ -1,85 +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}
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}
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
36
21
  "
37
22
 
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}
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
85
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.1
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Kerem Bozdas
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-01-28 00:00:00.000000000 Z
11
+ date: 2022-03-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tate
@@ -16,56 +16,84 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.1.4
19
+ version: 1.7.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.7.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
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ - !ruby/object:Gem::Dependency
70
+ name: standardrb
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
83
+ - !ruby/object:Gem::Dependency
84
+ name: coveralls_reborn
85
+ requirement: !ruby/object:Gem::Requirement
86
+ requirements:
87
+ - - ">="
88
+ - !ruby/object:Gem::Version
89
+ version: '0'
90
+ type: :development
91
+ prerelease: false
92
+ version_requirements: !ruby/object:Gem::Requirement
93
+ requirements:
94
+ - - ">="
67
95
  - !ruby/object:Gem::Version
68
- version: '3.0'
96
+ version: '0'
69
97
  description: Find anyone's email address
70
98
  email:
71
99
  - krmbzds.github@gmail.com
@@ -74,12 +102,13 @@ executables:
74
102
  extensions: []
75
103
  extra_rdoc_files: []
76
104
  files:
105
+ - ".github/workflows/publish.yml"
106
+ - ".github/workflows/test.yml"
77
107
  - ".gitignore"
78
108
  - ".rspec"
79
- - ".ruby-gemset"
80
- - ".ruby-version"
81
- - ".travis.yml"
109
+ - ".tool-versions"
82
110
  - Gemfile
111
+ - LICENSE.txt
83
112
  - README.md
84
113
  - Rakefile
85
114
  - bin/console
@@ -107,8 +136,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
107
136
  - !ruby/object:Gem::Version
108
137
  version: '0'
109
138
  requirements: []
110
- rubyforge_project:
111
- rubygems_version: 2.5.1
139
+ rubygems_version: 3.3.7
112
140
  signing_key:
113
141
  specification_version: 4
114
142
  summary: Find anyone's email address
data/.ruby-gemset DELETED
@@ -1 +0,0 @@
1
- guessmail
data/.ruby-version DELETED
@@ -1 +0,0 @@
1
- ruby-2.3.0
data/.travis.yml DELETED
@@ -1,4 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.2.3
4
- before_install: gem install bundler -v 1.11.2