cached_mailer 0.1.0 → 0.1.1
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 +3 -1
- data/VERSION +1 -1
- data/cached_mailer.gemspec +5 -6
- data/generators/{cached_mailer_generators.rb → cached_mailer/cached_mailer_generators.rb} +0 -0
- data/generators/{templates → cached_mailer/templates}/migration.rb +0 -0
- data/generators/{templates → cached_mailer/templates}/model.rb +0 -0
- metadata +4 -5
- data/.document +0 -5
data/README.rdoc
CHANGED
@@ -45,7 +45,9 @@ Or specify a custom model name
|
|
45
45
|
|
46
46
|
Done! All the emails you send with ActionMailer will automagically be cached to the database for later reference.
|
47
47
|
|
48
|
-
==
|
48
|
+
== Settings
|
49
|
+
|
50
|
+
=== Storing Email Contents
|
49
51
|
|
50
52
|
By default cached_mailer does not store the encoded body of the email in the database. Emails can be long, and this is to make sure your database doesn't grow wildly out of control. If you really want to store the entire content of the emails, you can do so by adding this to an initializer:
|
51
53
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.1
|
data/cached_mailer.gemspec
CHANGED
@@ -5,7 +5,7 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{cached_mailer}
|
8
|
-
s.version = "0.1.
|
8
|
+
s.version = "0.1.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["mhodgson"]
|
@@ -17,16 +17,15 @@ Gem::Specification.new do |s|
|
|
17
17
|
"README.rdoc"
|
18
18
|
]
|
19
19
|
s.files = [
|
20
|
-
".
|
21
|
-
".gitignore",
|
20
|
+
".gitignore",
|
22
21
|
"LICENSE",
|
23
22
|
"README.rdoc",
|
24
23
|
"Rakefile",
|
25
24
|
"VERSION",
|
26
25
|
"cached_mailer.gemspec",
|
27
|
-
"generators/cached_mailer_generators.rb",
|
28
|
-
"generators/templates/migration.rb",
|
29
|
-
"generators/templates/model.rb",
|
26
|
+
"generators/cached_mailer/cached_mailer_generators.rb",
|
27
|
+
"generators/cached_mailer/templates/migration.rb",
|
28
|
+
"generators/cached_mailer/templates/model.rb",
|
30
29
|
"lib/action_mailer/cached_mailer.rb",
|
31
30
|
"test/helper.rb",
|
32
31
|
"test/test_cached_mailer.rb"
|
File without changes
|
File without changes
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cached_mailer
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- mhodgson
|
@@ -32,16 +32,15 @@ extra_rdoc_files:
|
|
32
32
|
- LICENSE
|
33
33
|
- README.rdoc
|
34
34
|
files:
|
35
|
-
- .document
|
36
35
|
- .gitignore
|
37
36
|
- LICENSE
|
38
37
|
- README.rdoc
|
39
38
|
- Rakefile
|
40
39
|
- VERSION
|
41
40
|
- cached_mailer.gemspec
|
42
|
-
- generators/cached_mailer_generators.rb
|
43
|
-
- generators/templates/migration.rb
|
44
|
-
- generators/templates/model.rb
|
41
|
+
- generators/cached_mailer/cached_mailer_generators.rb
|
42
|
+
- generators/cached_mailer/templates/migration.rb
|
43
|
+
- generators/cached_mailer/templates/model.rb
|
45
44
|
- lib/action_mailer/cached_mailer.rb
|
46
45
|
- test/helper.rb
|
47
46
|
- test/test_cached_mailer.rb
|