gitextract_k7vfh5vh/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── ci.yml ├── .gitignore ├── Dockerfile ├── Gemfile ├── LICENSE ├── README.md ├── Rakefile ├── assets/ │ ├── javascripts/ │ │ └── mailcatcher.js.coffee │ └── stylesheets/ │ └── mailcatcher.css.sass ├── bin/ │ ├── catchmail │ └── mailcatcher ├── examples/ │ ├── attachmail │ ├── attachment │ ├── breaking │ ├── dotmail │ ├── htmlmail │ ├── mail │ ├── multipartmail │ ├── multipartmail-with-utf8 │ ├── plainlinkmail │ ├── plainmail │ ├── quoted_printable_htmlmail │ ├── unknownmail │ └── xhtmlmail ├── lib/ │ ├── mail_catcher/ │ │ ├── bus.rb │ │ ├── mail.rb │ │ ├── smtp.rb │ │ ├── version.rb │ │ ├── web/ │ │ │ ├── application.rb │ │ │ └── assets.rb │ │ └── web.rb │ ├── mail_catcher.rb │ └── mailcatcher.rb ├── mailcatcher.gemspec ├── spec/ │ ├── clear_spec.rb │ ├── command_spec.rb │ ├── delivery_spec.rb │ ├── quit_spec.rb │ └── spec_helper.rb ├── vendor/ │ └── assets/ │ └── javascripts/ │ ├── date.js │ ├── favcount.js │ ├── jquery.js │ ├── keymaster.js │ ├── modernizr.js │ └── url.js └── views/ ├── 404.erb └── index.erb