├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .rspec ├── .travis.yml ├── CHANGELOG.md ├── Gemfile ├── README.md ├── lib ├── mandrill_mailer.rb └── mandrill_mailer │ ├── arg_formatter.rb │ ├── core_mailer.rb │ ├── mandrill_message_later.rb │ ├── mandrill_template_later.rb │ ├── message_mailer.rb │ ├── mock.rb │ ├── offline.rb │ ├── railtie.rb │ ├── rspec_helper.rb │ ├── rspec_helpers │ ├── from_matcher.rb │ ├── merge_var_content_matcher.rb │ ├── merge_var_matcher.rb │ ├── subject_matcher.rb │ ├── template_matcher.rb │ └── to_email_matcher.rb │ ├── template_mailer.rb │ └── version.rb ├── mandrill_mailer.gemspec └── spec ├── arg_formatter_spec.rb ├── core_mailer_spec.rb ├── fake_rails └── fake_rails.rb ├── message_mailer_spec.rb ├── spec_helper.rb ├── support └── test_image.png └── template_mailer_spec.rb /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/.gitignore -------------------------------------------------------------------------------- /.rspec: -------------------------------------------------------------------------------- 1 | --color -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/Gemfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/README.md -------------------------------------------------------------------------------- /lib/mandrill_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/arg_formatter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/arg_formatter.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/core_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/core_mailer.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/mandrill_message_later.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/mandrill_message_later.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/mandrill_template_later.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/mandrill_template_later.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/message_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/message_mailer.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/mock.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/mock.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/offline.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/offline.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/railtie.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/railtie.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helper.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helpers/from_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helpers/from_matcher.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helpers/merge_var_content_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helpers/merge_var_content_matcher.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helpers/merge_var_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helpers/merge_var_matcher.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helpers/subject_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helpers/subject_matcher.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helpers/template_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helpers/template_matcher.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/rspec_helpers/to_email_matcher.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/rspec_helpers/to_email_matcher.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/template_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/lib/mandrill_mailer/template_mailer.rb -------------------------------------------------------------------------------- /lib/mandrill_mailer/version.rb: -------------------------------------------------------------------------------- 1 | module MandrillMailer 2 | VERSION = "1.8.0" 3 | end 4 | -------------------------------------------------------------------------------- /mandrill_mailer.gemspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/mandrill_mailer.gemspec -------------------------------------------------------------------------------- /spec/arg_formatter_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/arg_formatter_spec.rb -------------------------------------------------------------------------------- /spec/core_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/core_mailer_spec.rb -------------------------------------------------------------------------------- /spec/fake_rails/fake_rails.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/fake_rails/fake_rails.rb -------------------------------------------------------------------------------- /spec/message_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/message_mailer_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/spec_helper.rb -------------------------------------------------------------------------------- /spec/support/test_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/support/test_image.png -------------------------------------------------------------------------------- /spec/template_mailer_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/renz45/mandrill_mailer/HEAD/spec/template_mailer_spec.rb --------------------------------------------------------------------------------