action_mailer_cache_delivery 0.3.5 → 0.3.6
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/.travis.yml +1 -1
- data/README.md +11 -13
- data/lib/action_mailer_cache_delivery.rb +2 -1
- data/lib/action_mailer_cache_delivery/version.rb +1 -1
- metadata +4 -4
data/.travis.yml
CHANGED
data/README.md
CHANGED
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
## Action Mailer Cache Delivery
|
|
2
|
-
|
|
3
|
-
[](http://travis-ci.org/p0deje/action_mailer_cache_delivery)
|
|
1
|
+
## Action Mailer Cache Delivery [](http://travis-ci.org/p0deje/action_mailer_cache_delivery) [](http://badge.fury.io/rb/action_mailer_cache_delivery)
|
|
4
2
|
|
|
5
3
|
Enhances ActionMailer to support the `:cache` delivery method, which behaves like `:test`, except that the deliveries are marshalled to a temporary cache file, thus making them available to other processes.
|
|
6
4
|
|
|
@@ -48,13 +46,13 @@ config.action_mailer.cache_settings = { :location => "#{Rails.root}/tmp/cache/ac
|
|
|
48
46
|
|
|
49
47
|
I tried to list there everyone who forked original version on GitHub. If you're not here, just send pull request.
|
|
50
48
|
|
|
51
|
-
* ngty
|
|
52
|
-
* robinsp
|
|
53
|
-
* thibaudgg
|
|
54
|
-
* liangzan
|
|
55
|
-
* railssignals
|
|
56
|
-
* esdras
|
|
57
|
-
* nicolasochem
|
|
58
|
-
* reactualize
|
|
59
|
-
* ragaskar
|
|
60
|
-
* marhan
|
|
49
|
+
* [ngty](https://github.com/ngty)
|
|
50
|
+
* [robinsp](https://github.com/robinsp)
|
|
51
|
+
* [thibaudgg](https://github.com/thibaudgg)
|
|
52
|
+
* [liangzan](https://github.com/liangzan)
|
|
53
|
+
* [railssignals](https://github.com/railssignals)
|
|
54
|
+
* [esdras](https://github.com/esdras)
|
|
55
|
+
* [nicolasochem](https://github.com/nicolasochem)
|
|
56
|
+
* [reactualize](https://github.com/reactualize)
|
|
57
|
+
* [ragaskar](https://github.com/ragaskar)
|
|
58
|
+
* [marhan](https://github.com/marhan)
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
require 'action_mailer_cache_delivery/version'
|
|
2
2
|
require 'action_mailer_cache_delivery/mail/cache_delivery'
|
|
3
3
|
require 'action_mailer_cache_delivery/action_mailer/base'
|
|
4
|
-
require 'action_mailer_cache_delivery/railtie' if defined?(Rails)
|
|
5
4
|
|
|
6
5
|
module ActionMailerCacheDelivery
|
|
7
6
|
class << self
|
|
@@ -14,3 +13,5 @@ module ActionMailerCacheDelivery
|
|
|
14
13
|
|
|
15
14
|
end # << self
|
|
16
15
|
end # ActionMailerCacheDelivery
|
|
16
|
+
|
|
17
|
+
require 'action_mailer_cache_delivery/railtie' if defined?(Rails)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: action_mailer_cache_delivery
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.3.
|
|
4
|
+
version: 0.3.6
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2013-
|
|
12
|
+
date: 2013-09-29 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: actionmailer
|
|
@@ -92,7 +92,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
92
92
|
version: '0'
|
|
93
93
|
segments:
|
|
94
94
|
- 0
|
|
95
|
-
hash:
|
|
95
|
+
hash: 301364848167179803
|
|
96
96
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
97
97
|
none: false
|
|
98
98
|
requirements:
|
|
@@ -101,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
101
101
|
version: '0'
|
|
102
102
|
segments:
|
|
103
103
|
- 0
|
|
104
|
-
hash:
|
|
104
|
+
hash: 301364848167179803
|
|
105
105
|
requirements: []
|
|
106
106
|
rubyforge_project:
|
|
107
107
|
rubygems_version: 1.8.23
|