bjornblomqvist-emailer 0.1.11 → 0.1.12
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/README.rdoc +2 -2
- data/VERSION +1 -1
- data/emailer.gemspec +1 -1
- data/lib/emailer/mock_smtp_facade.rb +3 -0
- metadata +1 -1
data/README.rdoc
CHANGED
@@ -42,8 +42,8 @@ code. Here's a taste:
|
|
42
42
|
|
43
43
|
Add middleware to render emails for webrat
|
44
44
|
|
45
|
-
Emailer::SmtpFacade.default = Emailer
|
46
|
-
config.middleware.use "Emailer::
|
45
|
+
Emailer::SmtpFacade.default = Emailer::MockSmtpFacade.new
|
46
|
+
config.middleware.use "Emailer::TestingMiddleware"
|
47
47
|
|
48
48
|
Then you can get the url to the last email sent using
|
49
49
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.12
|
data/emailer.gemspec
CHANGED