├── .gitignore ├── Gemfile ├── LICENSE.txt ├── README.md ├── Rakefile ├── circle.yml ├── lib ├── mail_interceptor.rb └── mail_interceptor │ ├── engine.rb │ ├── initializers │ └── zerobounce.rb │ ├── railtie.rb │ └── version.rb ├── mail_interceptor.gemspec └── test └── mail_interceptor_test.rb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/.gitignore -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/Rakefile -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/circle.yml -------------------------------------------------------------------------------- /lib/mail_interceptor.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/lib/mail_interceptor.rb -------------------------------------------------------------------------------- /lib/mail_interceptor/engine.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/lib/mail_interceptor/engine.rb -------------------------------------------------------------------------------- /lib/mail_interceptor/initializers/zerobounce.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/lib/mail_interceptor/initializers/zerobounce.rb -------------------------------------------------------------------------------- /lib/mail_interceptor/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/lib/mail_interceptor/railtie.rb -------------------------------------------------------------------------------- /lib/mail_interceptor/version.rb: -------------------------------------------------------------------------------- 1 | # frozen_string_literal: true 2 | 3 | module MailInterceptor 4 | VERSION = '0.1.0' 5 | end 6 | -------------------------------------------------------------------------------- /mail_interceptor.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/mail_interceptor.gemspec -------------------------------------------------------------------------------- /test/mail_interceptor_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bigbinary/mail_interceptor/HEAD/test/mail_interceptor_test.rb --------------------------------------------------------------------------------