mandrill_mailer 0.6.1 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -1
- data/README.md +12 -2
- data/lib/mandrill_mailer/arg_formatter.rb +119 -0
- data/lib/mandrill_mailer/core_mailer.rb +38 -73
- data/lib/mandrill_mailer/message_mailer.rb +2 -102
- data/lib/mandrill_mailer/offline.rb +10 -6
- data/lib/mandrill_mailer/template_mailer.rb +9 -97
- data/lib/mandrill_mailer/version.rb +1 -1
- data/spec/arg_formatter_spec.rb +236 -0
- data/spec/core_mailer_spec.rb +294 -38
- data/spec/message_mailer_spec.rb +12 -133
- data/spec/spec_helper.rb +2 -0
- data/spec/template_mailer_spec.rb +24 -442
- metadata +6 -3
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mandrill_mailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 1.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Adam Rensel
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-
|
11
|
+
date: 2015-05-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -94,6 +94,7 @@ files:
|
|
94
94
|
- Gemfile
|
95
95
|
- README.md
|
96
96
|
- lib/mandrill_mailer.rb
|
97
|
+
- lib/mandrill_mailer/arg_formatter.rb
|
97
98
|
- lib/mandrill_mailer/core_mailer.rb
|
98
99
|
- lib/mandrill_mailer/message_mailer.rb
|
99
100
|
- lib/mandrill_mailer/mock.rb
|
@@ -102,6 +103,7 @@ files:
|
|
102
103
|
- lib/mandrill_mailer/template_mailer.rb
|
103
104
|
- lib/mandrill_mailer/version.rb
|
104
105
|
- mandrill_mailer.gemspec
|
106
|
+
- spec/arg_formatter_spec.rb
|
105
107
|
- spec/core_mailer_spec.rb
|
106
108
|
- spec/fake_rails/fake_rails.rb
|
107
109
|
- spec/message_mailer_spec.rb
|
@@ -128,11 +130,12 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
128
130
|
version: '0'
|
129
131
|
requirements: []
|
130
132
|
rubyforge_project:
|
131
|
-
rubygems_version: 2.4.
|
133
|
+
rubygems_version: 2.4.6
|
132
134
|
signing_key:
|
133
135
|
specification_version: 4
|
134
136
|
summary: Transactional Mailer for Mandrill
|
135
137
|
test_files:
|
138
|
+
- spec/arg_formatter_spec.rb
|
136
139
|
- spec/core_mailer_spec.rb
|
137
140
|
- spec/fake_rails/fake_rails.rb
|
138
141
|
- spec/message_mailer_spec.rb
|