sexxy-emails 0.0.2 → 0.0.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (53) hide show
  1. data/lib/sexxy_emails/action_mailer.rb +17 -0
  2. data/lib/sexxy_emails/padrino_mailer.rb +17 -0
  3. data/lib/sexxy_emails.rb +22 -22
  4. data/test/example_padrino_app/app.rb +31 -0
  5. data/test/example_padrino_app/views/mailers/basic.html.erb +17 -0
  6. data/test/example_rails_app/Gemfile +37 -0
  7. data/test/example_rails_app/Gemfile.lock +126 -0
  8. data/test/example_rails_app/README.rdoc +261 -0
  9. data/test/example_rails_app/Rakefile +7 -0
  10. data/test/example_rails_app/app/assets/images/rails.png +0 -0
  11. data/test/example_rails_app/app/assets/javascripts/application.js +15 -0
  12. data/test/example_rails_app/app/assets/stylesheets/application.css +13 -0
  13. data/test/example_rails_app/app/controllers/application_controller.rb +7 -0
  14. data/test/example_rails_app/app/helpers/application_helper.rb +2 -0
  15. data/test/example_rails_app/app/mailers/test_mailer.rb +7 -0
  16. data/test/example_rails_app/app/views/layouts/application.html.erb +14 -0
  17. data/test/example_rails_app/app/views/test_mailer/basic_css.html.erb +17 -0
  18. data/test/example_rails_app/config/application.rb +67 -0
  19. data/test/example_rails_app/config/boot.rb +6 -0
  20. data/test/example_rails_app/config/database.yml +24 -0
  21. data/test/example_rails_app/config/environment.rb +5 -0
  22. data/test/example_rails_app/config/environments/development.rb +37 -0
  23. data/test/example_rails_app/config/environments/production.rb +67 -0
  24. data/test/example_rails_app/config/environments/test.rb +37 -0
  25. data/test/example_rails_app/config/initializers/backtrace_silencers.rb +7 -0
  26. data/test/example_rails_app/config/initializers/inflections.rb +15 -0
  27. data/test/example_rails_app/config/initializers/mime_types.rb +5 -0
  28. data/test/example_rails_app/config/initializers/secret_token.rb +7 -0
  29. data/test/example_rails_app/config/initializers/session_store.rb +8 -0
  30. data/test/example_rails_app/config/initializers/sexxy_emails.rb +1 -0
  31. data/test/example_rails_app/config/initializers/wrap_parameters.rb +14 -0
  32. data/test/example_rails_app/config/locales/en.yml +5 -0
  33. data/test/example_rails_app/config/routes.rb +3 -0
  34. data/test/example_rails_app/config.ru +4 -0
  35. data/test/example_rails_app/db/development.sqlite3 +0 -0
  36. data/test/example_rails_app/db/seeds.rb +7 -0
  37. data/test/example_rails_app/doc/README_FOR_APP +2 -0
  38. data/test/example_rails_app/log/development.log +487 -0
  39. data/test/example_rails_app/public/404.html +26 -0
  40. data/test/example_rails_app/public/422.html +26 -0
  41. data/test/example_rails_app/public/500.html +25 -0
  42. data/test/example_rails_app/public/favicon.ico +0 -0
  43. data/test/example_rails_app/public/index.html +241 -0
  44. data/test/example_rails_app/public/robots.txt +5 -0
  45. data/test/example_rails_app/script/rails +6 -0
  46. data/test/example_rails_app/test/performance/browsing_test.rb +12 -0
  47. data/test/example_rails_app/test/test_helper.rb +13 -0
  48. data/test/sexxy_emails/css_test.rb +1 -1
  49. data/test/sexxy_emails/padrino_mailer_test.rb +19 -0
  50. data/test/sexxy_emails/{basic_mailer_test.rb → rails_action_mailer_test.rb} +4 -1
  51. data/test/stylesheets/basic.css +4 -0
  52. data/test/test_helper.rb +0 -3
  53. metadata +78 -16
