mail_engine 0.1.7 → 0.1.8
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.
- data/VERSION +1 -1
- data/lib/mail_engine/action_mailer_patch.rb +1 -0
- data/mail_engine.gemspec +1 -1
- data/test/functional/user_mailer_test.rb +2 -1
- metadata +3 -3
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.8
|
data/mail_engine.gemspec
CHANGED
@@ -8,7 +8,8 @@ class UserMailerTest < ActionController::TestCase
|
|
8
8
|
|
9
9
|
should "send to safe mail address" do
|
10
10
|
MailEngine::Base.current_config["replacement_email"] = "xxx@xxx.com"
|
11
|
-
UserMailer.notify("x@x.com").deliver
|
11
|
+
mail = UserMailer.notify("x@x.com").deliver
|
12
|
+
assert_equal mail.to, ["xxx@xxx.com"]
|
12
13
|
assert UserMailer.sendgrid_config.to_hash["X-SMTPAPI"].include?("[\"xxx@xxx.com\"]")
|
13
14
|
end
|
14
15
|
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: mail_engine
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 11
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 8
|
10
|
+
version: 0.1.8
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- michael he
|