maktoub 0.0.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.
Files changed (74) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.rdoc +68 -0
  3. data/Rakefile +39 -0
  4. data/app/assets/javascripts/maktoub/application.js +9 -0
  5. data/app/assets/javascripts/maktoub/archives.js +2 -0
  6. data/app/assets/stylesheets/maktoub/application.css +7 -0
  7. data/app/assets/stylesheets/maktoub/archives.css +4 -0
  8. data/app/controllers/maktoub/application_controller.rb +4 -0
  9. data/app/controllers/maktoub/archives_controller.rb +13 -0
  10. data/app/helpers/maktoub/application_helper.rb +4 -0
  11. data/app/helpers/maktoub/archives_helper.rb +4 -0
  12. data/app/mailers/maktoub/newsletter_mailer.rb +32 -0
  13. data/app/views/layouts/maktoub/application.html.erb +14 -0
  14. data/app/views/layouts/maktoub/newsletter_mailer.erb +474 -0
  15. data/app/views/maktoub/newsletters/readme.erb +3 -0
  16. data/config/routes.rb +8 -0
  17. data/lib/maktoub.rb +36 -0
  18. data/lib/maktoub/engine.rb +6 -0
  19. data/lib/maktoub/version.rb +3 -0
  20. data/lib/tasks/maktoub_tasks.rake +26 -0
  21. data/test/dummy/Rakefile +7 -0
  22. data/test/dummy/app/assets/images/logo.jpg +0 -0
  23. data/test/dummy/app/assets/javascripts/application.js +9 -0
  24. data/test/dummy/app/assets/stylesheets/application.css +7 -0
  25. data/test/dummy/app/controllers/application_controller.rb +3 -0
  26. data/test/dummy/app/helpers/application_helper.rb +2 -0
  27. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  28. data/test/dummy/app/views/maktoub/newsletters/test_template.erb +0 -0
  29. data/test/dummy/config.ru +4 -0
  30. data/test/dummy/config/application.rb +45 -0
  31. data/test/dummy/config/boot.rb +10 -0
  32. data/test/dummy/config/database.yml +25 -0
  33. data/test/dummy/config/environment.rb +5 -0
  34. data/test/dummy/config/environments/development.rb +30 -0
  35. data/test/dummy/config/environments/production.rb +60 -0
  36. data/test/dummy/config/environments/test.rb +39 -0
  37. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  38. data/test/dummy/config/initializers/inflections.rb +10 -0
  39. data/test/dummy/config/initializers/maktoub.rb +18 -0
  40. data/test/dummy/config/initializers/mime_types.rb +5 -0
  41. data/test/dummy/config/initializers/secret_token.rb +7 -0
  42. data/test/dummy/config/initializers/session_store.rb +8 -0
  43. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  44. data/test/dummy/config/locales/en.yml +5 -0
  45. data/test/dummy/config/routes.rb +5 -0
  46. data/test/dummy/db/development.sqlite3 +0 -0
  47. data/test/dummy/db/test.sqlite3 +0 -0
  48. data/test/dummy/log/development.log +6132 -0
  49. data/test/dummy/log/test.log +453 -0
  50. data/test/dummy/public/404.html +26 -0
  51. data/test/dummy/public/422.html +26 -0
  52. data/test/dummy/public/500.html +26 -0
  53. data/test/dummy/public/favicon.ico +0 -0
  54. data/test/dummy/script/rails +6 -0
  55. data/test/dummy/tmp/cache/assets/CA2/C20/sprockets%2F5603f1da541a5e3c72d26611478813da +0 -0
  56. data/test/dummy/tmp/cache/assets/CB4/BE0/sprockets%2F57f7e5c53278ac52062992433f317acc +0 -0
  57. data/test/dummy/tmp/cache/assets/CBC/F80/sprockets%2F95bdffc2824328543384db8ea7890153 +0 -0
  58. data/test/dummy/tmp/cache/assets/CCF/9C0/sprockets%2Fae24de6a552b3d6057517681a1a363e0 +0 -0
  59. data/test/dummy/tmp/cache/assets/CDD/630/sprockets%2F75757e115102f4fcc9ed52a2249bf082 +0 -0
  60. data/test/dummy/tmp/cache/assets/D34/130/sprockets%2F9a5c11d810e2e1f87ea6452113cc7e4c +0 -0
  61. data/test/dummy/tmp/cache/assets/D68/E80/sprockets%2F2c93d36471b04c04bb72a9aeeaf496a8 +0 -0
  62. data/test/dummy/tmp/cache/assets/D6E/8A0/sprockets%2Fa833bda5303fa2c89da36ec6b469618d +0 -0
  63. data/test/dummy/tmp/cache/assets/D70/6F0/sprockets%2Ff37da951add08a3d2866a4767b5afc43 +0 -0
  64. data/test/dummy/tmp/cache/assets/D74/710/sprockets%2F4865a147f154cadc0b49ebe873be7a85 +0 -0
  65. data/test/dummy/tmp/cache/assets/D76/B40/sprockets%2F8aea19137c7b683ef195fa3bf2a9704f +0 -0
  66. data/test/dummy/tmp/cache/assets/D7D/170/sprockets%2F15742d263cfefba79b76652f6e94ac6d +0 -0
  67. data/test/dummy/tmp/cache/assets/DC6/1E0/sprockets%2F5fad4aa8ef2c006cc0dd5233e98dd922 +0 -0
  68. data/test/functional/maktoub/archives_controller_test.rb +24 -0
  69. data/test/functional/maktoub/newsletter_mailer_test.rb +31 -0
  70. data/test/integration/navigation_test.rb +10 -0
  71. data/test/maktoub_test.rb +45 -0
  72. data/test/test_helper.rb +11 -0
  73. data/test/unit/helpers/maktoub/archives_helper_test.rb +6 -0
  74. metadata +220 -0
