cached_mailer 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
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
- == Storing Email Contents
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.0
1
+ 0.1.1
@@ -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.0"
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
- ".document",
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"
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.0
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
data/.document DELETED
@@ -1,5 +0,0 @@
1
- README.rdoc
2
- lib/**/*.rb
3
- bin/*
4
- features/**/*.feature
5
- LICENSE