├── .coveralls.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── Gemfile ├── Guardfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── bin └── possible_email ├── lib ├── possible_email.rb └── possible_email │ ├── cli.rb │ ├── error.rb │ ├── patterns.rb │ ├── permutator.rb │ ├── profile │ ├── image.rb │ ├── membership.rb │ ├── occupation.rb │ ├── phone.rb │ └── profile.rb │ ├── rapportive_requester.rb │ ├── response.rb │ ├── response_getter.rb │ └── version.rb ├── possible_email.gemspec └── spec ├── PossibleEmail ├── possible_email │ ├── permutator_spec.rb │ ├── profile │ │ ├── image_spec.rb │ │ ├── membership_spec.rb │ │ ├── occupation_spec.rb │ │ ├── phone_spec.rb │ │ └── profile_spec.rb │ ├── rapportive_requester_spec.rb │ ├── response_getter_spec.rb │ └── response_spec.rb └── possible_email_spec.rb ├── fixtures └── rapportive_example_data.json └── spec_helper.rb /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color 2 | --warnings 3 | --require spec_helper 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/Gemfile -------------------------------------------------------------------------------- /Guardfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/Guardfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/Rakefile -------------------------------------------------------------------------------- /bin/possible_email: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/bin/possible_email -------------------------------------------------------------------------------- /lib/possible_email.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email.rb -------------------------------------------------------------------------------- /lib/possible_email/cli.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/cli.rb -------------------------------------------------------------------------------- /lib/possible_email/error.rb: -------------------------------------------------------------------------------- 1 | module PossibleEmail 2 | 3 | end 4 | -------------------------------------------------------------------------------- /lib/possible_email/patterns.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/patterns.rb -------------------------------------------------------------------------------- /lib/possible_email/permutator.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/permutator.rb -------------------------------------------------------------------------------- /lib/possible_email/profile/image.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/profile/image.rb -------------------------------------------------------------------------------- /lib/possible_email/profile/membership.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/profile/membership.rb -------------------------------------------------------------------------------- /lib/possible_email/profile/occupation.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/profile/occupation.rb -------------------------------------------------------------------------------- /lib/possible_email/profile/phone.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/profile/phone.rb -------------------------------------------------------------------------------- /lib/possible_email/profile/profile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/profile/profile.rb -------------------------------------------------------------------------------- /lib/possible_email/rapportive_requester.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/rapportive_requester.rb -------------------------------------------------------------------------------- /lib/possible_email/response.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/response.rb -------------------------------------------------------------------------------- /lib/possible_email/response_getter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/lib/possible_email/response_getter.rb -------------------------------------------------------------------------------- /lib/possible_email/version.rb: -------------------------------------------------------------------------------- 1 | module PossibleEmail 2 | VERSION = "0.0.3" 3 | end 4 | -------------------------------------------------------------------------------- /possible_email.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/possible_email.gemspec -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/permutator_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/permutator_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/profile/image_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/profile/image_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/profile/membership_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/profile/membership_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/profile/occupation_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/profile/occupation_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/profile/phone_spec.rb: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/profile/profile_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/profile/profile_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/rapportive_requester_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/rapportive_requester_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/response_getter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/response_getter_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email/response_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email/response_spec.rb -------------------------------------------------------------------------------- /spec/PossibleEmail/possible_email_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/PossibleEmail/possible_email_spec.rb -------------------------------------------------------------------------------- /spec/fixtures/rapportive_example_data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/fixtures/rapportive_example_data.json -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/the4dpatrick/possible-email/HEAD/spec/spec_helper.rb --------------------------------------------------------------------------------