actionmailer 0.9.1 → 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of actionmailer might be problematic. Click here for more details.
- data/CHANGELOG +51 -2
- data/README +5 -6
- data/lib/action_mailer.rb +10 -3
- data/lib/action_mailer/adv_attr_accessor.rb +56 -0
- data/lib/action_mailer/base.rb +244 -120
- data/lib/action_mailer/helpers.rb +115 -0
- data/lib/action_mailer/part.rb +76 -0
- data/lib/action_mailer/part_container.rb +25 -0
- data/lib/action_mailer/quoting.rb +99 -0
- data/lib/action_mailer/utils.rb +8 -0
- data/lib/action_mailer/vendor/tmail/attachments.rb +6 -5
- data/lib/action_mailer/vendor/tmail/encode.rb +1 -0
- data/lib/action_mailer/vendor/tmail/facade.rb +2 -1
- data/lib/action_mailer/vendor/tmail/mail.rb +4 -0
- data/lib/action_mailer/vendor/tmail/net.rb +1 -1
- data/lib/action_mailer/vendor/tmail/quoting.rb +103 -80
- data/lib/action_mailer/vendor/tmail/scanner_r.rb +2 -2
- data/lib/action_mailer/vendor/tmail/utils.rb +9 -5
- data/rakefile +4 -4
- data/test/fixtures/helper_mailer/use_helper.rhtml +1 -0
- data/test/fixtures/helper_mailer/use_helper_method.rhtml +1 -0
- data/test/fixtures/helper_mailer/use_mail_helper.rhtml +5 -0
- data/test/fixtures/helper_mailer/use_test_helper.rhtml +1 -0
- data/test/fixtures/helpers/test_helper.rb +5 -0
- data/test/fixtures/raw_email +14 -0
- data/test/fixtures/raw_email10 +20 -0
- data/test/fixtures/raw_email11 +34 -0
- data/test/fixtures/raw_email2 +114 -0
- data/test/fixtures/raw_email3 +70 -0
- data/test/fixtures/raw_email4 +59 -0
- data/test/fixtures/raw_email5 +19 -0
- data/test/fixtures/raw_email6 +20 -0
- data/test/fixtures/raw_email7 +56 -0
- data/test/fixtures/raw_email8 +47 -0
- data/test/fixtures/raw_email9 +28 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml +10 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml +2 -0
- data/test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.rhtml +1 -0
- data/test/mail_helper_test.rb +97 -0
- data/test/mail_service_test.rb +391 -30
- metadata +32 -4
metadata
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
|
-
rubygems_version: 0.8.
|
2
|
+
rubygems_version: 0.8.10
|
3
3
|
specification_version: 1
|
4
4
|
name: actionmailer
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 0.
|
7
|
-
date: 2005-
|
6
|
+
version: 1.0.0
|
7
|
+
date: 2005-07-06
|
8
8
|
summary: Service layer for easy email delivery and testing.
|
9
9
|
require_paths:
|
10
10
|
- lib
|
@@ -34,8 +34,14 @@ files:
|
|
34
34
|
- MIT-LICENSE
|
35
35
|
- lib/action_mailer
|
36
36
|
- lib/action_mailer.rb
|
37
|
+
- lib/action_mailer/adv_attr_accessor.rb
|
37
38
|
- lib/action_mailer/base.rb
|
39
|
+
- lib/action_mailer/helpers.rb
|
38
40
|
- lib/action_mailer/mail_helper.rb
|
41
|
+
- lib/action_mailer/part.rb
|
42
|
+
- lib/action_mailer/part_container.rb
|
43
|
+
- lib/action_mailer/quoting.rb
|
44
|
+
- lib/action_mailer/utils.rb
|
39
45
|
- lib/action_mailer/vendor
|
40
46
|
- lib/action_mailer/vendor/text
|
41
47
|
- lib/action_mailer/vendor/tmail
|
@@ -64,10 +70,32 @@ files:
|
|
64
70
|
- lib/action_mailer/vendor/tmail/tmail.rb
|
65
71
|
- lib/action_mailer/vendor/tmail/utils.rb
|
66
72
|
- test/fixtures
|
73
|
+
- test/mail_helper_test.rb
|
67
74
|
- test/mail_service_test.rb
|
75
|
+
- test/fixtures/helper_mailer
|
76
|
+
- test/fixtures/helpers
|
77
|
+
- test/fixtures/raw_email
|
78
|
+
- test/fixtures/raw_email10
|
79
|
+
- test/fixtures/raw_email11
|
80
|
+
- test/fixtures/raw_email2
|
81
|
+
- test/fixtures/raw_email3
|
82
|
+
- test/fixtures/raw_email4
|
83
|
+
- test/fixtures/raw_email5
|
84
|
+
- test/fixtures/raw_email6
|
85
|
+
- test/fixtures/raw_email7
|
86
|
+
- test/fixtures/raw_email8
|
87
|
+
- test/fixtures/raw_email9
|
68
88
|
- test/fixtures/templates
|
69
89
|
- test/fixtures/test_mailer
|
90
|
+
- test/fixtures/helper_mailer/use_helper.rhtml
|
91
|
+
- test/fixtures/helper_mailer/use_helper_method.rhtml
|
92
|
+
- test/fixtures/helper_mailer/use_mail_helper.rhtml
|
93
|
+
- test/fixtures/helper_mailer/use_test_helper.rhtml
|
94
|
+
- test/fixtures/helpers/test_helper.rb
|
70
95
|
- test/fixtures/templates/signed_up.rhtml
|
96
|
+
- test/fixtures/test_mailer/implicitly_multipart_example.text.html.rhtml
|
97
|
+
- test/fixtures/test_mailer/implicitly_multipart_example.text.plain.rhtml
|
98
|
+
- test/fixtures/test_mailer/implicitly_multipart_example.text.yaml.rhtml
|
71
99
|
- test/fixtures/test_mailer/signed_up.rhtml
|
72
100
|
test_files: []
|
73
101
|
rdoc_options: []
|
@@ -85,5 +113,5 @@ dependencies:
|
|
85
113
|
-
|
86
114
|
- "="
|
87
115
|
- !ruby/object:Gem::Version
|
88
|
-
version: 1.
|
116
|
+
version: 1.9.0
|
89
117
|
version:
|