@@ -0,0 +1,487 @@
1
+
2
+ Sent mail to sexxy-email@test.com (11ms)
3
+ Date: Sat, 10 Nov 2012 18:42:20 -0800
4
+ To: sexxy-email@test.com
5
+ Message-ID: <509f108c15f9a_d8d43feb10c5a75c23630@utica-club.local.mail>
6
+ Subject: Test email subject line
7
+ Mime-Version: 1.0
8
+ Content-Type: text/plain;
9
+ charset=UTF-8
10
+ Content-Transfer-Encoding: 7bit
11
+
12
+
13
+ Connecting to database specified by database.yml
14
+  (0.1ms) select sqlite_version(*)
15
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
16
+  (0.0ms) PRAGMA index_list("schema_migrations")
17
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
18
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
19
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
20
+ Included args: [TestMailer]
21
+ ActionMailer::Base becoming awesome.
22
+
23
+ Sent mail to sexxy-email@test.com (8ms)
24
+ Date: Sat, 10 Nov 2012 18:49:13 -0800
25
+ To: sexxy-email@test.com
26
+ Message-ID: <509f12291eed9_dc293fd4d585a75c76361@utica-club.local.mail>
27
+ Subject: Test email subject line
28
+ Mime-Version: 1.0
29
+ Content-Type: text/plain;
30
+ charset=UTF-8
31
+ Content-Transfer-Encoding: 7bit
32
+
33
+
34
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:3)
35
+ Included args: [TestMailer]
36
+ ActionMailer::Base becoming awesome.
37
+
38
+ Sent mail to sexxy-email@test.com (6ms)
39
+ Date: Sat, 10 Nov 2012 18:50:01 -0800
40
+ To: sexxy-email@test.com
41
+ Message-ID: <509f1259d4e68_dcde3ffcbc85a75c21549@utica-club.local.mail>
42
+ Subject: Test email subject line
43
+ Mime-Version: 1.0
44
+ Content-Type: text/plain;
45
+ charset=UTF-8
46
+ Content-Transfer-Encoding: 7bit
47
+
48
+
49
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
50
+ Included args: [TestMailer]
51
+ ActionMailer::Base becoming awesome.
52
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
53
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
54
+ Included args: [TestMailer]
55
+ ActionMailer::Base becoming awesome.
56
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
57
+ Included args: [TestMailer]
58
+ ActionMailer::Base becoming awesome.
59
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
60
+ Included args: [TestMailer]
61
+ ActionMailer::Base becoming awesome.
62
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
63
+ Included args: [TestMailer]
64
+ ActionMailer::Base becoming awesome.
65
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
66
+ Included args: [TestMailer]
67
+ ActionMailer::Base becoming awesome.
68
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
69
+ Included args: [TestMailer]
70
+ ActionMailer::Base becoming awesome.
71
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
72
+ Included args: [TestMailer]
73
+ ActionMailer::Base becoming awesome.
74
+ Rendered test_mailer/basic_css.html.erb (0.8ms)
75
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
76
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
77
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
78
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
79
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
80
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
81
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
82
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
83
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
84
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
85
+
86
+ Sent mail to sexxy-email@test.com (11ms)
87
+ Date: Sat, 10 Nov 2012 19:31:12 -0800
88
+ To: sexxy-email@test.com
89
+ Message-ID: <509f1c00ba224_f0413fe46d45a75452315@utica-club.local.mail>
90
+ Subject: Test email subject line
91
+ Mime-Version: 1.0
92
+ Content-Type: text/html;
93
+ charset=UTF-8
94
+ Content-Transfer-Encoding: 7bit
95
+
96
+
97
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
98
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
99
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
100
+
101
+ Sent mail to sexxy-email@test.com (10ms)
102
+ Date: Sat, 10 Nov 2012 19:41:30 -0800
103
+ To: sexxy-email@test.com
104
+ Message-ID: <509f1e6ad1926_f2c83ff8f505a75c49492@utica-club.local.mail>
105
+ Subject: Test email subject line
106
+ Mime-Version: 1.0
107
+ Content-Type: text/html;
108
+ charset=UTF-8
109
+ Content-Transfer-Encoding: 7bit
110
+
111
+
112
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
113
+ Rendered test_mailer/basic_css.html.erb (2.5ms)
114
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
115
+ Rendered test_mailer/basic_css.html.erb (2.1ms)
116
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
117
+ Rendered test_mailer/basic_css.html.erb (69787.6ms)
118
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
119
+ Rendered test_mailer/basic_css.html.erb (0.8ms)
120
+
121
+ Sent mail to sexxy-email@test.com (6ms)
122
+ Date: Sat, 10 Nov 2012 19:49:01 -0800
123
+ To: sexxy-email@test.com
124
+ Message-ID: <509f202d2907b_f5d23ffcd605a75455f@utica-club.local.mail>
125
+ Subject: Test email subject line
126
+ Mime-Version: 1.0
127
+ Content-Type: text/html;
128
+ charset=UTF-8
129
+ Content-Transfer-Encoding: 7bit
130
+
131
+
132
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
133
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
134
+
135
+ Sent mail to sexxy-email@test.com (6ms)
136
+ Date: Sat, 10 Nov 2012 19:49:55 -0800
137
+ To: sexxy-email@test.com
138
+ Message-ID: <509f2063a05ce_f6633fc7c145a75465559@utica-club.local.mail>
139
+ Subject: Test email subject line
140
+ Mime-Version: 1.0
141
+ Content-Type: text/html;
142
+ charset=UTF-8
143
+ Content-Transfer-Encoding: 7bit
144
+
145
+
146
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
147
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
148
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
149
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
150
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
151
+
152
+ Sent mail to sexxy-email@test.com (2ms)
153
+ Date: Sat, 10 Nov 2012 19:54:32 -0800
154
+ To: sexxy-email@test.com
155
+ Message-ID: <509f21786eb38_f72a3ff30e05a75897672@utica-club.local.mail>
156
+ Subject: Test email subject line
157
+ Mime-Version: 1.0
158
+ Content-Type: text/html;
159
+ charset=UTF-8
160
+ Content-Transfer-Encoding: 7bit
161
+
162
+
163
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
164
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
165
+
166
+ Sent mail to sexxy-email@test.com (6ms)
167
+ Date: Sat, 10 Nov 2012 19:55:48 -0800
168
+ To: sexxy-email@test.com
169
+ Message-ID: <509f21c4ccbc5_f7c73ffeb605a754786d0@utica-club.local.mail>
170
+ Subject: Test email subject line
171
+ Mime-Version: 1.0
172
+ Content-Type: text/html;
173
+ charset=UTF-8
174
+ Content-Transfer-Encoding: 7bit
175
+
176
+
177
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
178
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
179
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
180
+
181
+ Sent mail to sexxy-email@test.com (6ms)
182
+ Date: Sat, 10 Nov 2012 19:56:52 -0800
183
+ To: sexxy-email@test.com
184
+ Message-ID: <509f2204fe73_f85e3ff3f4c5a7607071@utica-club.local.mail>
185
+ Subject: Test email subject line
186
+ Mime-Version: 1.0
187
+ Content-Type: text/html;
188
+ charset=UTF-8
189
+ Content-Transfer-Encoding: 7bit
190
+
191
+
192
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
193
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
194
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
195
+
196
+ Sent mail to sexxy-email@test.com (6ms)
197
+ Date: Sat, 10 Nov 2012 19:58:00 -0800
198
+ To: sexxy-email@test.com
199
+ Message-ID: <509f224855fc_f8f43febe205a75434777@utica-club.local.mail>
200
+ Subject: Test email subject line
201
+ Mime-Version: 1.0
202
+ Content-Type: text/html;
203
+ charset=UTF-8
204
+ Content-Transfer-Encoding: 7bit
205
+
206
+
207
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
208
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
209
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
210
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
211
+
212
+ Sent mail to sexxy-email@test.com (2ms)
213
+ Date: Sat, 10 Nov 2012 19:58:42 -0800
214
+ To: sexxy-email@test.com
215
+ Message-ID: <509f227297b32_f9853fe75985a75c43644@utica-club.local.mail>
216
+ Subject: Test email subject line
217
+ Mime-Version: 1.0
218
+ Content-Type: text/html;
219
+ charset=UTF-8
220
+ Content-Transfer-Encoding: 7bit
221
+
222
+
223
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
224
+ Rendered test_mailer/basic_css.html.erb (1.8ms)
225
+
226
+ Sent mail to sexxy-email@test.com (10ms)
227
+ Date: Sat, 10 Nov 2012 19:59:42 -0800
228
+ To: sexxy-email@test.com
229
+ Message-ID: <509f22ae1679d_fa123fe7e945a75c39535@utica-club.local.mail>
230
+ Subject: Test email subject line
231
+ Mime-Version: 1.0
232
+ Content-Type: text/html;
233
+ charset=UTF-8
234
+ Content-Transfer-Encoding: 7bit
235
+
236
+
237
+ Rendered test_mailer/basic_css.html.erb (0.1ms)
238
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
239
+ Rendered test_mailer/basic_css.html.erb (4.5ms)
240
+ Rendered test_mailer/basic_css.html.erb (2.1ms)
241
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
242
+ Rendered test_mailer/basic_css.html.erb (1.5ms)
243
+
244
+ Sent mail to sexxy-email@test.com (11ms)
245
+ Date: Sat, 10 Nov 2012 20:01:39 -0800
246
+ To: sexxy-email@test.com
247
+ Message-ID: <509f2323bebda_fb3d3fcec445a754913ba@utica-club.local.mail>
248
+ Subject: Test email subject line
249
+ Mime-Version: 1.0
250
+ Content-Type: text/html;
251
+ charset=UTF-8
252
+ Content-Transfer-Encoding: 7bit
253
+
254
+
255
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
256
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
257
+ Rendered test_mailer/basic_css.html.erb (34698.2ms)
258
+
259
+ Sent mail to sexxy-email@test.com (7ms)
260
+ Date: Sat, 10 Nov 2012 20:02:50 -0800
261
+ To: sexxy-email@test.com
262
+ Message-ID: <509f236aacb8_fbcc3ff668c5a7585072b@utica-club.local.mail>
263
+ Subject: Test email subject line
264
+ Mime-Version: 1.0
265
+ Content-Type: text/html;
266
+ charset=UTF-8
267
+ Content-Transfer-Encoding: 7bit
268
+
269
+
270
+ Rendered test_mailer/basic_css.html.erb (1075.7ms)
271
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
272
+ Rendered test_mailer/basic_css.html.erb (18775.4ms)
273
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
274
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
275
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
276
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
277
+
278
+ Sent mail to sexxy-email@test.com (7ms)
279
+ Date: Sat, 10 Nov 2012 20:06:07 -0800
280
+ To: sexxy-email@test.com
281
+ Message-ID: <509f242fee7a7_fd953fea7a05a7546025@utica-club.local.mail>
282
+ Subject: Test email subject line
283
+ Mime-Version: 1.0
284
+ Content-Type: text/html;
285
+ charset=UTF-8
286
+ Content-Transfer-Encoding: 7bit
287
+
288
+
289
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
290
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
291
+ Rendered test_mailer/basic_css.html.erb (1.0ms)
292
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
293
+
294
+ Sent mail to sexxy-email@test.com (2ms)
295
+ Date: Sat, 10 Nov 2012 20:09:31 -0800
296
+ To: sexxy-email@test.com
297
+ Message-ID: <509f24fb290ef_fe2d3fda3085a7607649e@utica-club.local.mail>
298
+ Subject: Test email subject line
299
+ Mime-Version: 1.0
300
+ Content-Type: text/html;
301
+ charset=UTF-8
302
+ Content-Transfer-Encoding: 7bit
303
+
304
+
305
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
306
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
307
+
308
+ Sent mail to sexxy-email@test.com (6ms)
309
+ Date: Sat, 10 Nov 2012 20:09:35 -0800
310
+ To: sexxy-email@test.com
311
+ Message-ID: <509f24ff84577_fed03fda3e05a7502258f@utica-club.local.mail>
312
+ Subject: Test email subject line
313
+ Mime-Version: 1.0
314
+ Content-Type: text/html;
315
+ charset=UTF-8
316
+ Content-Transfer-Encoding: 7bit
317
+
318
+
319
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
320
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
321
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
322
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
323
+
324
+ Sent mail to sexxy-email@test.com (2ms)
325
+ Date: Sat, 10 Nov 2012 20:10:43 -0800
326
+ To: sexxy-email@test.com
327
+ Message-ID: <509f254393e0a_ff663ff5e1c5a7586855c@utica-club.local.mail>
328
+ Subject: Test email subject line
329
+ Mime-Version: 1.0
330
+ Content-Type: text/html;
331
+ charset=UTF-8
332
+ Content-Transfer-Encoding: 7bit
333
+
334
+
335
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
336
+ Rendered test_mailer/basic_css.html.erb (0.9ms)
337
+
338
+ Sent mail to sexxy-email@test.com (6ms)
339
+ Date: Sat, 10 Nov 2012 20:24:55 -0800
340
+ To: sexxy-email@test.com
341
+ Message-ID: <509f28976a512_1020e3fec75c5a750748ca@utica-club.local.mail>
342
+ Subject: Test email subject line
343
+ Mime-Version: 1.0
344
+ Content-Type: text/html;
345
+ charset=UTF-8
346
+ Content-Transfer-Encoding: 7bit
347
+
348
+
349
+ Rendered test_mailer/basic_css.html.erb (0.2ms)
350
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
351
+ Rendered test_mailer/basic_css.html.erb (3.7ms)
352
+ Rendered test_mailer/basic_css.html.erb (2.3ms)
353
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
354
+ Rendered test_mailer/basic_css.html.erb (1.8ms)
355
+
356
+ Sent mail to sexxy-email@test.com (6ms)
357
+ Date: Sat, 10 Nov 2012 20:27:26 -0800
358
+ To: sexxy-email@test.com
359
+ Message-ID: <509f292e930e6_104233fc33145a75c933d2@utica-club.local.mail>
360
+ Subject: Test email subject line
361
+ Mime-Version: 1.0
362
+ Content-Type: text/html;
363
+ charset=UTF-8
364
+ Content-Transfer-Encoding: 7bit
365
+
366
+
367
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
368
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
369
+ Rendered test_mailer/basic_css.html.erb (1.8ms)
370
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
371
+
372
+ Sent mail to sexxy-email@test.com (2ms)
373
+ Date: Sat, 10 Nov 2012 20:27:51 -0800
374
+ To: sexxy-email@test.com
375
+ Message-ID: <509f294789f1_104ae3fef3905a7547940@utica-club.local.mail>
376
+ Subject: Test email subject line
377
+ Mime-Version: 1.0
378
+ Content-Type: text/html;
379
+ charset=UTF-8
380
+ Content-Transfer-Encoding: 7bit
381
+
382
+
383
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
384
+ Rendered test_mailer/basic_css.html.erb (1.8ms)
385
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
386
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
387
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
388
+ Rendered test_mailer/basic_css.html.erb (2.0ms)
389
+
390
+ Sent mail to sexxy-email@test.com (6ms)
391
+ Date: Sat, 10 Nov 2012 20:33:56 -0800
392
+ To: sexxy-email@test.com
393
+ Message-ID: <509f2ab44dd90_106d93fd57e05a760546df@utica-club.local.mail>
394
+ Subject: Test email subject line
395
+ Mime-Version: 1.0
396
+ Content-Type: text/html;
397
+ charset=UTF-8
398
+ Content-Transfer-Encoding: 7bit
399
+
400
+
401
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
402
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
403
+ Rendered test_mailer/basic_css.html.erb (2.0ms)
404
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
405
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
406
+ Rendered test_mailer/basic_css.html.erb (2.4ms)
407
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
408
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
409
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
410
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
411
+ Rendered test_mailer/basic_css.html.erb (2.1ms)
412
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
413
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
414
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
415
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
416
+ Rendered test_mailer/basic_css.html.erb (2.4ms)
417
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
418
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
419
+ Rendered test_mailer/basic_css.html.erb (2.2ms)
420
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
421
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
422
+ Rendered test_mailer/basic_css.html.erb (2.5ms)
423
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
424
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
425
+ Rendered test_mailer/basic_css.html.erb (2.7ms)
426
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
427
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
428
+ Rendered test_mailer/basic_css.html.erb (2.1ms)
429
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
430
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
431
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
432
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
433
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
434
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
435
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
436
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
437
+ Rendered test_mailer/basic_css.html.erb (1.8ms)
438
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
439
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
440
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
441
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
442
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
443
+ Rendered test_mailer/basic_css.html.erb (1.8ms)
444
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
445
+
446
+ Sent mail to sexxy-email@test.com (2ms)
447
+ Date: Sat, 10 Nov 2012 20:57:15 -0800
448
+ To: sexxy-email@test.com
449
+ Message-ID: <509f302b33f29_1111f3fd96dc5a75c56658@utica-club.local.mail>
450
+ Subject: Test email subject line
451
+ Mime-Version: 1.0
452
+ Content-Type: text/html;
453
+ charset=UTF-8
454
+ Content-Transfer-Encoding: 7bit
455
+
456
+
457
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
458
+ Rendered test_mailer/basic_css.html.erb (2.0ms)
459
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
460
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
461
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
462
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
463
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
464
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
465
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
466
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
467
+ Rendered test_mailer/basic_css.html.erb (2.0ms)
468
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
469
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
470
+ Rendered test_mailer/basic_css.html.erb (2.7ms)
471
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
472
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
473
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
474
+ Rendered test_mailer/basic_css.html.erb (1.9ms)
475
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
476
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
477
+ Rendered test_mailer/basic_css.html.erb (2.5ms)
478
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
479
+ DEPRECATION WARNING: The InstanceMethods module inside ActiveSupport::Concern will be no longer included automatically. Please define instance methods directly in SexxyEmails instead. (called from include at /Users/craig/projects/sexxy-emails/example_app/app/mailers/test_mailer.rb:2)
480
+ Rendered test_mailer/basic_css.html.erb (2.1ms)
481
+ Rendered test_mailer/basic_css.html.erb (0.3ms)
482
+ Rendered test_mailer/basic_css.html.erb (22.3ms)
483
+ Rendered test_mailer/basic_css.html.erb (3.7ms)
484
+ Rendered test_mailer/basic_css.html.erb (6.4ms)
485
+ Rendered test_mailer/basic_css.html.erb (3.8ms)
486
+ Rendered test_mailer/basic_css.html.erb (5.2ms)
487
+ Rendered test_mailer/basic_css.html.erb (0.4ms)
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The page you were looking for doesn't exist (404)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/404.html -->
21
+ <div class="dialog">
22
+ <h1>The page you were looking for doesn't exist.</h1>
23
+ <p>You may have mistyped the address or the page may have moved.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,26 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>The change you wanted was rejected (422)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/422.html -->
21
+ <div class="dialog">
22
+ <h1>The change you wanted was rejected.</h1>
23
+ <p>Maybe you tried to change something you didn't have access to.</p>
24
+ </div>
25
+ </body>
26
+ </html>
@@ -0,0 +1,25 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>We're sorry, but something went wrong (500)</title>
5
+ <style type="text/css">
6
+ body { background-color: #fff; color: #666; text-align: center; font-family: arial, sans-serif; }
7
+ div.dialog {
8
+ width: 25em;
9
+ padding: 0 4em;
10
+ margin: 4em auto 0 auto;
11
+ border: 1px solid #ccc;
12
+ border-right-color: #999;
13
+ border-bottom-color: #999;
14
+ }
15
+ h1 { font-size: 100%; color: #f00; line-height: 1.5em; }
16
+ </style>
17
+ </head>
18
+
19
+ <body>
20
+ <!-- This file lives in public/500.html -->
21
+ <div class="dialog">
22
+ <h1>We're sorry, but something went wrong.</h1>
23
+ </div>
24
+ </body>
25
+ </html>
File without changes