├── .gitignore ├── Dockerfile ├── EmailGen.rb ├── Gemfile ├── Gemfile.lock ├── README.md ├── lib ├── e.rb └── hunter.rb ├── screenshots └── emailgen.png └── tokens.rb.example /.gitignore: -------------------------------------------------------------------------------- 1 | settings.json 2 | .DS_Store 3 | tokens.rb 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/Dockerfile -------------------------------------------------------------------------------- /EmailGen.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/EmailGen.rb -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/README.md -------------------------------------------------------------------------------- /lib/e.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/lib/e.rb -------------------------------------------------------------------------------- /lib/hunter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/lib/hunter.rb -------------------------------------------------------------------------------- /screenshots/emailgen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/screenshots/emailgen.png -------------------------------------------------------------------------------- /tokens.rb.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/navisecdelta/EmailGen/HEAD/tokens.rb.example --------------------------------------------------------------------------------