@@ -0,0 +1,453 @@
1
+ Processing by Maktoub::ArchivesController#show as HTML
2
+ Parameters: {"use_route"=>"maktoub"}
3
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/show.html.erb within layouts/maktoub/application (8.8ms)
4
+ Completed 200 OK in 70ms (Views: 69.4ms | ActiveRecord: 0.0ms)
5
+ Processing by Maktoub::ArchivesController#show as HTML
6
+ Parameters: {"use_route"=>"maktoub"}
7
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/show.html.erb within layouts/maktoub/application (9.0ms)
8
+ Completed 200 OK in 70ms (Views: 69.2ms | ActiveRecord: 0.0ms)
9
+ Processing by Maktoub::ArchivesController#show as HTML
10
+ Parameters: {"use_route"=>"maktoub"}
11
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/show.html.erb within layouts/maktoub/application (8.7ms)
12
+ Completed 200 OK in 68ms (Views: 67.7ms | ActiveRecord: 0.0ms)
13
+ Processing by Maktoub::ArchivesController#show as HTML
14
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
15
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
16
+ Processing by Maktoub::ArchivesController#show as HTML
17
+ Parameters: {"use_route"=>"maktoub"}
18
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/show.html.erb within layouts/maktoub/application (18.6ms)
19
+ Completed 200 OK in 48ms (Views: 47.9ms | ActiveRecord: 0.0ms)
20
+ Processing by Maktoub::ArchivesController#show as HTML
21
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
22
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
23
+ Processing by Maktoub::ArchivesController#show as HTML
24
+ Parameters: {"use_route"=>"maktoub"}
25
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/show.html.erb within layouts/maktoub/application (8.3ms)
26
+ Completed 200 OK in 66ms (Views: 66.1ms | ActiveRecord: 0.0ms)
27
+ Processing by Maktoub::ArchivesController#show as HTML
28
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
29
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
30
+ Processing by Maktoub::ArchivesController#show as HTML
31
+ Parameters: {"use_route"=>"maktoub"}
32
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/show.html.erb within layouts/maktoub/application (9.8ms)
33
+ Completed 200 OK in 69ms (Views: 68.8ms | ActiveRecord: 0.0ms)
34
+ Processing by Maktoub::ArchivesController#show as HTML
35
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
36
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
37
+ Processing by Maktoub::ArchivesController#show as HTML
38
+ Parameters: {"use_route"=>"maktoub"}
39
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (8.5ms)
40
+ Completed 200 OK in 67ms (Views: 66.9ms | ActiveRecord: 0.0ms)
41
+ Processing by Maktoub::ArchivesController#show as HTML
42
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
43
+ Completed 500 Internal Server Error in 36ms
44
+ Processing by Maktoub::ArchivesController#show as HTML
45
+ Parameters: {"use_route"=>"maktoub"}
46
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (8.3ms)
47
+ Completed 200 OK in 69ms (Views: 68.4ms | ActiveRecord: 0.0ms)
48
+ Processing by Maktoub::ArchivesController#show as HTML
49
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
50
+ Completed 500 Internal Server Error in 17ms
51
+ Processing by Maktoub::ArchivesController#show as HTML
52
+ Parameters: {"use_route"=>"maktoub"}
53
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (8.3ms)
54
+ Completed 200 OK in 66ms (Views: 65.7ms | ActiveRecord: 0.0ms)
55
+ Processing by Maktoub::ArchivesController#show as HTML
56
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
57
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
58
+ Processing by Maktoub::ArchivesController#show as HTML
59
+ Parameters: {"use_route"=>"maktoub"}
60
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (9.5ms)
61
+ Completed 200 OK in 42ms (Views: 41.4ms | ActiveRecord: 0.0ms)
62
+ Processing by Maktoub::ArchivesController#show as HTML
63
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
64
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
65
+ Processing by Maktoub::ArchivesController#show as HTML
66
+ Parameters: {"use_route"=>"maktoub"}
67
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (9.5ms)
68
+ Completed 200 OK in 40ms (Views: 40.1ms | ActiveRecord: 0.0ms)
69
+ Processing by Maktoub::ArchivesController#show as HTML
70
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
71
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
72
+ Processing by Maktoub::ArchivesController#show as HTML
73
+ Parameters: {"use_route"=>"maktoub"}
74
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (9.1ms)
75
+ Completed 200 OK in 41ms (Views: 40.7ms | ActiveRecord: 0.0ms)
76
+ Processing by Maktoub::ArchivesController#show as HTML
77
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
78
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
79
+ Processing by Maktoub::ArchivesController#show as HTML
80
+ Parameters: {"use_route"=>"maktoub"}
81
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (10.7ms)
82
+ Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms)
83
+ Processing by Maktoub::ArchivesController#show as HTML
84
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
85
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
86
+ Processing by Maktoub::ArchivesController#show as HTML
87
+ Parameters: {"use_route"=>"maktoub"}
88
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (9.3ms)
89
+ Completed 200 OK in 41ms (Views: 41.1ms | ActiveRecord: 0.0ms)
90
+ Processing by Maktoub::ArchivesController#show as HTML
91
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
92
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
93
+ Processing by Maktoub::ArchivesController#show as HTML
94
+ Parameters: {"use_route"=>"maktoub"}
95
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/archives/readme.erb within layouts/maktoub/application (9.5ms)
96
+ Completed 200 OK in 43ms (Views: 42.2ms | ActiveRecord: 0.0ms)
97
+ Processing by Maktoub::ArchivesController#show as HTML
98
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
99
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
100
+ Processing by Maktoub::ArchivesController#show as HTML
101
+ Parameters: {"use_route"=>"maktoub"}
102
+ Completed 500 Internal Server Error in 48ms
103
+ Processing by Maktoub::ArchivesController#show as HTML
104
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
105
+ Completed 500 Internal Server Error in 1ms
106
+ Processing by Maktoub::ArchivesController#show as HTML
107
+ Parameters: {"use_route"=>"maktoub"}
108
+ Completed 500 Internal Server Error in 89ms
109
+ Processing by Maktoub::ArchivesController#show as HTML
110
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
111
+ Completed 500 Internal Server Error in 1ms
112
+ Processing by Maktoub::ArchivesController#show as HTML
113
+ Parameters: {"use_route"=>"maktoub"}
114
+ Completed 500 Internal Server Error in 83ms
115
+ Processing by Maktoub::ArchivesController#show as HTML
116
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
117
+ Completed 500 Internal Server Error in 1ms
118
+ Processing by Maktoub::ArchivesController#show as HTML
119
+ Parameters: {"use_route"=>"maktoub"}
120
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletter_mailer/readme.erb within layouts/maktoub/application (9.6ms)
121
+ Completed 200 OK in 80ms (Views: 79.6ms | ActiveRecord: 0.0ms)
122
+ Processing by Maktoub::ArchivesController#show as HTML
123
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
124
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
125
+ Processing by Maktoub::ArchivesController#show as HTML
126
+ Parameters: {"use_route"=>"maktoub"}
127
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.4ms)
128
+ Completed 200 OK in 78ms (Views: 77.8ms | ActiveRecord: 0.0ms)
129
+ Processing by Maktoub::ArchivesController#show as HTML
130
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
131
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
132
+ Processing by Maktoub::ArchivesController#show as HTML
133
+ Parameters: {"use_route"=>"maktoub"}
134
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.6ms)
135
+ Completed 200 OK in 80ms (Views: 79.7ms | ActiveRecord: 0.0ms)
136
+ Processing by Maktoub::ArchivesController#show as HTML
137
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
138
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
139
+ Processing by Maktoub::ArchivesController#show as HTML
140
+ Parameters: {"use_route"=>"maktoub"}
141
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.6ms)
142
+ Completed 200 OK in 79ms (Views: 78.6ms | ActiveRecord: 0.0ms)
143
+ Processing by Maktoub::ArchivesController#show as HTML
144
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
145
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
146
+ Processing by Maktoub::ArchivesController#show as HTML
147
+ Parameters: {"use_route"=>"maktoub"}
148
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.9ms)
149
+ Completed 200 OK in 81ms (Views: 81.0ms | ActiveRecord: 0.0ms)
150
+ Processing by Maktoub::ArchivesController#show as HTML
151
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
152
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
153
+ Processing by Maktoub::ArchivesController#show as HTML
154
+ Parameters: {"use_route"=>"maktoub"}
155
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.1ms)
156
+ Completed 200 OK in 81ms (Views: 80.9ms | ActiveRecord: 0.0ms)
157
+ Processing by Maktoub::ArchivesController#show as HTML
158
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
159
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
160
+ Processing by Maktoub::ArchivesController#show as HTML
161
+ Parameters: {"use_route"=>"maktoub"}
162
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (12.6ms)
163
+ Completed 200 OK in 84ms (Views: 83.4ms | ActiveRecord: 0.0ms)
164
+ Processing by Maktoub::ArchivesController#show as HTML
165
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
166
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
167
+ Processing by Maktoub::ArchivesController#show as HTML
168
+ Parameters: {"use_route"=>"maktoub"}
169
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.4ms)
170
+ Completed 200 OK in 77ms (Views: 76.5ms | ActiveRecord: 0.0ms)
171
+ Processing by Maktoub::ArchivesController#show as HTML
172
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
173
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
174
+ Processing by Maktoub::ArchivesController#show as HTML
175
+ Parameters: {"use_route"=>"maktoub"}
176
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.0ms)
177
+ Completed 200 OK in 80ms (Views: 79.3ms | ActiveRecord: 0.0ms)
178
+ Processing by Maktoub::ArchivesController#show as HTML
179
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
180
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
181
+ Processing by Maktoub::ArchivesController#show as HTML
182
+ Parameters: {"use_route"=>"maktoub"}
183
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.5ms)
184
+ Completed 200 OK in 79ms (Views: 78.9ms | ActiveRecord: 0.0ms)
185
+ Processing by Maktoub::ArchivesController#show as HTML
186
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
187
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
188
+ Processing by Maktoub::ArchivesController#show as HTML
189
+ Parameters: {"use_route"=>"maktoub"}
190
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.3ms)
191
+ Completed 200 OK in 87ms (Views: 86.4ms | ActiveRecord: 0.0ms)
192
+ Processing by Maktoub::ArchivesController#show as HTML
193
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
194
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
195
+ Processing by Maktoub::ArchivesController#show as HTML
196
+ Parameters: {"use_route"=>"maktoub"}
197
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.6ms)
198
+ Completed 200 OK in 80ms (Views: 79.5ms | ActiveRecord: 0.0ms)
199
+ Processing by Maktoub::ArchivesController#show as HTML
200
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
201
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
202
+ Processing by Maktoub::ArchivesController#show as HTML
203
+ Parameters: {"use_route"=>"maktoub"}
204
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (11.1ms)
205
+ Completed 200 OK in 83ms (Views: 82.4ms | ActiveRecord: 0.0ms)
206
+ Processing by Maktoub::ArchivesController#show as HTML
207
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
208
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
209
+ Processing by Maktoub::ArchivesController#show as HTML
210
+ Parameters: {"use_route"=>"maktoub"}
211
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.4ms)
212
+ Completed 200 OK in 82ms (Views: 81.5ms | ActiveRecord: 0.0ms)
213
+ Processing by Maktoub::ArchivesController#show as HTML
214
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
215
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
216
+ Processing by Maktoub::ArchivesController#show as HTML
217
+ Parameters: {"use_route"=>"maktoub"}
218
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.6ms)
219
+ Completed 200 OK in 77ms (Views: 76.6ms | ActiveRecord: 0.0ms)
220
+ Processing by Maktoub::ArchivesController#show as HTML
221
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
222
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
223
+ Processing by Maktoub::ArchivesController#show as HTML
224
+ Parameters: {"use_route"=>"maktoub"}
225
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.7ms)
226
+ Completed 200 OK in 76ms (Views: 75.8ms | ActiveRecord: 0.0ms)
227
+ Processing by Maktoub::ArchivesController#show as HTML
228
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
229
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
230
+ Processing by Maktoub::ArchivesController#show as HTML
231
+ Parameters: {"use_route"=>"maktoub"}
232
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (11.0ms)
233
+ Completed 200 OK in 103ms (Views: 102.6ms | ActiveRecord: 0.0ms)
234
+ Processing by Maktoub::ArchivesController#show as HTML
235
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
236
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
237
+ Processing by Maktoub::ArchivesController#show as HTML
238
+ Parameters: {"use_route"=>"maktoub"}
239
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.5ms)
240
+ Completed 200 OK in 84ms (Views: 83.2ms | ActiveRecord: 0.0ms)
241
+ Processing by Maktoub::ArchivesController#show as HTML
242
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
243
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
244
+ Processing by Maktoub::ArchivesController#show as HTML
245
+ Parameters: {"use_route"=>"maktoub"}
246
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.2ms)
247
+ Completed 200 OK in 77ms (Views: 77.0ms | ActiveRecord: 0.0ms)
248
+ Processing by Maktoub::ArchivesController#show as HTML
249
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
250
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
251
+ Processing by Maktoub::ArchivesController#show as HTML
252
+ Parameters: {"use_route"=>"maktoub"}
253
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.6ms)
254
+ Completed 200 OK in 79ms (Views: 78.2ms | ActiveRecord: 0.0ms)
255
+ Processing by Maktoub::ArchivesController#show as HTML
256
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
257
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
258
+ Processing by Maktoub::ArchivesController#show as HTML
259
+ Parameters: {"use_route"=>"maktoub"}
260
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.7ms)
261
+ Completed 200 OK in 81ms (Views: 80.9ms | ActiveRecord: 0.0ms)
262
+ Processing by Maktoub::ArchivesController#show as HTML
263
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
264
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
265
+ Processing by Maktoub::ArchivesController#show as HTML
266
+ Parameters: {"use_route"=>"maktoub"}
267
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (10.0ms)
268
+ Completed 200 OK in 81ms (Views: 80.9ms | ActiveRecord: 0.0ms)
269
+ Processing by Maktoub::ArchivesController#show as HTML
270
+ Parameters: {"use_route"=>"maktoub"}
271
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
272
+ Processing by Maktoub::ArchivesController#show as HTML
273
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
274
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
275
+ Processing by Maktoub::ArchivesController#show as HTML
276
+ Parameters: {"use_route"=>"maktoub"}
277
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (16.2ms)
278
+ Completed 200 OK in 89ms (Views: 89.0ms | ActiveRecord: 0.0ms)
279
+ Processing by Maktoub::ArchivesController#show as HTML
280
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
281
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
282
+ Processing by Maktoub::ArchivesController#show as HTML
283
+ Parameters: {"use_route"=>"maktoub"}
284
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
285
+ Processing by Maktoub::ArchivesController#show as HTML
286
+ Parameters: {"use_route"=>"maktoub"}
287
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.4ms)
288
+ Completed 200 OK in 77ms (Views: 77.1ms | ActiveRecord: 0.0ms)
289
+ Processing by Maktoub::ArchivesController#show as HTML
290
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
291
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
292
+ Processing by Maktoub::ArchivesController#show as HTML
293
+ Parameters: {"use_route"=>"maktoub"}
294
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
295
+ Processing by Maktoub::ArchivesController#show as HTML
296
+ Parameters: {"use_route"=>"maktoub"}
297
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/application (9.8ms)
298
+ Completed 200 OK in 81ms (Views: 80.4ms | ActiveRecord: 0.0ms)
299
+ Processing by Maktoub::ArchivesController#show as HTML
300
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
301
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
302
+ Processing by Maktoub::ArchivesController#show as HTML
303
+ Parameters: {"use_route"=>"maktoub"}
304
+ Completed 200 OK in 1ms (Views: 1.4ms | ActiveRecord: 0.0ms)
305
+ Processing by Maktoub::ArchivesController#show as HTML
306
+ Parameters: {"use_route"=>"maktoub"}
307
+ Completed 500 Internal Server Error in 89ms
308
+ Processing by Maktoub::ArchivesController#show as HTML
309
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
310
+ Completed 500 Internal Server Error in 1ms
311
+ Processing by Maktoub::ArchivesController#show as HTML
312
+ Parameters: {"use_route"=>"maktoub"}
313
+ Completed 500 Internal Server Error in 1ms
314
+ Processing by Maktoub::ArchivesController#show as HTML
315
+ Parameters: {"use_route"=>"maktoub"}
316
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (13.1ms)
317
+ Completed 200 OK in 90ms (Views: 89.9ms | ActiveRecord: 0.0ms)
318
+ Processing by Maktoub::ArchivesController#show as HTML
319
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
320
+ Completed 200 OK in 1ms (Views: 1.3ms | ActiveRecord: 0.0ms)
321
+ Processing by Maktoub::ArchivesController#show as HTML
322
+ Parameters: {"use_route"=>"maktoub"}
323
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
324
+ Processing by Maktoub::ArchivesController#show as HTML
325
+ Parameters: {"use_route"=>"maktoub"}
326
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (9.9ms)
327
+ Completed 200 OK in 79ms (Views: 78.7ms | ActiveRecord: 0.0ms)
328
+ Processing by Maktoub::ArchivesController#show as HTML
329
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
330
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
331
+ Processing by Maktoub::ArchivesController#show as HTML
332
+ Parameters: {"use_route"=>"maktoub"}
333
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
334
+ Processing by Maktoub::ArchivesController#show as HTML
335
+ Parameters: {"use_route"=>"maktoub"}
336
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (10.1ms)
337
+ Completed 200 OK in 80ms (Views: 79.2ms | ActiveRecord: 0.0ms)
338
+ Processing by Maktoub::ArchivesController#show as HTML
339
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
340
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
341
+ Processing by Maktoub::ArchivesController#show as HTML
342
+ Parameters: {"use_route"=>"maktoub"}
343
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
344
+ Processing by Maktoub::ArchivesController#show as HTML
345
+ Parameters: {"use_route"=>"maktoub"}
346
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (9.9ms)
347
+ Completed 200 OK in 79ms (Views: 78.3ms | ActiveRecord: 0.0ms)
348
+ Processing by Maktoub::ArchivesController#show as HTML
349
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
350
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
351
+ Processing by Maktoub::ArchivesController#show as HTML
352
+ Parameters: {"use_route"=>"maktoub"}
353
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
354
+ Processing by Maktoub::ArchivesController#show as HTML
355
+ Parameters: {"use_route"=>"maktoub"}
356
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (10.2ms)
357
+ Completed 200 OK in 133ms (Views: 132.4ms | ActiveRecord: 0.0ms)
358
+ Processing by Maktoub::ArchivesController#show as HTML
359
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
360
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
361
+ Processing by Maktoub::ArchivesController#show as HTML
362
+ Parameters: {"use_route"=>"maktoub"}
363
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
364
+ Processing by Maktoub::ArchivesController#show as HTML
365
+ Parameters: {"use_route"=>"maktoub"}
366
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (9.4ms)
367
+ Completed 200 OK in 79ms (Views: 78.6ms | ActiveRecord: 0.0ms)
368
+ Processing by Maktoub::ArchivesController#show as HTML
369
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
370
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
371
+ Processing by Maktoub::ArchivesController#show as HTML
372
+ Parameters: {"use_route"=>"maktoub"}
373
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
374
+ Processing by Maktoub::ArchivesController#show as HTML
375
+ Parameters: {"use_route"=>"maktoub"}
376
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (9.5ms)
377
+ Completed 200 OK in 77ms (Views: 76.7ms | ActiveRecord: 0.0ms)
378
+ Processing by Maktoub::ArchivesController#show as HTML
379
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
380
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
381
+ Processing by Maktoub::ArchivesController#show as HTML
382
+ Parameters: {"use_route"=>"maktoub"}
383
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
384
+ Processing by Maktoub::ArchivesController#show as HTML
385
+ Parameters: {"use_route"=>"maktoub"}
386
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (9.3ms)
387
+ Completed 200 OK in 79ms (Views: 78.3ms | ActiveRecord: 0.0ms)
388
+ Processing by Maktoub::ArchivesController#show as HTML
389
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
390
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
391
+ Processing by Maktoub::ArchivesController#show as HTML
392
+ Parameters: {"use_route"=>"maktoub"}
393
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
394
+ Processing by Maktoub::ArchivesController#show as HTML
395
+ Parameters: {"use_route"=>"maktoub"}
396
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (10.3ms)
397
+ Completed 200 OK in 85ms (Views: 84.8ms | ActiveRecord: 0.0ms)
398
+ Processing by Maktoub::ArchivesController#show as HTML
399
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
400
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
401
+ Processing by Maktoub::ArchivesController#show as HTML
402
+ Parameters: {"use_route"=>"maktoub"}
403
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
404
+ Processing by Maktoub::ArchivesController#show as HTML
405
+ Parameters: {"use_route"=>"maktoub"}
406
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (9.7ms)
407
+ Completed 500 Internal Server Error in 99ms
408
+ Processing by Maktoub::ArchivesController#show as HTML
409
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
410
+ Completed 500 Internal Server Error in 2ms
411
+ Processing by Maktoub::ArchivesController#show as HTML
412
+ Parameters: {"use_route"=>"maktoub"}
413
+ Completed 500 Internal Server Error in 1ms
414
+ Processing by Maktoub::ArchivesController#show as HTML
415
+ Parameters: {"use_route"=>"maktoub"}
416
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (11.3ms)
417
+ Completed 500 Internal Server Error in 121ms
418
+ Processing by Maktoub::ArchivesController#show as HTML
419
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
420
+ Completed 500 Internal Server Error in 17ms
421
+ Processing by Maktoub::ArchivesController#show as HTML
422
+ Parameters: {"use_route"=>"maktoub"}
423
+ Completed 500 Internal Server Error in 17ms
424
+ Processing by Maktoub::ArchivesController#show as HTML
425
+ Parameters: {"use_route"=>"maktoub"}
426
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (11.8ms)
427
+ Completed 200 OK in 84ms (Views: 84.1ms | ActiveRecord: 0.0ms)
428
+ Processing by Maktoub::ArchivesController#show as HTML
429
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
430
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
431
+ Processing by Maktoub::ArchivesController#show as HTML
432
+ Parameters: {"use_route"=>"maktoub"}
433
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)
434
+ Processing by Maktoub::ArchivesController#show as HTML
435
+ Parameters: {"use_route"=>"maktoub"}
436
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (15.5ms)
437
+ Completed 200 OK in 136ms (Views: 99.0ms | ActiveRecord: 0.0ms)
438
+ Processing by Maktoub::ArchivesController#show as HTML
439
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
440
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
441
+ Processing by Maktoub::ArchivesController#show as HTML
442
+ Parameters: {"use_route"=>"maktoub"}
443
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
444
+ Processing by Maktoub::ArchivesController#show as HTML
445
+ Parameters: {"use_route"=>"maktoub"}
446
+ Rendered /Users/zaid/dev/maktoub/app/views/maktoub/newsletters/readme.erb within layouts/maktoub/newsletter_mailer (10.2ms)
447
+ Completed 200 OK in 94ms (Views: 53.3ms | ActiveRecord: 0.0ms)
448
+ Processing by Maktoub::ArchivesController#show as HTML
449
+ Parameters: {"newsletter"=>"test_template", "use_route"=>"maktoub"}
450
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
451
+ Processing by Maktoub::ArchivesController#show as HTML
452
+ Parameters: {"use_route"=>"maktoub"}
453
+ Completed 200 OK in 1ms (Views: 1.0ms | ActiveRecord: 0.0ms)