status_cat 0.0.8

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 (124) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +161 -0
  4. data/Rakefile +31 -0
  5. data/app/assets/javascripts/status-cat/application.js +15 -0
  6. data/app/assets/stylesheets/status-cat/application.css +13 -0
  7. data/app/controllers/status_cat/status_controller.rb +26 -0
  8. data/app/helpers/status_cat/status_helper.rb +105 -0
  9. data/app/mailers/status_cat/status_mailer.rb +12 -0
  10. data/app/views/status_cat/status/index.html.erb +4 -0
  11. data/app/views/status_cat/status_mailer/failure.html.erb +9 -0
  12. data/app/views/status_cat/status_mailer/failure.text.erb +1 -0
  13. data/config/locales/en.yml +7 -0
  14. data/config/routes.rb +4 -0
  15. data/lib/status_cat/checkers/action_mailer.rb +31 -0
  16. data/lib/status_cat/checkers/active_record.rb +24 -0
  17. data/lib/status_cat/checkers/base.rb +36 -0
  18. data/lib/status_cat/checkers/delayed_job.rb +28 -0
  19. data/lib/status_cat/checkers/s3.rb +17 -0
  20. data/lib/status_cat/checkers/stripe.rb +19 -0
  21. data/lib/status_cat/config.rb +33 -0
  22. data/lib/status_cat/engine.rb +5 -0
  23. data/lib/status_cat/status.rb +37 -0
  24. data/lib/status_cat/version.rb +3 -0
  25. data/lib/status_cat.rb +22 -0
  26. data/lib/tasks/status_cat.rake +14 -0
  27. data/spec/controllers/status_cat/status_controller_spec.rb +36 -0
  28. data/spec/coverage_spec.rb +22 -0
  29. data/spec/data/report.txt +10 -0
  30. data/spec/data/report.txt.tmp +10 -0
  31. data/spec/data/status_report_format.txt +1 -0
  32. data/spec/data/status_report_format.txt.tmp +1 -0
  33. data/spec/dummy/README.rdoc +261 -0
  34. data/spec/dummy/Rakefile +7 -0
  35. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  36. data/spec/dummy/app/assets/stylesheets/application.css +13 -0
  37. data/spec/dummy/app/checkers/dummy.rb +10 -0
  38. data/spec/dummy/app/controllers/application_controller.rb +10 -0
  39. data/spec/dummy/app/controllers/root_controller.rb +20 -0
  40. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  41. data/spec/dummy/app/views/layouts/admin.html.erb +14 -0
  42. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  43. data/spec/dummy/app/views/root/index.html.erb +8 -0
  44. data/spec/dummy/app/views/root/mail.html.erb +1 -0
  45. data/spec/dummy/config/application.rb +54 -0
  46. data/spec/dummy/config/boot.rb +10 -0
  47. data/spec/dummy/config/database.yml +25 -0
  48. data/spec/dummy/config/environment.rb +5 -0
  49. data/spec/dummy/config/environments/development.rb +32 -0
  50. data/spec/dummy/config/environments/production.rb +69 -0
  51. data/spec/dummy/config/environments/test.rb +33 -0
  52. data/spec/dummy/config/initializers/action_mailer.rb +16 -0
  53. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  54. data/spec/dummy/config/initializers/inflections.rb +15 -0
  55. data/spec/dummy/config/initializers/mime_types.rb +5 -0
  56. data/spec/dummy/config/initializers/secret_token.rb +7 -0
  57. data/spec/dummy/config/initializers/session_store.rb +8 -0
  58. data/spec/dummy/config/initializers/status_cat.rb +17 -0
  59. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  60. data/spec/dummy/config/locales/en.yml +5 -0
  61. data/spec/dummy/config/passwords.yml +5 -0
  62. data/spec/dummy/config/passwords.yml.sample +5 -0
  63. data/spec/dummy/config/routes.rb +11 -0
  64. data/spec/dummy/config.ru +4 -0
  65. data/spec/dummy/db/development.sqlite3 +0 -0
  66. data/spec/dummy/db/production.sqlite3 +0 -0
  67. data/spec/dummy/db/schema.rb +16 -0
  68. data/spec/dummy/db/test.sqlite3 +0 -0
  69. data/spec/dummy/log/development.log +889 -0
  70. data/spec/dummy/log/test.log +2474 -0
  71. data/spec/dummy/public/404.html +26 -0
  72. data/spec/dummy/public/422.html +26 -0
  73. data/spec/dummy/public/500.html +25 -0
  74. data/spec/dummy/public/favicon.ico +0 -0
  75. data/spec/dummy/script/rails +6 -0
  76. data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  77. data/spec/dummy/tmp/cache/assets/D03/1A0/sprockets%2F9007913fce90a3c1766dc0d8282bd10b +0 -0
  78. data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  79. data/spec/dummy/tmp/cache/assets/D37/670/sprockets%2Fe230d6e60a0226de8748d1e26ee741cb +0 -0
  80. data/spec/dummy/tmp/cache/assets/D3D/4E0/sprockets%2F999ebb6862b2b7ca1b20b765f12704ed +0 -0
  81. data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  82. data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  83. data/spec/dummy/tmp/cache/assets/DCB/210/sprockets%2Fdf0a443455a9d359be2e931ba70ecdfe +0 -0
  84. data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  85. data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  86. data/spec/dummy/tmp/cache/assets/development/sprockets/0891c389c9f47b48b695b65602d93a57 +0 -0
  87. data/spec/dummy/tmp/cache/assets/development/sprockets/0edf8c53de2ee6fe74108f1ecc87e457 +0 -0
  88. data/spec/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  89. data/spec/dummy/tmp/cache/assets/development/sprockets/264f02aaf3a74cd5a91b5575c69b784a +0 -0
  90. data/spec/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  91. data/spec/dummy/tmp/cache/assets/development/sprockets/31c22cfbb3b5f7f9e1e9a013997ad8aa +0 -0
  92. data/spec/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  93. data/spec/dummy/tmp/cache/assets/development/sprockets/400d7aa6ca317151fe36fc9f02ccfc4e +0 -0
  94. data/spec/dummy/tmp/cache/assets/development/sprockets/40da66d7323888023264d2f06b7525d4 +0 -0
  95. data/spec/dummy/tmp/cache/assets/development/sprockets/4bddf542ba5114155847240380cf6e7c +0 -0
  96. data/spec/dummy/tmp/cache/assets/development/sprockets/572759e0267736e8961ff1fad85cfe47 +0 -0
  97. data/spec/dummy/tmp/cache/assets/development/sprockets/6cec2a8a17b78e61daecff44044e1179 +0 -0
  98. data/spec/dummy/tmp/cache/assets/development/sprockets/952a706f512b208187110eff045a0e66 +0 -0
  99. data/spec/dummy/tmp/cache/assets/development/sprockets/c7d1ab26b0b22ab011a9d30f44014f06 +0 -0
  100. data/spec/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  101. data/spec/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  102. data/spec/dummy/tmp/cache/assets/development/sprockets/f1ebb0ab4631911fbbdf496685d8b7a0 +0 -0
  103. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  104. data/spec/dummy/tmp/pids/server.pid +1 -0
  105. data/spec/helpers/status_cat/status_helper_spec.rb +101 -0
  106. data/spec/lib/status_cat/checkers/action_mailer_spec.rb +72 -0
  107. data/spec/lib/status_cat/checkers/active_record_spec.rb +45 -0
  108. data/spec/lib/status_cat/checkers/base_spec.rb +56 -0
  109. data/spec/lib/status_cat/checkers/delayed_job_spec.rb +15 -0
  110. data/spec/lib/status_cat/checkers/s3_spec.rb +15 -0
  111. data/spec/lib/status_cat/checkers/stripe_spec.rb +15 -0
  112. data/spec/lib/status_cat/config_spec.rb +133 -0
  113. data/spec/lib/status_cat/engine_spec.rb +9 -0
  114. data/spec/lib/status_cat/status_spec.rb +120 -0
  115. data/spec/lib/status_cat/version_spec.rb +11 -0
  116. data/spec/lib/status_cat_spec.rb +21 -0
  117. data/spec/lib/tasks/status_cat.rake_spec.rb +32 -0
  118. data/spec/mailers/status_cat/status_mailer_spec.rb +38 -0
  119. data/spec/spec_helper.rb +50 -0
  120. data/spec/support/shared/checker.rb +25 -0
  121. data/spec/views/status_cat/status/index.html.erb_spec.rb +25 -0
  122. data/spec/views/status_cat/status_mailer/failure.html.erb_spec.rb +16 -0
  123. data/spec/views/status_cat/status_mailer/failure.text.erb_spec.rb +15 -0
  124. metadata +373 -0
@@ -0,0 +1,2474 @@
1
+  (1.0ms) select max(version) from schema_migrations
2
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
3
+  (0.4ms) select max(version) from schema_migrations
4
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
5
+  (0.4ms) select max(version) from schema_migrations
6
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
7
+  (0.3ms) select max(version) from schema_migrations
8
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
9
+  (0.2ms) select max(version) from schema_migrations
10
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
11
+  (0.1ms) select max(version) from schema_migrations
12
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
13
+  (0.1ms) select max(version) from schema_migrations
14
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
15
+  (0.2ms) select max(version) from schema_migrations
16
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
17
+  (0.2ms) select max(version) from schema_migrations
18
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
19
+  (0.1ms) select max(version) from schema_migrations
20
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
21
+  (0.2ms) select max(version) from schema_migrations
22
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
23
+  (0.1ms) select max(version) from schema_migrations
24
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
25
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (19.6ms)
26
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.7ms)
27
+
28
+ Sent mail to ops@schrodingersbox.com (25.0ms)
29
+ Date: Wed, 28 Aug 2013 12:21:48 -0700
30
+ From: ops@schrodingersbox.com
31
+ To: ops@schrodingersbox.com
32
+ Message-ID: <521e4dcca758d_be673fc28d8606d445029@shakezula.local.mail>
33
+ Subject: TEST StatusCat Failure
34
+ Mime-Version: 1.0
35
+ Content-Type: multipart/alternative;
36
+ boundary="--==_mimepart_521e4dcca2f60_be673fc28d8606d44494f";
37
+ charset=UTF-8
38
+ Content-Transfer-Encoding: 7bit
39
+
40
+
41
+ ----==_mimepart_521e4dcca2f60_be673fc28d8606d44494f
42
+ Content-Type: text/plain;
43
+ charset=UTF-8
44
+ Content-Transfer-Encoding: 7bit
45
+
46
+ ----------------------
47
+ Name | Value | Status
48
+ ----------------------
49
+ base | | OK
50
+ ----------------------
51
+
52
+ ----==_mimepart_521e4dcca2f60_be673fc28d8606d44494f
53
+ Content-Type: text/html;
54
+ charset=UTF-8
55
+ Content-Transfer-Encoding: 7bit
56
+
57
+ <!DOCTYPE html>
58
+ <html>
59
+ <head>
60
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
61
+ </head>
62
+ <body>
63
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
64
+ </body>
65
+ </html>
66
+ ----==_mimepart_521e4dcca2f60_be673fc28d8606d44494f--
67
+
68
+ Processing by StatusCat::StatusController#index as HTML
69
+  (0.2ms) select max(version) from schema_migrations
70
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
71
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (0.3ms)
72
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.2ms)
73
+ Processing by StatusCat::StatusController#index as HTML
74
+  (0.2ms) select max(version) from schema_migrations
75
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
76
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
77
+  (0.2ms) select max(version) from schema_migrations
78
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
79
+  (0.2ms) select max(version) from schema_migrations
80
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
81
+  (0.2ms) select max(version) from schema_migrations
82
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
83
+  (0.2ms) select max(version) from schema_migrations
84
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
85
+  (0.2ms) select max(version) from schema_migrations
86
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
87
+  (0.3ms) select max(version) from schema_migrations
88
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
89
+  (0.2ms) select max(version) from schema_migrations
90
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
91
+  (0.1ms) select max(version) from schema_migrations
92
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
93
+  (0.2ms) select max(version) from schema_migrations
94
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
95
+  (0.1ms) select max(version) from schema_migrations
96
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
97
+  (0.1ms) select max(version) from schema_migrations
98
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
99
+  (0.2ms) select max(version) from schema_migrations
100
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
101
+  (0.2ms) select max(version) from schema_migrations
102
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
103
+  (0.2ms) select max(version) from schema_migrations
104
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
105
+  (0.2ms) select max(version) from schema_migrations
106
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
107
+  (0.2ms) select max(version) from schema_migrations
108
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
109
+  (0.2ms) select max(version) from schema_migrations
110
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
111
+  (0.2ms) select max(version) from schema_migrations
112
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
113
+  (0.2ms) select max(version) from schema_migrations
114
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
115
+  (0.2ms) select max(version) from schema_migrations
116
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
117
+  (0.2ms) select max(version) from schema_migrations
118
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
119
+  (0.2ms) select max(version) from schema_migrations
120
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
121
+  (0.2ms) select max(version) from schema_migrations
122
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
123
+  (0.2ms) select max(version) from schema_migrations
124
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
125
+  (0.4ms) select max(version) from schema_migrations
126
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
127
+  (0.3ms) select max(version) from schema_migrations
128
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
129
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (12.1ms)
130
+  (0.2ms) select max(version) from schema_migrations
131
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
132
+  (0.3ms) select max(version) from schema_migrations
133
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
134
+  (0.2ms) select max(version) from schema_migrations
135
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
136
+  (0.2ms) select max(version) from schema_migrations
137
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
138
+  (0.2ms) select max(version) from schema_migrations
139
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
140
+  (0.2ms) select max(version) from schema_migrations
141
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
142
+  (0.2ms) select max(version) from schema_migrations
143
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
144
+  (0.2ms) select max(version) from schema_migrations
145
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
146
+  (0.2ms) select max(version) from schema_migrations
147
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
148
+  (0.2ms) select max(version) from schema_migrations
149
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
150
+  (0.2ms) select max(version) from schema_migrations
151
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
152
+  (0.2ms) select max(version) from schema_migrations
153
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
154
+  (0.2ms) select max(version) from schema_migrations
155
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
156
+  (0.2ms) select max(version) from schema_migrations
157
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
158
+ Processing by StatusCat::StatusController#index as HTML
159
+  (0.2ms) select max(version) from schema_migrations
160
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
161
+ Completed 200 OK in 45ms (Views: 42.9ms | ActiveRecord: 0.2ms)
162
+ Processing by StatusCat::StatusController#index as HTML
163
+  (0.2ms) select max(version) from schema_migrations
164
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
165
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
166
+  (0.1ms) select max(version) from schema_migrations
167
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
168
+  (0.2ms) select max(version) from schema_migrations
169
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
170
+  (0.2ms) select max(version) from schema_migrations
171
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
172
+  (0.2ms) select max(version) from schema_migrations
173
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
174
+  (0.1ms) select max(version) from schema_migrations
175
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
176
+  (0.2ms) select max(version) from schema_migrations
177
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
178
+  (0.2ms) select max(version) from schema_migrations
179
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
180
+  (0.2ms) select max(version) from schema_migrations
181
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
182
+  (0.2ms) select max(version) from schema_migrations
183
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
184
+  (0.2ms) select max(version) from schema_migrations
185
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
186
+  (0.1ms) select max(version) from schema_migrations
187
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
188
+  (0.1ms) select max(version) from schema_migrations
189
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
190
+
191
+ Sent mail to ops@schrodingersbox.com (14.7ms)
192
+ Date: Wed, 28 Aug 2013 12:24:42 -0700
193
+ From: ops@schrodingersbox.com
194
+ To: ops@schrodingersbox.com
195
+ Message-ID: <521e4e7a868e2_beb33ff2084606d894547@shakezula.local.mail>
196
+ Subject: TEST StatusCat Failure
197
+ Mime-Version: 1.0
198
+ Content-Type: multipart/alternative;
199
+ boundary="--==_mimepart_521e4e7a84484_beb33ff2084606d8944e3";
200
+ charset=UTF-8
201
+ Content-Transfer-Encoding: 7bit
202
+
203
+
204
+ ----==_mimepart_521e4e7a84484_beb33ff2084606d8944e3
205
+ Content-Type: text/plain;
206
+ charset=UTF-8
207
+ Content-Transfer-Encoding: 7bit
208
+
209
+ ----------------------
210
+ Name | Value | Status
211
+ ----------------------
212
+ base | | OK
213
+ ----------------------
214
+
215
+ ----==_mimepart_521e4e7a84484_beb33ff2084606d8944e3
216
+ Content-Type: text/html;
217
+ charset=UTF-8
218
+ Content-Transfer-Encoding: 7bit
219
+
220
+ <!DOCTYPE html>
221
+ <html>
222
+ <head>
223
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
224
+ </head>
225
+ <body>
226
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
227
+ </body>
228
+ </html>
229
+ ----==_mimepart_521e4e7a84484_beb33ff2084606d8944e3--
230
+
231
+  (0.2ms) select max(version) from schema_migrations
232
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
233
+  (0.1ms) select max(version) from schema_migrations
234
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
235
+  (0.1ms) select max(version) from schema_migrations
236
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
237
+  (0.1ms) select max(version) from schema_migrations
238
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
239
+  (0.1ms) select max(version) from schema_migrations
240
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
241
+  (0.1ms) select max(version) from schema_migrations
242
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
243
+  (0.4ms) select max(version) from schema_migrations
244
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
245
+  (0.3ms) select max(version) from schema_migrations
246
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
247
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (9.1ms)
248
+  (0.2ms) select max(version) from schema_migrations
249
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
250
+  (0.2ms) select max(version) from schema_migrations
251
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
252
+  (0.2ms) select max(version) from schema_migrations
253
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
254
+  (0.2ms) select max(version) from schema_migrations
255
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
256
+  (0.2ms) select max(version) from schema_migrations
257
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
258
+  (0.2ms) select max(version) from schema_migrations
259
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
260
+  (0.2ms) select max(version) from schema_migrations
261
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
262
+  (0.2ms) select max(version) from schema_migrations
263
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
264
+  (0.2ms) select max(version) from schema_migrations
265
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
266
+  (0.2ms) select max(version) from schema_migrations
267
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
268
+
269
+ Sent mail to ops@schrodingersbox.com (16.4ms)
270
+ Date: Wed, 28 Aug 2013 12:31:01 -0700
271
+ From: ops@schrodingersbox.com
272
+ To: ops@schrodingersbox.com
273
+ Message-ID: <521e4ff56443d_bf0b3ff9ad0606d03765a@shakezula.local.mail>
274
+ Subject: TEST StatusCat Failure
275
+ Mime-Version: 1.0
276
+ Content-Type: multipart/alternative;
277
+ boundary="--==_mimepart_521e4ff5609f7_bf0b3ff9ad0606d0375dd";
278
+ charset=UTF-8
279
+ Content-Transfer-Encoding: 7bit
280
+
281
+
282
+ ----==_mimepart_521e4ff5609f7_bf0b3ff9ad0606d0375dd
283
+ Content-Type: text/plain;
284
+ charset=UTF-8
285
+ Content-Transfer-Encoding: 7bit
286
+
287
+ ----------------------
288
+ Name | Value | Status
289
+ ----------------------
290
+ base | | OK
291
+ ----------------------
292
+
293
+ ----==_mimepart_521e4ff5609f7_bf0b3ff9ad0606d0375dd
294
+ Content-Type: text/html;
295
+ charset=UTF-8
296
+ Content-Transfer-Encoding: 7bit
297
+
298
+ <!DOCTYPE html>
299
+ <html>
300
+ <head>
301
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
302
+ </head>
303
+ <body>
304
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
305
+ </body>
306
+ </html>
307
+ ----==_mimepart_521e4ff5609f7_bf0b3ff9ad0606d0375dd--
308
+
309
+  (0.2ms) select max(version) from schema_migrations
310
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
311
+ Processing by StatusCat::StatusController#index as HTML
312
+  (0.2ms) select max(version) from schema_migrations
313
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
314
+ Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.2ms)
315
+ Processing by StatusCat::StatusController#index as HTML
316
+  (0.3ms) select max(version) from schema_migrations
317
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
318
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
319
+  (0.1ms) select max(version) from schema_migrations
320
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
321
+  (0.2ms) select max(version) from schema_migrations
322
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
323
+  (0.2ms) select max(version) from schema_migrations
324
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
325
+  (0.1ms) select max(version) from schema_migrations
326
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
327
+  (0.1ms) select max(version) from schema_migrations
328
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
329
+  (0.2ms) select max(version) from schema_migrations
330
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
331
+  (0.2ms) select max(version) from schema_migrations
332
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
333
+  (0.1ms) select max(version) from schema_migrations
334
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
335
+  (0.2ms) select max(version) from schema_migrations
336
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
337
+  (0.2ms) select max(version) from schema_migrations
338
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
339
+  (0.2ms) select max(version) from schema_migrations
340
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
341
+  (0.2ms) select max(version) from schema_migrations
342
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
343
+  (0.2ms) select max(version) from schema_migrations
344
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
345
+  (0.2ms) select max(version) from schema_migrations
346
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
347
+  (0.2ms) select max(version) from schema_migrations
348
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
349
+  (0.2ms) select max(version) from schema_migrations
350
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
351
+  (0.2ms) select max(version) from schema_migrations
352
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
353
+  (0.2ms) select max(version) from schema_migrations
354
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
355
+  (0.2ms) select max(version) from schema_migrations
356
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
357
+  (0.2ms) select max(version) from schema_migrations
358
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
359
+  (0.2ms) select max(version) from schema_migrations
360
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
361
+  (0.4ms) select max(version) from schema_migrations
362
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
363
+  (0.3ms) select max(version) from schema_migrations
364
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
365
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (2.0ms)
366
+  (0.2ms) select max(version) from schema_migrations
367
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
368
+  (0.2ms) select max(version) from schema_migrations
369
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
370
+  (0.2ms) select max(version) from schema_migrations
371
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
372
+  (0.2ms) select max(version) from schema_migrations
373
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
374
+  (0.2ms) select max(version) from schema_migrations
375
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
376
+  (0.2ms) select max(version) from schema_migrations
377
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
378
+  (0.2ms) select max(version) from schema_migrations
379
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
380
+
381
+ Sent mail to ops@schrodingersbox.com (19.6ms)
382
+ Date: Wed, 28 Aug 2013 12:35:07 -0700
383
+ From: ops@schrodingersbox.com
384
+ To: ops@schrodingersbox.com
385
+ Message-ID: <521e50ebb0cec_bf703ffa184606d43158@shakezula.local.mail>
386
+ Subject: TEST StatusCat Failure
387
+ Mime-Version: 1.0
388
+ Content-Type: multipart/alternative;
389
+ boundary="--==_mimepart_521e50ebad4d0_bf703ffa184606d431413";
390
+ charset=UTF-8
391
+ Content-Transfer-Encoding: 7bit
392
+
393
+
394
+ ----==_mimepart_521e50ebad4d0_bf703ffa184606d431413
395
+ Content-Type: text/plain;
396
+ charset=UTF-8
397
+ Content-Transfer-Encoding: 7bit
398
+
399
+ ----------------------
400
+ Name | Value | Status
401
+ ----------------------
402
+ base | | OK
403
+ ----------------------
404
+
405
+ ----==_mimepart_521e50ebad4d0_bf703ffa184606d431413
406
+ Content-Type: text/html;
407
+ charset=UTF-8
408
+ Content-Transfer-Encoding: 7bit
409
+
410
+ <!DOCTYPE html>
411
+ <html>
412
+ <head>
413
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
414
+ </head>
415
+ <body>
416
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
417
+ </body>
418
+ </html>
419
+ ----==_mimepart_521e50ebad4d0_bf703ffa184606d431413--
420
+
421
+  (0.2ms) select max(version) from schema_migrations
422
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
423
+  (0.1ms) select max(version) from schema_migrations
424
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
425
+  (0.2ms) select max(version) from schema_migrations
426
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
427
+  (0.1ms) select max(version) from schema_migrations
428
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
429
+  (0.1ms) select max(version) from schema_migrations
430
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
431
+  (0.1ms) select max(version) from schema_migrations
432
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
433
+  (0.1ms) select max(version) from schema_migrations
434
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
435
+  (0.2ms) select max(version) from schema_migrations
436
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
437
+  (0.2ms) select max(version) from schema_migrations
438
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
439
+  (0.1ms) select max(version) from schema_migrations
440
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
441
+  (0.3ms) select max(version) from schema_migrations
442
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
443
+  (0.2ms) select max(version) from schema_migrations
444
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
445
+  (0.2ms) select max(version) from schema_migrations
446
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
447
+  (37.9ms) select max(version) from schema_migrations
448
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
449
+  (0.2ms) select max(version) from schema_migrations
450
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
451
+  (0.2ms) select max(version) from schema_migrations
452
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
453
+  (0.2ms) select max(version) from schema_migrations
454
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
455
+  (0.2ms) select max(version) from schema_migrations
456
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
457
+  (0.2ms) select max(version) from schema_migrations
458
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
459
+  (0.2ms) select max(version) from schema_migrations
460
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
461
+  (0.2ms) select max(version) from schema_migrations
462
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
463
+  (0.2ms) select max(version) from schema_migrations
464
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
465
+  (0.2ms) select max(version) from schema_migrations
466
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
467
+  (0.2ms) select max(version) from schema_migrations
468
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
469
+ Processing by StatusCat::StatusController#index as HTML
470
+  (0.2ms) select max(version) from schema_migrations
471
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
472
+ Completed 200 OK in 7ms (Views: 4.3ms | ActiveRecord: 0.2ms)
473
+  (0.2ms) select max(version) from schema_migrations
474
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
475
+ Processing by StatusCat::StatusController#index as HTML
476
+  (0.2ms) select max(version) from schema_migrations
477
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
478
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
479
+  (0.4ms) select max(version) from schema_migrations
480
+ SQLite3::SQLException: no such table: schema_migrations: select max(version) from schema_migrations
481
+  (5.6ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
482
+  (6.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
483
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
484
+  (0.9ms) select max(version) from schema_migrations
485
+  (0.4ms) select max(version) from schema_migrations
486
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (13.2ms)
487
+  (0.3ms) select max(version) from schema_migrations
488
+  (0.2ms) select max(version) from schema_migrations
489
+  (0.2ms) select max(version) from schema_migrations
490
+  (0.2ms) select max(version) from schema_migrations
491
+
492
+ Sent mail to ops@schrodingersbox.com (19.5ms)
493
+ Date: Wed, 28 Aug 2013 12:39:27 -0700
494
+ From: ops@schrodingersbox.com
495
+ To: ops@schrodingersbox.com
496
+ Message-ID: <521e51ef1a2b7_bfb03fdea10606d4828e7@shakezula.local.mail>
497
+ Subject: TEST StatusCat Failure
498
+ Mime-Version: 1.0
499
+ Content-Type: multipart/alternative;
500
+ boundary="--==_mimepart_521e51ef16639_bfb03fdea10606d48277e";
501
+ charset=UTF-8
502
+ Content-Transfer-Encoding: 7bit
503
+
504
+
505
+ ----==_mimepart_521e51ef16639_bfb03fdea10606d48277e
506
+ Content-Type: text/plain;
507
+ charset=UTF-8
508
+ Content-Transfer-Encoding: 7bit
509
+
510
+ ----------------------
511
+ Name | Value | Status
512
+ ----------------------
513
+ base | | OK
514
+ ----------------------
515
+
516
+ ----==_mimepart_521e51ef16639_bfb03fdea10606d48277e
517
+ Content-Type: text/html;
518
+ charset=UTF-8
519
+ Content-Transfer-Encoding: 7bit
520
+
521
+ <!DOCTYPE html>
522
+ <html>
523
+ <head>
524
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
525
+ </head>
526
+ <body>
527
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
528
+ </body>
529
+ </html>
530
+ ----==_mimepart_521e51ef16639_bfb03fdea10606d48277e--
531
+
532
+  (0.2ms) select max(version) from schema_migrations
533
+  (0.2ms) select max(version) from schema_migrations
534
+  (0.1ms) select max(version) from schema_migrations
535
+  (0.1ms) select max(version) from schema_migrations
536
+  (0.1ms) select max(version) from schema_migrations
537
+  (0.1ms) select max(version) from schema_migrations
538
+  (0.3ms) select max(version) from schema_migrations
539
+  (0.2ms) select max(version) from schema_migrations
540
+  (0.1ms) select max(version) from schema_migrations
541
+  (0.2ms) select max(version) from schema_migrations
542
+  (0.2ms) select max(version) from schema_migrations
543
+  (0.2ms) select max(version) from schema_migrations
544
+  (0.3ms) select max(version) from schema_migrations
545
+  (0.1ms) select max(version) from schema_migrations
546
+  (0.2ms) select max(version) from schema_migrations
547
+ Processing by StatusCat::StatusController#index as HTML
548
+  (0.2ms) select max(version) from schema_migrations
549
+ Completed 200 OK in 6ms (Views: 4.1ms | ActiveRecord: 0.2ms)
550
+ Processing by StatusCat::StatusController#index as HTML
551
+  (0.2ms) select max(version) from schema_migrations
552
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
553
+  (0.2ms) select max(version) from schema_migrations
554
+  (0.2ms) select max(version) from schema_migrations
555
+  (0.2ms) select max(version) from schema_migrations
556
+  (0.2ms) select max(version) from schema_migrations
557
+  (0.2ms) select max(version) from schema_migrations
558
+  (0.2ms) select max(version) from schema_migrations
559
+  (0.2ms) select max(version) from schema_migrations
560
+  (0.2ms) select max(version) from schema_migrations
561
+  (0.2ms) select max(version) from schema_migrations
562
+  (0.2ms) select max(version) from schema_migrations
563
+  (0.2ms) select max(version) from schema_migrations
564
+  (0.2ms) select max(version) from schema_migrations
565
+  (0.2ms) select max(version) from schema_migrations
566
+  (0.4ms) select max(version) from schema_migrations
567
+  (0.5ms) select max(version) from schema_migrations
568
+  (0.2ms) select max(version) from schema_migrations
569
+  (0.2ms) select max(version) from schema_migrations
570
+  (0.1ms) select max(version) from schema_migrations
571
+  (0.2ms) select max(version) from schema_migrations
572
+  (0.1ms) select max(version) from schema_migrations
573
+  (0.2ms) select max(version) from schema_migrations
574
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (11.5ms)
575
+  (0.2ms) select max(version) from schema_migrations
576
+  (0.2ms) select max(version) from schema_migrations
577
+ Processing by StatusCat::StatusController#index as HTML
578
+  (0.3ms) select max(version) from schema_migrations
579
+ Completed 200 OK in 8ms (Views: 4.4ms | ActiveRecord: 0.3ms)
580
+ Processing by StatusCat::StatusController#index as HTML
581
+  (0.2ms) select max(version) from schema_migrations
582
+ Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.2ms)
583
+  (0.2ms) select max(version) from schema_migrations
584
+  (0.2ms) select max(version) from schema_migrations
585
+
586
+ Sent mail to ops@schrodingersbox.com (24.7ms)
587
+ Date: Wed, 28 Aug 2013 12:50:59 -0700
588
+ From: ops@schrodingersbox.com
589
+ To: ops@schrodingersbox.com
590
+ Message-ID: <521e54a3a9bb3_c0643ff7bdc606d4153b0@shakezula.local.mail>
591
+ Subject: TEST StatusCat Failure
592
+ Mime-Version: 1.0
593
+ Content-Type: multipart/alternative;
594
+ boundary="--==_mimepart_521e54a3a5321_c0643ff7bdc606d41524a";
595
+ charset=UTF-8
596
+ Content-Transfer-Encoding: 7bit
597
+
598
+
599
+ ----==_mimepart_521e54a3a5321_c0643ff7bdc606d41524a
600
+ Content-Type: text/plain;
601
+ charset=UTF-8
602
+ Content-Transfer-Encoding: 7bit
603
+
604
+ ----------------------
605
+ Name | Value | Status
606
+ ----------------------
607
+ base | | OK
608
+ ----------------------
609
+
610
+ ----==_mimepart_521e54a3a5321_c0643ff7bdc606d41524a
611
+ Content-Type: text/html;
612
+ charset=UTF-8
613
+ Content-Transfer-Encoding: 7bit
614
+
615
+ <!DOCTYPE html>
616
+ <html>
617
+ <head>
618
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
619
+ </head>
620
+ <body>
621
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
622
+ </body>
623
+ </html>
624
+ ----==_mimepart_521e54a3a5321_c0643ff7bdc606d41524a--
625
+
626
+  (0.3ms) select max(version) from schema_migrations
627
+  (0.4ms) select max(version) from schema_migrations
628
+  (0.2ms) select max(version) from schema_migrations
629
+  (0.2ms) select max(version) from schema_migrations
630
+  (0.3ms) select max(version) from schema_migrations
631
+  (0.2ms) select max(version) from schema_migrations
632
+  (0.1ms) select max(version) from schema_migrations
633
+  (0.2ms) select max(version) from schema_migrations
634
+  (0.2ms) select max(version) from schema_migrations
635
+  (0.2ms) select max(version) from schema_migrations
636
+  (0.3ms) select max(version) from schema_migrations
637
+  (0.3ms) select max(version) from schema_migrations
638
+  (0.2ms) select max(version) from schema_migrations
639
+  (0.2ms) select max(version) from schema_migrations
640
+  (0.2ms) select max(version) from schema_migrations
641
+  (0.2ms) select max(version) from schema_migrations
642
+  (0.2ms) select max(version) from schema_migrations
643
+  (0.2ms) select max(version) from schema_migrations
644
+  (0.2ms) select max(version) from schema_migrations
645
+  (0.2ms) select max(version) from schema_migrations
646
+  (0.2ms) select max(version) from schema_migrations
647
+  (0.3ms) select max(version) from schema_migrations
648
+  (0.4ms) select max(version) from schema_migrations
649
+  (0.4ms) select max(version) from schema_migrations
650
+  (0.2ms) select max(version) from schema_migrations
651
+  (0.2ms) select max(version) from schema_migrations
652
+  (0.2ms) select max(version) from schema_migrations
653
+  (0.2ms) select max(version) from schema_migrations
654
+  (0.2ms) select max(version) from schema_migrations
655
+  (0.2ms) select max(version) from schema_migrations
656
+  (0.2ms) select max(version) from schema_migrations
657
+ Processing by StatusCat::StatusController#index as HTML
658
+  (0.3ms) select max(version) from schema_migrations
659
+ Completed 200 OK in 6ms (Views: 3.4ms | ActiveRecord: 0.3ms)
660
+  (0.2ms) select max(version) from schema_migrations
661
+ Processing by StatusCat::StatusController#index as HTML
662
+  (0.2ms) select max(version) from schema_migrations
663
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
664
+  (0.2ms) select max(version) from schema_migrations
665
+  (0.2ms) select max(version) from schema_migrations
666
+  (0.2ms) select max(version) from schema_migrations
667
+  (0.2ms) select max(version) from schema_migrations
668
+  (0.1ms) select max(version) from schema_migrations
669
+  (0.2ms) select max(version) from schema_migrations
670
+  (0.2ms) select max(version) from schema_migrations
671
+  (0.1ms) select max(version) from schema_migrations
672
+  (0.2ms) select max(version) from schema_migrations
673
+  (0.2ms) select max(version) from schema_migrations
674
+
675
+ Sent mail to ops@schrodingersbox.com (55.3ms)
676
+ Date: Wed, 28 Aug 2013 12:56:56 -0700
677
+ From: ops@schrodingersbox.com
678
+ To: ops@schrodingersbox.com
679
+ Message-ID: <521e5608f3efd_c1843feecdc606dc1409b@shakezula.local.mail>
680
+ Subject: TEST StatusCat Failure
681
+ Mime-Version: 1.0
682
+ Content-Type: multipart/alternative;
683
+ boundary="--==_mimepart_521e5608e78bf_c1843feecdc606dc139b1";
684
+ charset=UTF-8
685
+ Content-Transfer-Encoding: 7bit
686
+
687
+
688
+ ----==_mimepart_521e5608e78bf_c1843feecdc606dc139b1
689
+ Content-Type: text/plain;
690
+ charset=UTF-8
691
+ Content-Transfer-Encoding: 7bit
692
+
693
+ ----------------------
694
+ Name | Value | Status
695
+ ----------------------
696
+ base | | OK
697
+ ----------------------
698
+
699
+ ----==_mimepart_521e5608e78bf_c1843feecdc606dc139b1
700
+ Content-Type: text/html;
701
+ charset=UTF-8
702
+ Content-Transfer-Encoding: 7bit
703
+
704
+ <!DOCTYPE html>
705
+ <html>
706
+ <head>
707
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
708
+ </head>
709
+ <body>
710
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
711
+ </body>
712
+ </html>
713
+ ----==_mimepart_521e5608e78bf_c1843feecdc606dc139b1--
714
+
715
+  (0.2ms) select max(version) from schema_migrations
716
+  (0.2ms) select max(version) from schema_migrations
717
+  (0.2ms) select max(version) from schema_migrations
718
+  (0.2ms) select max(version) from schema_migrations
719
+  (0.2ms) select max(version) from schema_migrations
720
+  (0.3ms) select max(version) from schema_migrations
721
+  (0.2ms) select max(version) from schema_migrations
722
+  (0.2ms) select max(version) from schema_migrations
723
+  (0.2ms) select max(version) from schema_migrations
724
+  (0.2ms) select max(version) from schema_migrations
725
+  (0.1ms) select max(version) from schema_migrations
726
+  (0.2ms) select max(version) from schema_migrations
727
+  (0.2ms) select max(version) from schema_migrations
728
+  (0.2ms) select max(version) from schema_migrations
729
+  (0.4ms) select max(version) from schema_migrations
730
+  (0.4ms) select max(version) from schema_migrations
731
+  (0.6ms) select max(version) from schema_migrations
732
+ Processing by StatusCat::StatusController#index as HTML
733
+  (0.4ms) select max(version) from schema_migrations
734
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (6.8ms)
735
+ Completed 200 OK in 54ms (Views: 49.5ms | ActiveRecord: 0.4ms)
736
+ Processing by StatusCat::StatusController#index as HTML
737
+  (0.3ms) select max(version) from schema_migrations
738
+ Completed 200 OK in 7ms (Views: 1.7ms | ActiveRecord: 0.3ms)
739
+  (0.3ms) select max(version) from schema_migrations
740
+  (0.4ms) select max(version) from schema_migrations
741
+  (0.3ms) select max(version) from schema_migrations
742
+  (0.3ms) select max(version) from schema_migrations
743
+  (0.2ms) select max(version) from schema_migrations
744
+  (0.3ms) select max(version) from schema_migrations
745
+  (0.2ms) select max(version) from schema_migrations
746
+  (0.3ms) select max(version) from schema_migrations
747
+  (0.3ms) select max(version) from schema_migrations
748
+  (0.3ms) select max(version) from schema_migrations
749
+  (0.3ms) select max(version) from schema_migrations
750
+  (0.4ms) select max(version) from schema_migrations
751
+  (0.3ms) select max(version) from schema_migrations
752
+  (0.3ms) select max(version) from schema_migrations
753
+  (0.4ms) select max(version) from schema_migrations
754
+  (0.3ms) select max(version) from schema_migrations
755
+
756
+ Sent mail to ops@schrodingersbox.com (82.5ms)
757
+ Date: Wed, 28 Aug 2013 16:06:43 -0700
758
+ From: ops@schrodingersbox.com
759
+ To: ops@schrodingersbox.com
760
+ Message-ID: <521e8283e14d1_d0743fdb9c8606d496657@shakezula.local.mail>
761
+ Subject: TEST StatusCat Failure
762
+ Mime-Version: 1.0
763
+ Content-Type: multipart/alternative;
764
+ boundary="--==_mimepart_521e8283cf7eb_d0743fdb9c8606d49658b";
765
+ charset=UTF-8
766
+ Content-Transfer-Encoding: 7bit
767
+
768
+
769
+ ----==_mimepart_521e8283cf7eb_d0743fdb9c8606d49658b
770
+ Content-Type: text/plain;
771
+ charset=UTF-8
772
+ Content-Transfer-Encoding: 7bit
773
+
774
+ ----------------------
775
+ Name | Value | Status
776
+ ----------------------
777
+ base | | OK
778
+ ----------------------
779
+
780
+ ----==_mimepart_521e8283cf7eb_d0743fdb9c8606d49658b
781
+ Content-Type: text/html;
782
+ charset=UTF-8
783
+ Content-Transfer-Encoding: 7bit
784
+
785
+ <!DOCTYPE html>
786
+ <html>
787
+ <head>
788
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
789
+ </head>
790
+ <body>
791
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
792
+ </body>
793
+ </html>
794
+ ----==_mimepart_521e8283cf7eb_d0743fdb9c8606d49658b--
795
+
796
+  (0.3ms) select max(version) from schema_migrations
797
+  (0.2ms) select max(version) from schema_migrations
798
+  (0.2ms) select max(version) from schema_migrations
799
+  (0.2ms) select max(version) from schema_migrations
800
+  (0.2ms) select max(version) from schema_migrations
801
+  (0.2ms) select max(version) from schema_migrations
802
+  (0.2ms) select max(version) from schema_migrations
803
+  (0.2ms) select max(version) from schema_migrations
804
+  (0.2ms) select max(version) from schema_migrations
805
+  (0.3ms) select max(version) from schema_migrations
806
+  (0.3ms) select max(version) from schema_migrations
807
+  (0.3ms) select max(version) from schema_migrations
808
+  (0.2ms) select max(version) from schema_migrations
809
+  (0.3ms) select max(version) from schema_migrations
810
+  (0.2ms) select max(version) from schema_migrations
811
+  (0.4ms) select max(version) from schema_migrations
812
+  (0.4ms) select max(version) from schema_migrations
813
+  (0.4ms) select max(version) from schema_migrations
814
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (7.0ms)
815
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.6ms)
816
+
817
+ Sent mail to ops@schrodingersbox.com (16.6ms)
818
+ Date: Wed, 28 Aug 2013 16:10:05 -0700
819
+ From: ops@schrodingersbox.com
820
+ To: ops@schrodingersbox.com
821
+ Message-ID: <521e834d61824_d0973fdae9c606d482076@shakezula.local.mail>
822
+ Subject: TEST StatusCat Failure
823
+ Mime-Version: 1.0
824
+ Content-Type: multipart/alternative;
825
+ boundary="--==_mimepart_521e834d5eacd_d0973fdae9c606d481919";
826
+ charset=UTF-8
827
+ Content-Transfer-Encoding: 7bit
828
+
829
+
830
+ ----==_mimepart_521e834d5eacd_d0973fdae9c606d481919
831
+ Content-Type: text/plain;
832
+ charset=UTF-8
833
+ Content-Transfer-Encoding: 7bit
834
+
835
+ ----------------------
836
+ Name | Value | Status
837
+ ----------------------
838
+ base | | OK
839
+ ----------------------
840
+
841
+ ----==_mimepart_521e834d5eacd_d0973fdae9c606d481919
842
+ Content-Type: text/html;
843
+ charset=UTF-8
844
+ Content-Transfer-Encoding: 7bit
845
+
846
+ <!DOCTYPE html>
847
+ <html>
848
+ <head>
849
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
850
+ </head>
851
+ <body>
852
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
853
+ </body>
854
+ </html>
855
+ ----==_mimepart_521e834d5eacd_d0973fdae9c606d481919--
856
+
857
+  (0.3ms) select max(version) from schema_migrations
858
+  (0.2ms) select max(version) from schema_migrations
859
+  (0.2ms) select max(version) from schema_migrations
860
+  (0.2ms) select max(version) from schema_migrations
861
+  (0.2ms) select max(version) from schema_migrations
862
+  (0.2ms) select max(version) from schema_migrations
863
+  (0.2ms) select max(version) from schema_migrations
864
+ Processing by StatusCat::StatusController#index as HTML
865
+  (0.3ms) select max(version) from schema_migrations
866
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (0.5ms)
867
+ Completed 200 OK in 19ms (Views: 4.1ms | ActiveRecord: 0.3ms)
868
+  (0.3ms) select max(version) from schema_migrations
869
+ Processing by StatusCat::StatusController#index as HTML
870
+  (0.2ms) select max(version) from schema_migrations
871
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
872
+  (0.2ms) select max(version) from schema_migrations
873
+  (0.2ms) select max(version) from schema_migrations
874
+  (0.2ms) select max(version) from schema_migrations
875
+  (0.2ms) select max(version) from schema_migrations
876
+  (0.2ms) select max(version) from schema_migrations
877
+  (0.2ms) select max(version) from schema_migrations
878
+  (0.3ms) select max(version) from schema_migrations
879
+  (0.2ms) select max(version) from schema_migrations
880
+  (0.2ms) select max(version) from schema_migrations
881
+  (0.2ms) select max(version) from schema_migrations
882
+  (0.2ms) select max(version) from schema_migrations
883
+  (0.2ms) select max(version) from schema_migrations
884
+  (0.2ms) select max(version) from schema_migrations
885
+  (0.2ms) select max(version) from schema_migrations
886
+  (0.2ms) select max(version) from schema_migrations
887
+  (0.2ms) select max(version) from schema_migrations
888
+  (0.2ms) select max(version) from schema_migrations
889
+  (0.2ms) select max(version) from schema_migrations
890
+  (0.2ms) select max(version) from schema_migrations
891
+  (0.2ms) select max(version) from schema_migrations
892
+  (0.2ms) select max(version) from schema_migrations
893
+  (0.2ms) select max(version) from schema_migrations
894
+  (0.2ms) select max(version) from schema_migrations
895
+  (0.3ms) select max(version) from schema_migrations
896
+  (0.5ms) select max(version) from schema_migrations
897
+  (0.4ms) select max(version) from schema_migrations
898
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (11.5ms)
899
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.9ms)
900
+  (0.2ms) select max(version) from schema_migrations
901
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.9ms)
902
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.4ms)
903
+  (0.2ms) select max(version) from schema_migrations
904
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.8ms)
905
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.4ms)
906
+  (0.2ms) select max(version) from schema_migrations
907
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.8ms)
908
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.4ms)
909
+  (0.3ms) select max(version) from schema_migrations
910
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
911
+
912
+ Sent mail to ops@schrodingersbox.com (53.3ms)
913
+ Date: Wed, 28 Aug 2013 16:11:27 -0700
914
+ From: ops@schrodingersbox.com
915
+ To: ops@schrodingersbox.com
916
+ Message-ID: <521e839f2f96e_d0ad3ffeb84606d0504f4@shakezula.local.mail>
917
+ Subject: TEST StatusCat Failure
918
+ Mime-Version: 1.0
919
+ Content-Type: multipart/alternative;
920
+ boundary="--==_mimepart_521e839f23dd6_d0ad3ffeb84606d0503f5";
921
+ charset=UTF-8
922
+ Content-Transfer-Encoding: 7bit
923
+
924
+
925
+ ----==_mimepart_521e839f23dd6_d0ad3ffeb84606d0503f5
926
+ Content-Type: text/plain;
927
+ charset=UTF-8
928
+ Content-Transfer-Encoding: 7bit
929
+
930
+ ----------------------
931
+ Name | Value | Status
932
+ ----------------------
933
+ base | | OK
934
+ ----------------------
935
+
936
+ ----==_mimepart_521e839f23dd6_d0ad3ffeb84606d0503f5
937
+ Content-Type: text/html;
938
+ charset=UTF-8
939
+ Content-Transfer-Encoding: 7bit
940
+
941
+ <!DOCTYPE html>
942
+ <html>
943
+ <head>
944
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
945
+ </head>
946
+ <body>
947
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
948
+ </body>
949
+ </html>
950
+ ----==_mimepart_521e839f23dd6_d0ad3ffeb84606d0503f5--
951
+
952
+  (0.2ms) select max(version) from schema_migrations
953
+  (0.2ms) select max(version) from schema_migrations
954
+  (0.2ms) select max(version) from schema_migrations
955
+  (0.2ms) select max(version) from schema_migrations
956
+  (0.2ms) select max(version) from schema_migrations
957
+  (0.1ms) select max(version) from schema_migrations
958
+  (0.1ms) select max(version) from schema_migrations
959
+  (0.1ms) select max(version) from schema_migrations
960
+  (0.2ms) select max(version) from schema_migrations
961
+  (0.2ms) select max(version) from schema_migrations
962
+  (0.2ms) select max(version) from schema_migrations
963
+  (0.2ms) select max(version) from schema_migrations
964
+  (0.2ms) select max(version) from schema_migrations
965
+  (0.2ms) select max(version) from schema_migrations
966
+  (0.2ms) select max(version) from schema_migrations
967
+  (0.2ms) select max(version) from schema_migrations
968
+  (0.2ms) select max(version) from schema_migrations
969
+  (0.2ms) select max(version) from schema_migrations
970
+  (0.2ms) select max(version) from schema_migrations
971
+  (0.2ms) select max(version) from schema_migrations
972
+ Processing by StatusCat::StatusController#index as HTML
973
+  (0.2ms) select max(version) from schema_migrations
974
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.2ms)
975
+  (0.2ms) select max(version) from schema_migrations
976
+ Processing by StatusCat::StatusController#index as HTML
977
+  (0.2ms) select max(version) from schema_migrations
978
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.2ms)
979
+  (0.2ms) select max(version) from schema_migrations
980
+  (0.2ms) select max(version) from schema_migrations
981
+  (0.1ms) select max(version) from schema_migrations
982
+  (0.2ms) select max(version) from schema_migrations
983
+  (0.1ms) select max(version) from schema_migrations
984
+  (0.1ms) select max(version) from schema_migrations
985
+  (0.1ms) select max(version) from schema_migrations
986
+  (0.4ms) select max(version) from schema_migrations
987
+  (0.3ms) select max(version) from schema_migrations
988
+  (0.2ms) select max(version) from schema_migrations
989
+  (0.2ms) select max(version) from schema_migrations
990
+  (0.2ms) select max(version) from schema_migrations
991
+  (0.2ms) select max(version) from schema_migrations
992
+  (0.2ms) select max(version) from schema_migrations
993
+  (0.2ms) select max(version) from schema_migrations
994
+  (0.2ms) select max(version) from schema_migrations
995
+  (0.2ms) select max(version) from schema_migrations
996
+  (0.2ms) select max(version) from schema_migrations
997
+  (0.3ms) select max(version) from schema_migrations
998
+  (0.2ms) select max(version) from schema_migrations
999
+  (0.2ms) select max(version) from schema_migrations
1000
+  (0.2ms) select max(version) from schema_migrations
1001
+  (0.2ms) select max(version) from schema_migrations
1002
+  (0.2ms) select max(version) from schema_migrations
1003
+  (0.2ms) select max(version) from schema_migrations
1004
+ Processing by StatusCat::StatusController#index as HTML
1005
+  (0.2ms) select max(version) from schema_migrations
1006
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.2ms)
1007
+ Processing by StatusCat::StatusController#index as HTML
1008
+  (0.2ms) select max(version) from schema_migrations
1009
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1010
+  (0.1ms) select max(version) from schema_migrations
1011
+  (0.2ms) select max(version) from schema_migrations
1012
+  (0.2ms) select max(version) from schema_migrations
1013
+  (0.2ms) select max(version) from schema_migrations
1014
+  (0.2ms) select max(version) from schema_migrations
1015
+  (0.2ms) select max(version) from schema_migrations
1016
+  (0.2ms) select max(version) from schema_migrations
1017
+  (0.2ms) select max(version) from schema_migrations
1018
+  (0.2ms) select max(version) from schema_migrations
1019
+  (0.2ms) select max(version) from schema_migrations
1020
+  (0.1ms) select max(version) from schema_migrations
1021
+  (0.3ms) select max(version) from schema_migrations
1022
+  (0.3ms) select max(version) from schema_migrations
1023
+  (0.3ms) select max(version) from schema_migrations
1024
+  (0.2ms) select max(version) from schema_migrations
1025
+
1026
+ Sent mail to ops@schrodingersbox.com (25.2ms)
1027
+ Date: Thu, 19 Sep 2013 10:35:58 -0700
1028
+ From: ops@schrodingersbox.com
1029
+ To: ops@schrodingersbox.com
1030
+ Message-ID: <523b35fea48e8_ae813fcaf50606d05238e@shakezula.local.mail>
1031
+ Subject: TEST StatusCat Failure
1032
+ Mime-Version: 1.0
1033
+ Content-Type: multipart/alternative;
1034
+ boundary="--==_mimepart_523b35fea0291_ae813fcaf50606d05223";
1035
+ charset=UTF-8
1036
+ Content-Transfer-Encoding: 7bit
1037
+
1038
+
1039
+ ----==_mimepart_523b35fea0291_ae813fcaf50606d05223
1040
+ Content-Type: text/plain;
1041
+ charset=UTF-8
1042
+ Content-Transfer-Encoding: 7bit
1043
+
1044
+ ----------------------
1045
+ Name | Value | Status
1046
+ ----------------------
1047
+ base | | OK
1048
+ ----------------------
1049
+
1050
+ ----==_mimepart_523b35fea0291_ae813fcaf50606d05223
1051
+ Content-Type: text/html;
1052
+ charset=UTF-8
1053
+ Content-Transfer-Encoding: 7bit
1054
+
1055
+ <!DOCTYPE html>
1056
+ <html>
1057
+ <head>
1058
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1059
+ </head>
1060
+ <body>
1061
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1062
+ </body>
1063
+ </html>
1064
+ ----==_mimepart_523b35fea0291_ae813fcaf50606d05223--
1065
+
1066
+  (0.2ms) select max(version) from schema_migrations
1067
+  (1.1ms) select max(version) from schema_migrations
1068
+  (0.4ms) select max(version) from schema_migrations
1069
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (1.7ms)
1070
+ Processing by StatusCat::StatusController#index as HTML
1071
+  (0.3ms) select max(version) from schema_migrations
1072
+ Completed 200 OK in 8ms (Views: 4.1ms | ActiveRecord: 0.3ms)
1073
+ Processing by StatusCat::StatusController#index as HTML
1074
+  (0.2ms) select max(version) from schema_migrations
1075
+ Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1076
+  (0.2ms) select max(version) from schema_migrations
1077
+  (0.2ms) select max(version) from schema_migrations
1078
+  (0.2ms) select max(version) from schema_migrations
1079
+  (0.2ms) select max(version) from schema_migrations
1080
+  (0.2ms) select max(version) from schema_migrations
1081
+  (0.2ms) select max(version) from schema_migrations
1082
+  (0.1ms) select max(version) from schema_migrations
1083
+  (0.2ms) select max(version) from schema_migrations
1084
+  (0.2ms) select max(version) from schema_migrations
1085
+  (0.1ms) select max(version) from schema_migrations
1086
+  (0.1ms) select max(version) from schema_migrations
1087
+  (0.2ms) select max(version) from schema_migrations
1088
+  (0.2ms) select max(version) from schema_migrations
1089
+  (0.2ms) select max(version) from schema_migrations
1090
+  (0.2ms) select max(version) from schema_migrations
1091
+  (0.2ms) select max(version) from schema_migrations
1092
+  (0.2ms) select max(version) from schema_migrations
1093
+  (0.2ms) select max(version) from schema_migrations
1094
+  (0.2ms) select max(version) from schema_migrations
1095
+  (0.2ms) select max(version) from schema_migrations
1096
+  (0.2ms) select max(version) from schema_migrations
1097
+  (0.2ms) select max(version) from schema_migrations
1098
+  (0.1ms) select max(version) from schema_migrations
1099
+  (0.1ms) select max(version) from schema_migrations
1100
+  (0.2ms) select max(version) from schema_migrations
1101
+  (0.2ms) select max(version) from schema_migrations
1102
+  (0.2ms) select max(version) from schema_migrations
1103
+  (0.2ms) select max(version) from schema_migrations
1104
+
1105
+ Sent mail to ops@schrodingersbox.com (19.6ms)
1106
+ Date: Tue, 08 Oct 2013 21:49:09 -0700
1107
+ From: ops@schrodingersbox.com
1108
+ To: ops@schrodingersbox.com
1109
+ Message-ID: <5254e04523084_71833fdd04c606d053026@shakezula.local.mail>
1110
+ Subject: TEST StatusCat Failure
1111
+ Mime-Version: 1.0
1112
+ Content-Type: multipart/alternative;
1113
+ boundary="--==_mimepart_5254e0451fff1_71833fdd04c606d05295a";
1114
+ charset=UTF-8
1115
+ Content-Transfer-Encoding: 7bit
1116
+
1117
+
1118
+ ----==_mimepart_5254e0451fff1_71833fdd04c606d05295a
1119
+ Content-Type: text/plain;
1120
+ charset=UTF-8
1121
+ Content-Transfer-Encoding: 7bit
1122
+
1123
+ ----------------------
1124
+ Name | Value | Status
1125
+ ----------------------
1126
+ base | | OK
1127
+ ----------------------
1128
+
1129
+ ----==_mimepart_5254e0451fff1_71833fdd04c606d05295a
1130
+ Content-Type: text/html;
1131
+ charset=UTF-8
1132
+ Content-Transfer-Encoding: 7bit
1133
+
1134
+ <!DOCTYPE html>
1135
+ <html>
1136
+ <head>
1137
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1138
+ </head>
1139
+ <body>
1140
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1141
+ </body>
1142
+ </html>
1143
+ ----==_mimepart_5254e0451fff1_71833fdd04c606d05295a--
1144
+
1145
+  (0.2ms) select max(version) from schema_migrations
1146
+  (0.2ms) select max(version) from schema_migrations
1147
+  (0.2ms) select max(version) from schema_migrations
1148
+  (0.2ms) select max(version) from schema_migrations
1149
+  (0.4ms) select max(version) from schema_migrations
1150
+  (0.4ms) select max(version) from schema_migrations
1151
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (8.0ms)
1152
+  (0.2ms) select max(version) from schema_migrations
1153
+  (0.2ms) select max(version) from schema_migrations
1154
+  (0.2ms) select max(version) from schema_migrations
1155
+  (0.2ms) select max(version) from schema_migrations
1156
+  (0.2ms) select max(version) from schema_migrations
1157
+  (0.2ms) select max(version) from schema_migrations
1158
+  (0.2ms) select max(version) from schema_migrations
1159
+  (0.2ms) select max(version) from schema_migrations
1160
+  (0.2ms) select max(version) from schema_migrations
1161
+  (0.2ms) select max(version) from schema_migrations
1162
+  (0.2ms) select max(version) from schema_migrations
1163
+  (0.2ms) select max(version) from schema_migrations
1164
+  (0.2ms) select max(version) from schema_migrations
1165
+  (0.1ms) select max(version) from schema_migrations
1166
+  (0.1ms) select max(version) from schema_migrations
1167
+  (0.2ms) select max(version) from schema_migrations
1168
+  (0.2ms) select max(version) from schema_migrations
1169
+  (0.1ms) select max(version) from schema_migrations
1170
+  (0.1ms) select max(version) from schema_migrations
1171
+
1172
+ Sent mail to ops@schrodingersbox.com (15.6ms)
1173
+ Date: Tue, 08 Oct 2013 21:50:00 -0700
1174
+ From: ops@schrodingersbox.com
1175
+ To: ops@schrodingersbox.com
1176
+ Message-ID: <5254e0784281_71973fe2ea0606dc246c7@shakezula.local.mail>
1177
+ Subject: TEST StatusCat Failure
1178
+ Mime-Version: 1.0
1179
+ Content-Type: multipart/alternative;
1180
+ boundary="--==_mimepart_5254e078152e_71973fe2ea0606dc245a4";
1181
+ charset=UTF-8
1182
+ Content-Transfer-Encoding: 7bit
1183
+
1184
+
1185
+ ----==_mimepart_5254e078152e_71973fe2ea0606dc245a4
1186
+ Content-Type: text/plain;
1187
+ charset=UTF-8
1188
+ Content-Transfer-Encoding: 7bit
1189
+
1190
+ ----------------------
1191
+ Name | Value | Status
1192
+ ----------------------
1193
+ base | | OK
1194
+ ----------------------
1195
+
1196
+ ----==_mimepart_5254e078152e_71973fe2ea0606dc245a4
1197
+ Content-Type: text/html;
1198
+ charset=UTF-8
1199
+ Content-Transfer-Encoding: 7bit
1200
+
1201
+ <!DOCTYPE html>
1202
+ <html>
1203
+ <head>
1204
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1205
+ </head>
1206
+ <body>
1207
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1208
+ </body>
1209
+ </html>
1210
+ ----==_mimepart_5254e078152e_71973fe2ea0606dc245a4--
1211
+
1212
+  (0.2ms) select max(version) from schema_migrations
1213
+  (0.2ms) select max(version) from schema_migrations
1214
+  (0.2ms) select max(version) from schema_migrations
1215
+  (0.2ms) select max(version) from schema_migrations
1216
+  (0.2ms) select max(version) from schema_migrations
1217
+  (0.2ms) select max(version) from schema_migrations
1218
+  (0.2ms) select max(version) from schema_migrations
1219
+  (0.2ms) select max(version) from schema_migrations
1220
+  (0.2ms) select max(version) from schema_migrations
1221
+  (0.2ms) select max(version) from schema_migrations
1222
+  (0.2ms) select max(version) from schema_migrations
1223
+  (0.1ms) select max(version) from schema_migrations
1224
+ Processing by StatusCat::StatusController#index as HTML
1225
+  (0.2ms) select max(version) from schema_migrations
1226
+ Completed 200 OK in 6ms (Views: 2.8ms | ActiveRecord: 0.2ms)
1227
+ Processing by StatusCat::StatusController#index as HTML
1228
+  (0.2ms) select max(version) from schema_migrations
1229
+ Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1230
+  (0.3ms) select max(version) from schema_migrations
1231
+  (0.4ms) select max(version) from schema_migrations
1232
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (38.9ms)
1233
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.6ms)
1234
+
1235
+ Sent mail to ops@schrodingersbox.com (16.2ms)
1236
+ Date: Tue, 08 Oct 2013 21:51:40 -0700
1237
+ From: ops@schrodingersbox.com
1238
+ To: ops@schrodingersbox.com
1239
+ Message-ID: <5254e0dc775db_71ad3fef548606cc93967@shakezula.local.mail>
1240
+ Subject: TEST StatusCat Failure
1241
+ Mime-Version: 1.0
1242
+ Content-Type: multipart/alternative;
1243
+ boundary="--==_mimepart_5254e0dc749ff_71ad3fef548606cc93827";
1244
+ charset=UTF-8
1245
+ Content-Transfer-Encoding: 7bit
1246
+
1247
+
1248
+ ----==_mimepart_5254e0dc749ff_71ad3fef548606cc93827
1249
+ Content-Type: text/plain;
1250
+ charset=UTF-8
1251
+ Content-Transfer-Encoding: 7bit
1252
+
1253
+ ----------------------
1254
+ Name | Value | Status
1255
+ ----------------------
1256
+ base | | OK
1257
+ ----------------------
1258
+
1259
+ ----==_mimepart_5254e0dc749ff_71ad3fef548606cc93827
1260
+ Content-Type: text/html;
1261
+ charset=UTF-8
1262
+ Content-Transfer-Encoding: 7bit
1263
+
1264
+ <!DOCTYPE html>
1265
+ <html>
1266
+ <head>
1267
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1268
+ </head>
1269
+ <body>
1270
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1271
+ </body>
1272
+ </html>
1273
+ ----==_mimepart_5254e0dc749ff_71ad3fef548606cc93827--
1274
+
1275
+  (0.3ms) select max(version) from schema_migrations
1276
+  (0.1ms) select max(version) from schema_migrations
1277
+  (0.2ms) select max(version) from schema_migrations
1278
+  (0.3ms) select max(version) from schema_migrations
1279
+  (0.1ms) select max(version) from schema_migrations
1280
+  (0.2ms) select max(version) from schema_migrations
1281
+  (0.1ms) select max(version) from schema_migrations
1282
+  (0.2ms) select max(version) from schema_migrations
1283
+  (0.2ms) select max(version) from schema_migrations
1284
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.9ms)
1285
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1286
+  (0.4ms) select max(version) from schema_migrations
1287
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (1.0ms)
1288
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1289
+  (0.2ms) select max(version) from schema_migrations
1290
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.9ms)
1291
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.6ms)
1292
+  (0.2ms) select max(version) from schema_migrations
1293
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (1.0ms)
1294
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1295
+  (0.2ms) select max(version) from schema_migrations
1296
+  (0.2ms) select max(version) from schema_migrations
1297
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.4ms)
1298
+  (0.2ms) select max(version) from schema_migrations
1299
+  (0.2ms) select max(version) from schema_migrations
1300
+  (0.2ms) select max(version) from schema_migrations
1301
+  (0.2ms) select max(version) from schema_migrations
1302
+  (0.2ms) select max(version) from schema_migrations
1303
+  (0.2ms) select max(version) from schema_migrations
1304
+  (0.2ms) select max(version) from schema_migrations
1305
+  (0.2ms) select max(version) from schema_migrations
1306
+  (0.2ms) select max(version) from schema_migrations
1307
+  (0.2ms) select max(version) from schema_migrations
1308
+  (0.2ms) select max(version) from schema_migrations
1309
+  (0.2ms) select max(version) from schema_migrations
1310
+  (0.2ms) select max(version) from schema_migrations
1311
+  (0.1ms) select max(version) from schema_migrations
1312
+  (0.1ms) select max(version) from schema_migrations
1313
+  (0.1ms) select max(version) from schema_migrations
1314
+  (0.2ms) select max(version) from schema_migrations
1315
+ Processing by StatusCat::StatusController#index as HTML
1316
+  (0.2ms) select max(version) from schema_migrations
1317
+ Completed 200 OK in 7ms (Views: 3.5ms | ActiveRecord: 0.2ms)
1318
+ Processing by StatusCat::StatusController#index as HTML
1319
+  (0.2ms) select max(version) from schema_migrations
1320
+ Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1321
+  (0.2ms) select max(version) from schema_migrations
1322
+  (0.2ms) select max(version) from schema_migrations
1323
+  (0.4ms) select max(version) from schema_migrations
1324
+  (0.3ms) select max(version) from schema_migrations
1325
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (37.5ms)
1326
+  (0.2ms) select max(version) from schema_migrations
1327
+  (0.3ms) select max(version) from schema_migrations
1328
+  (0.2ms) select max(version) from schema_migrations
1329
+  (0.2ms) select max(version) from schema_migrations
1330
+  (0.2ms) select max(version) from schema_migrations
1331
+  (0.2ms) select max(version) from schema_migrations
1332
+  (0.3ms) select max(version) from schema_migrations
1333
+  (0.2ms) select max(version) from schema_migrations
1334
+  (0.2ms) select max(version) from schema_migrations
1335
+  (0.2ms) select max(version) from schema_migrations
1336
+  (0.2ms) select max(version) from schema_migrations
1337
+  (0.2ms) select max(version) from schema_migrations
1338
+  (0.1ms) select max(version) from schema_migrations
1339
+  (0.2ms) select max(version) from schema_migrations
1340
+  (0.2ms) select max(version) from schema_migrations
1341
+  (0.1ms) select max(version) from schema_migrations
1342
+  (0.2ms) select max(version) from schema_migrations
1343
+  (0.2ms) select max(version) from schema_migrations
1344
+
1345
+ Sent mail to ops@schrodingersbox.com (14.3ms)
1346
+ Date: Tue, 08 Oct 2013 21:54:12 -0700
1347
+ From: ops@schrodingersbox.com
1348
+ To: ops@schrodingersbox.com
1349
+ Message-ID: <5254e174c7493_71d33feb510606cc992cc@shakezula.local.mail>
1350
+ Subject: TEST StatusCat Failure
1351
+ Mime-Version: 1.0
1352
+ Content-Type: multipart/alternative;
1353
+ boundary="--==_mimepart_5254e174c5132_71d33feb510606cc991a4";
1354
+ charset=UTF-8
1355
+ Content-Transfer-Encoding: 7bit
1356
+
1357
+
1358
+ ----==_mimepart_5254e174c5132_71d33feb510606cc991a4
1359
+ Content-Type: text/plain;
1360
+ charset=UTF-8
1361
+ Content-Transfer-Encoding: 7bit
1362
+
1363
+ ----------------------
1364
+ Name | Value | Status
1365
+ ----------------------
1366
+ base | | OK
1367
+ ----------------------
1368
+
1369
+ ----==_mimepart_5254e174c5132_71d33feb510606cc991a4
1370
+ Content-Type: text/html;
1371
+ charset=UTF-8
1372
+ Content-Transfer-Encoding: 7bit
1373
+
1374
+ <!DOCTYPE html>
1375
+ <html>
1376
+ <head>
1377
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1378
+ </head>
1379
+ <body>
1380
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1381
+ </body>
1382
+ </html>
1383
+ ----==_mimepart_5254e174c5132_71d33feb510606cc991a4--
1384
+
1385
+  (0.2ms) select max(version) from schema_migrations
1386
+ Processing by StatusCat::StatusController#index as HTML
1387
+  (0.2ms) select max(version) from schema_migrations
1388
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1389
+ Processing by StatusCat::StatusController#index as HTML
1390
+  (0.2ms) select max(version) from schema_migrations
1391
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1392
+  (0.2ms) select max(version) from schema_migrations
1393
+  (0.2ms) select max(version) from schema_migrations
1394
+  (0.2ms) select max(version) from schema_migrations
1395
+  (0.2ms) select max(version) from schema_migrations
1396
+  (0.3ms) select max(version) from schema_migrations
1397
+  (0.2ms) select max(version) from schema_migrations
1398
+  (0.3ms) select max(version) from schema_migrations
1399
+  (0.3ms) select max(version) from schema_migrations
1400
+  (0.2ms) select max(version) from schema_migrations
1401
+  (0.3ms) select max(version) from schema_migrations
1402
+  (0.2ms) select max(version) from schema_migrations
1403
+  (0.2ms) select max(version) from schema_migrations
1404
+  (0.2ms) select max(version) from schema_migrations
1405
+  (0.4ms) select max(version) from schema_migrations
1406
+  (0.4ms) select max(version) from schema_migrations
1407
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (2.1ms)
1408
+  (0.2ms) select max(version) from schema_migrations
1409
+  (0.2ms) select max(version) from schema_migrations
1410
+  (0.2ms) select max(version) from schema_migrations
1411
+  (0.2ms) select max(version) from schema_migrations
1412
+  (0.2ms) select max(version) from schema_migrations
1413
+  (0.2ms) select max(version) from schema_migrations
1414
+  (0.2ms) select max(version) from schema_migrations
1415
+  (0.2ms) select max(version) from schema_migrations
1416
+  (0.2ms) select max(version) from schema_migrations
1417
+  (0.2ms) select max(version) from schema_migrations
1418
+  (0.2ms) select max(version) from schema_migrations
1419
+  (0.2ms) select max(version) from schema_migrations
1420
+ Processing by StatusCat::StatusController#index as HTML
1421
+  (0.2ms) select max(version) from schema_migrations
1422
+ Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.2ms)
1423
+ Processing by StatusCat::StatusController#index as HTML
1424
+  (0.2ms) select max(version) from schema_migrations
1425
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1426
+  (0.2ms) select max(version) from schema_migrations
1427
+
1428
+ Sent mail to ops@schrodingersbox.com (16.8ms)
1429
+ Date: Tue, 08 Oct 2013 21:54:41 -0700
1430
+ From: ops@schrodingersbox.com
1431
+ To: ops@schrodingersbox.com
1432
+ Message-ID: <5254e191f3726_71de3fe37dc606d884779@shakezula.local.mail>
1433
+ Subject: TEST StatusCat Failure
1434
+ Mime-Version: 1.0
1435
+ Content-Type: multipart/alternative;
1436
+ boundary="--==_mimepart_5254e191f0b44_71de3fe37dc606d884652";
1437
+ charset=UTF-8
1438
+ Content-Transfer-Encoding: 7bit
1439
+
1440
+
1441
+ ----==_mimepart_5254e191f0b44_71de3fe37dc606d884652
1442
+ Content-Type: text/plain;
1443
+ charset=UTF-8
1444
+ Content-Transfer-Encoding: 7bit
1445
+
1446
+ ----------------------
1447
+ Name | Value | Status
1448
+ ----------------------
1449
+ base | | OK
1450
+ ----------------------
1451
+
1452
+ ----==_mimepart_5254e191f0b44_71de3fe37dc606d884652
1453
+ Content-Type: text/html;
1454
+ charset=UTF-8
1455
+ Content-Transfer-Encoding: 7bit
1456
+
1457
+ <!DOCTYPE html>
1458
+ <html>
1459
+ <head>
1460
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1461
+ </head>
1462
+ <body>
1463
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1464
+ </body>
1465
+ </html>
1466
+ ----==_mimepart_5254e191f0b44_71de3fe37dc606d884652--
1467
+
1468
+  (0.2ms) select max(version) from schema_migrations
1469
+  (0.2ms) select max(version) from schema_migrations
1470
+  (0.2ms) select max(version) from schema_migrations
1471
+  (0.1ms) select max(version) from schema_migrations
1472
+  (0.1ms) select max(version) from schema_migrations
1473
+  (0.1ms) select max(version) from schema_migrations
1474
+  (0.2ms) select max(version) from schema_migrations
1475
+  (0.2ms) select max(version) from schema_migrations
1476
+  (0.2ms) select max(version) from schema_migrations
1477
+  (0.4ms) select max(version) from schema_migrations
1478
+  (0.3ms) select max(version) from schema_migrations
1479
+  (0.2ms) select max(version) from schema_migrations
1480
+  (0.2ms) select max(version) from schema_migrations
1481
+  (0.1ms) select max(version) from schema_migrations
1482
+  (0.2ms) select max(version) from schema_migrations
1483
+  (0.2ms) select max(version) from schema_migrations
1484
+  (0.2ms) select max(version) from schema_migrations
1485
+  (0.2ms) select max(version) from schema_migrations
1486
+  (0.2ms) select max(version) from schema_migrations
1487
+  (0.4ms) select max(version) from schema_migrations
1488
+  (0.3ms) select max(version) from schema_migrations
1489
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (40.3ms)
1490
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.8ms)
1491
+  (0.2ms) select max(version) from schema_migrations
1492
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.9ms)
1493
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1494
+  (0.2ms) select max(version) from schema_migrations
1495
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.9ms)
1496
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1497
+  (0.2ms) select max(version) from schema_migrations
1498
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (1.0ms)
1499
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.6ms)
1500
+  (0.2ms) select max(version) from schema_migrations
1501
+  (0.2ms) select max(version) from schema_migrations
1502
+  (0.1ms) select max(version) from schema_migrations
1503
+  (0.2ms) select max(version) from schema_migrations
1504
+  (0.1ms) select max(version) from schema_migrations
1505
+  (0.1ms) select max(version) from schema_migrations
1506
+  (0.2ms) select max(version) from schema_migrations
1507
+  (0.2ms) select max(version) from schema_migrations
1508
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (0.5ms)
1509
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.2ms)
1510
+
1511
+ Sent mail to ops@schrodingersbox.com (14.7ms)
1512
+ Date: Tue, 08 Oct 2013 21:56:27 -0700
1513
+ From: ops@schrodingersbox.com
1514
+ To: ops@schrodingersbox.com
1515
+ Message-ID: <5254e1fbc828d_71ef3fccfd4606cc981e2@shakezula.local.mail>
1516
+ Subject: TEST StatusCat Failure
1517
+ Mime-Version: 1.0
1518
+ Content-Type: multipart/alternative;
1519
+ boundary="--==_mimepart_5254e1fbc5d58_71ef3fccfd4606cc9801c";
1520
+ charset=UTF-8
1521
+ Content-Transfer-Encoding: 7bit
1522
+
1523
+
1524
+ ----==_mimepart_5254e1fbc5d58_71ef3fccfd4606cc9801c
1525
+ Content-Type: text/plain;
1526
+ charset=UTF-8
1527
+ Content-Transfer-Encoding: 7bit
1528
+
1529
+ ----------------------
1530
+ Name | Value | Status
1531
+ ----------------------
1532
+ base | | OK
1533
+ ----------------------
1534
+
1535
+ ----==_mimepart_5254e1fbc5d58_71ef3fccfd4606cc9801c
1536
+ Content-Type: text/html;
1537
+ charset=UTF-8
1538
+ Content-Transfer-Encoding: 7bit
1539
+
1540
+ <!DOCTYPE html>
1541
+ <html>
1542
+ <head>
1543
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1544
+ </head>
1545
+ <body>
1546
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1547
+ </body>
1548
+ </html>
1549
+ ----==_mimepart_5254e1fbc5d58_71ef3fccfd4606cc9801c--
1550
+
1551
+  (0.2ms) select max(version) from schema_migrations
1552
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (0.6ms)
1553
+  (0.2ms) select max(version) from schema_migrations
1554
+  (0.2ms) select max(version) from schema_migrations
1555
+  (0.2ms) select max(version) from schema_migrations
1556
+  (0.2ms) select max(version) from schema_migrations
1557
+  (0.1ms) select max(version) from schema_migrations
1558
+  (0.2ms) select max(version) from schema_migrations
1559
+  (0.2ms) select max(version) from schema_migrations
1560
+  (0.1ms) select max(version) from schema_migrations
1561
+  (0.1ms) select max(version) from schema_migrations
1562
+  (0.2ms) select max(version) from schema_migrations
1563
+  (0.2ms) select max(version) from schema_migrations
1564
+  (0.2ms) select max(version) from schema_migrations
1565
+  (0.2ms) select max(version) from schema_migrations
1566
+  (0.2ms) select max(version) from schema_migrations
1567
+  (0.2ms) select max(version) from schema_migrations
1568
+  (0.2ms) select max(version) from schema_migrations
1569
+  (0.3ms) select max(version) from schema_migrations
1570
+  (0.2ms) select max(version) from schema_migrations
1571
+  (0.2ms) select max(version) from schema_migrations
1572
+ Processing by StatusCat::StatusController#index as HTML
1573
+  (0.2ms) select max(version) from schema_migrations
1574
+ Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.2ms)
1575
+  (0.2ms) select max(version) from schema_migrations
1576
+ Processing by StatusCat::StatusController#index as HTML
1577
+  (0.2ms) select max(version) from schema_migrations
1578
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
1579
+  (0.4ms) select max(version) from schema_migrations
1580
+  (0.3ms) select max(version) from schema_migrations
1581
+  (0.2ms) select max(version) from schema_migrations
1582
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (3.1ms)
1583
+  (0.2ms) select max(version) from schema_migrations
1584
+  (0.2ms) select max(version) from schema_migrations
1585
+  (0.2ms) select max(version) from schema_migrations
1586
+  (0.2ms) select max(version) from schema_migrations
1587
+
1588
+ Sent mail to ops@schrodingersbox.com (26.3ms)
1589
+ Date: Sun, 13 Oct 2013 19:36:25 -0700
1590
+ From: ops@schrodingersbox.com
1591
+ To: ops@schrodingersbox.com
1592
+ Message-ID: <525b58a92ae13_50353fe0150606dc460d1@shakezula.local.mail>
1593
+ Subject: TEST StatusCat Failure
1594
+ Mime-Version: 1.0
1595
+ Content-Type: multipart/alternative;
1596
+ boundary="--==_mimepart_525b58a925fe0_50353fe0150606dc459f9";
1597
+ charset=UTF-8
1598
+ Content-Transfer-Encoding: 7bit
1599
+
1600
+
1601
+ ----==_mimepart_525b58a925fe0_50353fe0150606dc459f9
1602
+ Content-Type: text/plain;
1603
+ charset=UTF-8
1604
+ Content-Transfer-Encoding: 7bit
1605
+
1606
+ ----------------------
1607
+ Name | Value | Status
1608
+ ----------------------
1609
+ base | | OK
1610
+ ----------------------
1611
+
1612
+ ----==_mimepart_525b58a925fe0_50353fe0150606dc459f9
1613
+ Content-Type: text/html;
1614
+ charset=UTF-8
1615
+ Content-Transfer-Encoding: 7bit
1616
+
1617
+ <!DOCTYPE html>
1618
+ <html>
1619
+ <head>
1620
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1621
+ </head>
1622
+ <body>
1623
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1624
+ </body>
1625
+ </html>
1626
+ ----==_mimepart_525b58a925fe0_50353fe0150606dc459f9--
1627
+
1628
+  (0.2ms) select max(version) from schema_migrations
1629
+  (0.2ms) select max(version) from schema_migrations
1630
+  (0.1ms) select max(version) from schema_migrations
1631
+  (0.1ms) select max(version) from schema_migrations
1632
+  (0.1ms) select max(version) from schema_migrations
1633
+  (0.1ms) select max(version) from schema_migrations
1634
+  (0.1ms) select max(version) from schema_migrations
1635
+  (0.2ms) select max(version) from schema_migrations
1636
+  (0.1ms) select max(version) from schema_migrations
1637
+  (0.1ms) select max(version) from schema_migrations
1638
+  (0.1ms) select max(version) from schema_migrations
1639
+  (0.1ms) select max(version) from schema_migrations
1640
+  (0.1ms) select max(version) from schema_migrations
1641
+  (0.2ms) select max(version) from schema_migrations
1642
+  (0.2ms) select max(version) from schema_migrations
1643
+  (0.2ms) select max(version) from schema_migrations
1644
+  (0.2ms) select max(version) from schema_migrations
1645
+  (0.2ms) select max(version) from schema_migrations
1646
+  (0.2ms) select max(version) from schema_migrations
1647
+  (0.2ms) select max(version) from schema_migrations
1648
+  (0.2ms) select max(version) from schema_migrations
1649
+ Processing by StatusCat::StatusController#index as HTML
1650
+  (0.2ms) select max(version) from schema_migrations
1651
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.2ms)
1652
+ Processing by StatusCat::StatusController#index as HTML
1653
+  (0.2ms) select max(version) from schema_migrations
1654
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
1655
+  (0.2ms) select max(version) from schema_migrations
1656
+  (0.2ms) select max(version) from schema_migrations
1657
+  (0.2ms) select max(version) from schema_migrations
1658
+  (0.2ms) select max(version) from schema_migrations
1659
+  (0.2ms) select max(version) from schema_migrations
1660
+  (0.3ms) select max(version) from schema_migrations
1661
+  (0.4ms) select max(version) from schema_migrations
1662
+  (0.4ms) select max(version) from schema_migrations
1663
+  (0.2ms) select max(version) from schema_migrations
1664
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (1.7ms)
1665
+ Processing by StatusCat::StatusController#index as HTML
1666
+  (0.2ms) select max(version) from schema_migrations
1667
+ Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.2ms)
1668
+ Processing by StatusCat::StatusController#index as HTML
1669
+  (0.2ms) select max(version) from schema_migrations
1670
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1671
+  (0.2ms) select max(version) from schema_migrations
1672
+  (0.2ms) select max(version) from schema_migrations
1673
+  (0.2ms) select max(version) from schema_migrations
1674
+  (0.2ms) select max(version) from schema_migrations
1675
+  (0.2ms) select max(version) from schema_migrations
1676
+  (0.2ms) select max(version) from schema_migrations
1677
+  (0.2ms) select max(version) from schema_migrations
1678
+  (0.2ms) select max(version) from schema_migrations
1679
+  (0.2ms) select max(version) from schema_migrations
1680
+  (0.2ms) select max(version) from schema_migrations
1681
+  (0.2ms) select max(version) from schema_migrations
1682
+  (0.1ms) select max(version) from schema_migrations
1683
+  (0.2ms) select max(version) from schema_migrations
1684
+  (0.2ms) select max(version) from schema_migrations
1685
+  (0.2ms) select max(version) from schema_migrations
1686
+  (0.2ms) select max(version) from schema_migrations
1687
+  (0.2ms) select max(version) from schema_migrations
1688
+
1689
+ Sent mail to ops@schrodingersbox.com (14.9ms)
1690
+ Date: Sun, 13 Oct 2013 19:39:42 -0700
1691
+ From: ops@schrodingersbox.com
1692
+ To: ops@schrodingersbox.com
1693
+ Message-ID: <525b596e646a1_50753fd4214606d816918@shakezula.local.mail>
1694
+ Subject: TEST StatusCat Failure
1695
+ Mime-Version: 1.0
1696
+ Content-Type: multipart/alternative;
1697
+ boundary="--==_mimepart_525b596e61e7a_50753fd4214606d816881";
1698
+ charset=UTF-8
1699
+ Content-Transfer-Encoding: 7bit
1700
+
1701
+
1702
+ ----==_mimepart_525b596e61e7a_50753fd4214606d816881
1703
+ Content-Type: text/plain;
1704
+ charset=UTF-8
1705
+ Content-Transfer-Encoding: 7bit
1706
+
1707
+ ----------------------
1708
+ Name | Value | Status
1709
+ ----------------------
1710
+ base | | OK
1711
+ ----------------------
1712
+
1713
+ ----==_mimepart_525b596e61e7a_50753fd4214606d816881
1714
+ Content-Type: text/html;
1715
+ charset=UTF-8
1716
+ Content-Transfer-Encoding: 7bit
1717
+
1718
+ <!DOCTYPE html>
1719
+ <html>
1720
+ <head>
1721
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1722
+ </head>
1723
+ <body>
1724
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1725
+ </body>
1726
+ </html>
1727
+ ----==_mimepart_525b596e61e7a_50753fd4214606d816881--
1728
+
1729
+  (0.2ms) select max(version) from schema_migrations
1730
+  (0.2ms) select max(version) from schema_migrations
1731
+  (0.2ms) select max(version) from schema_migrations
1732
+  (0.2ms) select max(version) from schema_migrations
1733
+  (0.2ms) select max(version) from schema_migrations
1734
+  (0.2ms) select max(version) from schema_migrations
1735
+  (0.1ms) select max(version) from schema_migrations
1736
+  (0.2ms) select max(version) from schema_migrations
1737
+  (0.2ms) select max(version) from schema_migrations
1738
+  (0.2ms) select max(version) from schema_migrations
1739
+  (0.2ms) select max(version) from schema_migrations
1740
+  (0.2ms) select max(version) from schema_migrations
1741
+  (0.2ms) select max(version) from schema_migrations
1742
+  (0.2ms) select max(version) from schema_migrations
1743
+  (0.4ms) select max(version) from schema_migrations
1744
+  (0.4ms) select max(version) from schema_migrations
1745
+  (0.2ms) select max(version) from schema_migrations
1746
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (2.6ms)
1747
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.9ms)
1748
+  (0.2ms) select max(version) from schema_migrations
1749
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (1.0ms)
1750
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1751
+  (0.2ms) select max(version) from schema_migrations
1752
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (1.1ms)
1753
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1754
+  (0.2ms) select max(version) from schema_migrations
1755
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (1.1ms)
1756
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1757
+  (0.2ms) select max(version) from schema_migrations
1758
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.5ms)
1759
+  (0.2ms) select max(version) from schema_migrations
1760
+  (0.2ms) select max(version) from schema_migrations
1761
+  (0.2ms) select max(version) from schema_migrations
1762
+  (0.2ms) select max(version) from schema_migrations
1763
+  (0.2ms) select max(version) from schema_migrations
1764
+  (0.2ms) select max(version) from schema_migrations
1765
+  (0.2ms) select max(version) from schema_migrations
1766
+  (0.2ms) select max(version) from schema_migrations
1767
+ Processing by StatusCat::StatusController#index as HTML
1768
+  (0.2ms) select max(version) from schema_migrations
1769
+ Completed 200 OK in 5ms (Views: 2.7ms | ActiveRecord: 0.2ms)
1770
+ Processing by StatusCat::StatusController#index as HTML
1771
+  (0.2ms) select max(version) from schema_migrations
1772
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
1773
+  (0.2ms) select max(version) from schema_migrations
1774
+  (0.2ms) select max(version) from schema_migrations
1775
+  (0.2ms) select max(version) from schema_migrations
1776
+  (0.1ms) select max(version) from schema_migrations
1777
+  (0.1ms) select max(version) from schema_migrations
1778
+  (0.2ms) select max(version) from schema_migrations
1779
+  (0.3ms) select max(version) from schema_migrations
1780
+  (0.4ms) select max(version) from schema_migrations
1781
+  (0.3ms) select max(version) from schema_migrations
1782
+
1783
+ Sent mail to ops@schrodingersbox.com (31.1ms)
1784
+ Date: Sun, 13 Oct 2013 19:40:11 -0700
1785
+ From: ops@schrodingersbox.com
1786
+ To: ops@schrodingersbox.com
1787
+ Message-ID: <525b598be605f_507f3fd3f48606d4964b1@shakezula.local.mail>
1788
+ Subject: TEST StatusCat Failure
1789
+ Mime-Version: 1.0
1790
+ Content-Type: multipart/alternative;
1791
+ boundary="--==_mimepart_525b598be10b1_507f3fd3f48606d4963bd";
1792
+ charset=UTF-8
1793
+ Content-Transfer-Encoding: 7bit
1794
+
1795
+
1796
+ ----==_mimepart_525b598be10b1_507f3fd3f48606d4963bd
1797
+ Content-Type: text/plain;
1798
+ charset=UTF-8
1799
+ Content-Transfer-Encoding: 7bit
1800
+
1801
+ ----------------------
1802
+ Name | Value | Status
1803
+ ----------------------
1804
+ base | | OK
1805
+ ----------------------
1806
+
1807
+ ----==_mimepart_525b598be10b1_507f3fd3f48606d4963bd
1808
+ Content-Type: text/html;
1809
+ charset=UTF-8
1810
+ Content-Transfer-Encoding: 7bit
1811
+
1812
+ <!DOCTYPE html>
1813
+ <html>
1814
+ <head>
1815
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1816
+ </head>
1817
+ <body>
1818
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1819
+ </body>
1820
+ </html>
1821
+ ----==_mimepart_525b598be10b1_507f3fd3f48606d4963bd--
1822
+
1823
+  (0.3ms) select max(version) from schema_migrations
1824
+  (0.3ms) select max(version) from schema_migrations
1825
+  (0.3ms) select max(version) from schema_migrations
1826
+  (0.2ms) select max(version) from schema_migrations
1827
+  (0.2ms) select max(version) from schema_migrations
1828
+  (0.2ms) select max(version) from schema_migrations
1829
+  (0.3ms) select max(version) from schema_migrations
1830
+  (0.2ms) select max(version) from schema_migrations
1831
+  (0.2ms) select max(version) from schema_migrations
1832
+  (0.2ms) select max(version) from schema_migrations
1833
+  (0.4ms) select max(version) from schema_migrations
1834
+ Processing by StatusCat::StatusController#index as HTML
1835
+  (0.3ms) select max(version) from schema_migrations
1836
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (1.1ms)
1837
+ Completed 200 OK in 11ms (Views: 8.4ms | ActiveRecord: 0.3ms)
1838
+ Processing by StatusCat::StatusController#index as HTML
1839
+  (0.3ms) select max(version) from schema_migrations
1840
+ Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 0.3ms)
1841
+  (0.2ms) select max(version) from schema_migrations
1842
+  (0.2ms) select max(version) from schema_migrations
1843
+  (0.1ms) select max(version) from schema_migrations
1844
+  (0.2ms) select max(version) from schema_migrations
1845
+  (0.1ms) select max(version) from schema_migrations
1846
+  (0.2ms) select max(version) from schema_migrations
1847
+  (0.2ms) select max(version) from schema_migrations
1848
+  (0.2ms) select max(version) from schema_migrations
1849
+  (0.1ms) select max(version) from schema_migrations
1850
+
1851
+ Sent mail to ops@schrodingersbox.com (15.0ms)
1852
+ Date: Sun, 13 Oct 2013 19:40:57 -0700
1853
+ From: ops@schrodingersbox.com
1854
+ To: ops@schrodingersbox.com
1855
+ Message-ID: <525b59b9ca0b1_50913fe2ec4606cc3899@shakezula.local.mail>
1856
+ Subject: TEST StatusCat Failure
1857
+ Mime-Version: 1.0
1858
+ Content-Type: multipart/alternative;
1859
+ boundary="--==_mimepart_525b59b9c75ce_50913fe2ec4606cc3729";
1860
+ charset=UTF-8
1861
+ Content-Transfer-Encoding: 7bit
1862
+
1863
+
1864
+ ----==_mimepart_525b59b9c75ce_50913fe2ec4606cc3729
1865
+ Content-Type: text/plain;
1866
+ charset=UTF-8
1867
+ Content-Transfer-Encoding: 7bit
1868
+
1869
+ ----------------------
1870
+ Name | Value | Status
1871
+ ----------------------
1872
+ base | | OK
1873
+ ----------------------
1874
+
1875
+ ----==_mimepart_525b59b9c75ce_50913fe2ec4606cc3729
1876
+ Content-Type: text/html;
1877
+ charset=UTF-8
1878
+ Content-Transfer-Encoding: 7bit
1879
+
1880
+ <!DOCTYPE html>
1881
+ <html>
1882
+ <head>
1883
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1884
+ </head>
1885
+ <body>
1886
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1887
+ </body>
1888
+ </html>
1889
+ ----==_mimepart_525b59b9c75ce_50913fe2ec4606cc3729--
1890
+
1891
+  (0.2ms) select max(version) from schema_migrations
1892
+  (0.2ms) select max(version) from schema_migrations
1893
+  (0.2ms) select max(version) from schema_migrations
1894
+  (0.2ms) select max(version) from schema_migrations
1895
+  (0.1ms) select max(version) from schema_migrations
1896
+  (0.2ms) select max(version) from schema_migrations
1897
+  (0.2ms) select max(version) from schema_migrations
1898
+  (0.2ms) select max(version) from schema_migrations
1899
+  (0.2ms) select max(version) from schema_migrations
1900
+  (0.2ms) select max(version) from schema_migrations
1901
+  (0.2ms) select max(version) from schema_migrations
1902
+  (0.2ms) select max(version) from schema_migrations
1903
+  (0.2ms) select max(version) from schema_migrations
1904
+  (0.2ms) select max(version) from schema_migrations
1905
+  (0.2ms) select max(version) from schema_migrations
1906
+  (0.2ms) select max(version) from schema_migrations
1907
+  (0.2ms) select max(version) from schema_migrations
1908
+  (0.2ms) select max(version) from schema_migrations
1909
+  (0.2ms) select max(version) from schema_migrations
1910
+  (0.2ms) select max(version) from schema_migrations
1911
+  (0.2ms) select max(version) from schema_migrations
1912
+  (0.3ms) select max(version) from schema_migrations
1913
+  (0.2ms) select max(version) from schema_migrations
1914
+  (0.2ms) select max(version) from schema_migrations
1915
+  (0.4ms) select max(version) from schema_migrations
1916
+  (0.4ms) select max(version) from schema_migrations
1917
+  (0.1ms) select max(version) from schema_migrations
1918
+  (0.2ms) select max(version) from schema_migrations
1919
+  (0.2ms) select max(version) from schema_migrations
1920
+  (0.1ms) select max(version) from schema_migrations
1921
+  (0.2ms) select max(version) from schema_migrations
1922
+  (0.2ms) select max(version) from schema_migrations
1923
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (8.1ms)
1924
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.8ms)
1925
+
1926
+ Sent mail to ops@schrodingersbox.com (51.3ms)
1927
+ Date: Sun, 13 Oct 2013 19:41:40 -0700
1928
+ From: ops@schrodingersbox.com
1929
+ To: ops@schrodingersbox.com
1930
+ Message-ID: <525b59e45f2df_50a23ff4344606dc3698b@shakezula.local.mail>
1931
+ Subject: TEST StatusCat Failure
1932
+ Mime-Version: 1.0
1933
+ Content-Type: multipart/alternative;
1934
+ boundary="--==_mimepart_525b59e453d25_50a23ff4344606dc368eb";
1935
+ charset=UTF-8
1936
+ Content-Transfer-Encoding: 7bit
1937
+
1938
+
1939
+ ----==_mimepart_525b59e453d25_50a23ff4344606dc368eb
1940
+ Content-Type: text/plain;
1941
+ charset=UTF-8
1942
+ Content-Transfer-Encoding: 7bit
1943
+
1944
+ ----------------------
1945
+ Name | Value | Status
1946
+ ----------------------
1947
+ base | | OK
1948
+ ----------------------
1949
+
1950
+ ----==_mimepart_525b59e453d25_50a23ff4344606dc368eb
1951
+ Content-Type: text/html;
1952
+ charset=UTF-8
1953
+ Content-Transfer-Encoding: 7bit
1954
+
1955
+ <!DOCTYPE html>
1956
+ <html>
1957
+ <head>
1958
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
1959
+ </head>
1960
+ <body>
1961
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
1962
+ </body>
1963
+ </html>
1964
+ ----==_mimepart_525b59e453d25_50a23ff4344606dc368eb--
1965
+
1966
+  (0.2ms) select max(version) from schema_migrations
1967
+  (0.2ms) select max(version) from schema_migrations
1968
+  (0.1ms) select max(version) from schema_migrations
1969
+  (0.1ms) select max(version) from schema_migrations
1970
+  (0.2ms) select max(version) from schema_migrations
1971
+  (0.2ms) select max(version) from schema_migrations
1972
+  (0.2ms) select max(version) from schema_migrations
1973
+  (0.1ms) select max(version) from schema_migrations
1974
+  (0.2ms) select max(version) from schema_migrations
1975
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (1.4ms)
1976
+  (0.2ms) select max(version) from schema_migrations
1977
+  (0.2ms) select max(version) from schema_migrations
1978
+  (0.2ms) select max(version) from schema_migrations
1979
+ Processing by StatusCat::StatusController#index as HTML
1980
+  (0.2ms) select max(version) from schema_migrations
1981
+ Completed 200 OK in 5ms (Views: 2.8ms | ActiveRecord: 0.2ms)
1982
+  (0.2ms) select max(version) from schema_migrations
1983
+ Processing by StatusCat::StatusController#index as HTML
1984
+  (0.2ms) select max(version) from schema_migrations
1985
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
1986
+  (0.3ms) select max(version) from schema_migrations
1987
+  (0.2ms) select max(version) from schema_migrations
1988
+  (0.2ms) select max(version) from schema_migrations
1989
+  (0.2ms) select max(version) from schema_migrations
1990
+  (0.2ms) select max(version) from schema_migrations
1991
+  (0.2ms) select max(version) from schema_migrations
1992
+  (0.2ms) select max(version) from schema_migrations
1993
+  (0.2ms) select max(version) from schema_migrations
1994
+  (0.2ms) select max(version) from schema_migrations
1995
+  (0.2ms) select max(version) from schema_migrations
1996
+  (0.2ms) select max(version) from schema_migrations
1997
+  (0.2ms) select max(version) from schema_migrations
1998
+  (0.2ms) select max(version) from schema_migrations
1999
+  (1.4ms) select max(version) from schema_migrations
2000
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (2.3ms)
2001
+
2002
+ Sent mail to ops@schrodingersbox.com (26.8ms)
2003
+ Date: Thu, 24 Oct 2013 22:42:42 -0700
2004
+ From: ops@schrodingersbox.com
2005
+ To: ops@schrodingersbox.com
2006
+ Message-ID: <526a04d24ff1_e2dc3fc86444e6cc321ab@shakezula.local.mail>
2007
+ Subject: TEST StatusCat Failure
2008
+ Mime-Version: 1.0
2009
+ Content-Type: multipart/alternative;
2010
+ boundary="--==_mimepart_526a04d2e92_e2dc3fc86444e6cc32097";
2011
+ charset=UTF-8
2012
+ Content-Transfer-Encoding: 7bit
2013
+
2014
+
2015
+ ----==_mimepart_526a04d2e92_e2dc3fc86444e6cc32097
2016
+ Content-Type: text/plain;
2017
+ charset=UTF-8
2018
+ Content-Transfer-Encoding: 7bit
2019
+
2020
+ ----------------------
2021
+ Name | Value | Status
2022
+ ----------------------
2023
+ base | | OK
2024
+ ----------------------
2025
+
2026
+ ----==_mimepart_526a04d2e92_e2dc3fc86444e6cc32097
2027
+ Content-Type: text/html;
2028
+ charset=UTF-8
2029
+ Content-Transfer-Encoding: 7bit
2030
+
2031
+ <!DOCTYPE html>
2032
+ <html>
2033
+ <head>
2034
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
2035
+ </head>
2036
+ <body>
2037
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
2038
+ </body>
2039
+ </html>
2040
+ ----==_mimepart_526a04d2e92_e2dc3fc86444e6cc32097--
2041
+
2042
+  (0.2ms) select max(version) from schema_migrations
2043
+  (0.2ms) select max(version) from schema_migrations
2044
+  (0.2ms) select max(version) from schema_migrations
2045
+  (0.2ms) select max(version) from schema_migrations
2046
+  (0.1ms) select max(version) from schema_migrations
2047
+  (0.2ms) select max(version) from schema_migrations
2048
+  (0.2ms) select max(version) from schema_migrations
2049
+  (0.2ms) select max(version) from schema_migrations
2050
+  (0.3ms) select max(version) from schema_migrations
2051
+  (0.3ms) select max(version) from schema_migrations
2052
+  (0.2ms) select max(version) from schema_migrations
2053
+  (0.3ms) select max(version) from schema_migrations
2054
+  (0.2ms) select max(version) from schema_migrations
2055
+  (0.2ms) select max(version) from schema_migrations
2056
+  (0.2ms) select max(version) from schema_migrations
2057
+  (0.2ms) select max(version) from schema_migrations
2058
+  (0.2ms) select max(version) from schema_migrations
2059
+  (0.2ms) select max(version) from schema_migrations
2060
+  (0.2ms) select max(version) from schema_migrations
2061
+  (0.2ms) select max(version) from schema_migrations
2062
+ Processing by StatusCat::StatusController#index as HTML
2063
+  (0.2ms) select max(version) from schema_migrations
2064
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2065
+ Processing by StatusCat::StatusController#index as HTML
2066
+  (0.2ms) select max(version) from schema_migrations
2067
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2068
+  (0.1ms) select max(version) from schema_migrations
2069
+  (0.1ms) select max(version) from schema_migrations
2070
+  (0.1ms) select max(version) from schema_migrations
2071
+  (0.1ms) select max(version) from schema_migrations
2072
+  (0.1ms) select max(version) from schema_migrations
2073
+  (0.1ms) select max(version) from schema_migrations
2074
+  (0.1ms) select max(version) from schema_migrations
2075
+  (0.2ms) select max(version) from schema_migrations
2076
+  (0.2ms) select max(version) from schema_migrations
2077
+  (0.2ms) select max(version) from schema_migrations
2078
+  (0.3ms) select max(version) from schema_migrations
2079
+  (1.2ms) select max(version) from schema_migrations
2080
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (13.1ms)
2081
+  (0.2ms) select max(version) from schema_migrations
2082
+  (0.2ms) select max(version) from schema_migrations
2083
+  (0.2ms) select max(version) from schema_migrations
2084
+  (0.2ms) select max(version) from schema_migrations
2085
+  (0.1ms) select max(version) from schema_migrations
2086
+  (0.2ms) select max(version) from schema_migrations
2087
+  (0.1ms) select max(version) from schema_migrations
2088
+  (0.1ms) select max(version) from schema_migrations
2089
+  (0.2ms) select max(version) from schema_migrations
2090
+  (0.2ms) select max(version) from schema_migrations
2091
+  (0.1ms) select max(version) from schema_migrations
2092
+  (0.2ms) select max(version) from schema_migrations
2093
+  (0.1ms) select max(version) from schema_migrations
2094
+  (0.1ms) select max(version) from schema_migrations
2095
+  (0.1ms) select max(version) from schema_migrations
2096
+  (0.2ms) select max(version) from schema_migrations
2097
+
2098
+ Sent mail to ops@schrodingersbox.com (62.5ms)
2099
+ Date: Fri, 25 Oct 2013 01:20:55 -0700
2100
+ From: ops@schrodingersbox.com
2101
+ To: ops@schrodingersbox.com
2102
+ Message-ID: <526a29e7dada8_f3133fd58985e6cc25886@shakezula.local.mail>
2103
+ Subject: TEST StatusCat Failure
2104
+ Mime-Version: 1.0
2105
+ Content-Type: multipart/alternative;
2106
+ boundary="--==_mimepart_526a29e7ccc19_f3133fd58985e6cc257a6";
2107
+ charset=UTF-8
2108
+ Content-Transfer-Encoding: 7bit
2109
+
2110
+
2111
+ ----==_mimepart_526a29e7ccc19_f3133fd58985e6cc257a6
2112
+ Content-Type: text/plain;
2113
+ charset=UTF-8
2114
+ Content-Transfer-Encoding: 7bit
2115
+
2116
+ ----------------------
2117
+ Name | Value | Status
2118
+ ----------------------
2119
+ base | | OK
2120
+ ----------------------
2121
+
2122
+ ----==_mimepart_526a29e7ccc19_f3133fd58985e6cc257a6
2123
+ Content-Type: text/html;
2124
+ charset=UTF-8
2125
+ Content-Transfer-Encoding: 7bit
2126
+
2127
+ <!DOCTYPE html>
2128
+ <html>
2129
+ <head>
2130
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
2131
+ </head>
2132
+ <body>
2133
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
2134
+ </body>
2135
+ </html>
2136
+ ----==_mimepart_526a29e7ccc19_f3133fd58985e6cc257a6--
2137
+
2138
+  (0.2ms) select max(version) from schema_migrations
2139
+  (0.3ms) select max(version) from schema_migrations
2140
+  (0.2ms) select max(version) from schema_migrations
2141
+  (0.2ms) select max(version) from schema_migrations
2142
+  (0.2ms) select max(version) from schema_migrations
2143
+  (0.2ms) select max(version) from schema_migrations
2144
+  (0.2ms) select max(version) from schema_migrations
2145
+  (0.2ms) select max(version) from schema_migrations
2146
+  (0.2ms) select max(version) from schema_migrations
2147
+  (0.2ms) select max(version) from schema_migrations
2148
+  (0.2ms) select max(version) from schema_migrations
2149
+  (0.2ms) select max(version) from schema_migrations
2150
+ Processing by StatusCat::StatusController#index as HTML
2151
+  (0.2ms) select max(version) from schema_migrations
2152
+ Completed 200 OK in 5ms (Views: 3.5ms | ActiveRecord: 0.2ms)
2153
+ Processing by StatusCat::StatusController#index as HTML
2154
+  (0.2ms) select max(version) from schema_migrations
2155
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2156
+  (0.1ms) select max(version) from schema_migrations
2157
+  (0.2ms) select max(version) from schema_migrations
2158
+  (0.2ms) select max(version) from schema_migrations
2159
+  (0.8ms) select max(version) from schema_migrations
2160
+  (0.2ms) select max(version) from schema_migrations
2161
+  (0.2ms) select max(version) from schema_migrations
2162
+  (0.2ms) select max(version) from schema_migrations
2163
+  (0.2ms) select max(version) from schema_migrations
2164
+  (0.3ms) select max(version) from schema_migrations
2165
+  (0.2ms) select max(version) from schema_migrations
2166
+  (0.2ms) select max(version) from schema_migrations
2167
+  (0.2ms) select max(version) from schema_migrations
2168
+  (0.2ms) select max(version) from schema_migrations
2169
+  (0.2ms) select max(version) from schema_migrations
2170
+  (0.2ms) select max(version) from schema_migrations
2171
+  (0.1ms) select max(version) from schema_migrations
2172
+
2173
+ Sent mail to ops@schrodingersbox.com (19.7ms)
2174
+ Date: Fri, 25 Oct 2013 01:24:08 -0700
2175
+ From: ops@schrodingersbox.com
2176
+ To: ops@schrodingersbox.com
2177
+ Message-ID: <526a2aa8da9a_f3573ffae205e6d84691b@shakezula.local.mail>
2178
+ Subject: TEST StatusCat Failure
2179
+ Mime-Version: 1.0
2180
+ Content-Type: multipart/alternative;
2181
+ boundary="--==_mimepart_526a2aa8a0ce_f3573ffae205e6d8468e4";
2182
+ charset=UTF-8
2183
+ Content-Transfer-Encoding: 7bit
2184
+
2185
+
2186
+ ----==_mimepart_526a2aa8a0ce_f3573ffae205e6d8468e4
2187
+ Content-Type: text/plain;
2188
+ charset=UTF-8
2189
+ Content-Transfer-Encoding: 7bit
2190
+
2191
+ ----------------------
2192
+ Name | Value | Status
2193
+ ----------------------
2194
+ base | | OK
2195
+ ----------------------
2196
+
2197
+ ----==_mimepart_526a2aa8a0ce_f3573ffae205e6d8468e4
2198
+ Content-Type: text/html;
2199
+ charset=UTF-8
2200
+ Content-Transfer-Encoding: 7bit
2201
+
2202
+ <!DOCTYPE html>
2203
+ <html>
2204
+ <head>
2205
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
2206
+ </head>
2207
+ <body>
2208
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
2209
+ </body>
2210
+ </html>
2211
+ ----==_mimepart_526a2aa8a0ce_f3573ffae205e6d8468e4--
2212
+
2213
+  (0.3ms) select max(version) from schema_migrations
2214
+  (0.2ms) select max(version) from schema_migrations
2215
+  (0.1ms) select max(version) from schema_migrations
2216
+  (0.1ms) select max(version) from schema_migrations
2217
+  (0.2ms) select max(version) from schema_migrations
2218
+  (0.2ms) select max(version) from schema_migrations
2219
+  (0.2ms) select max(version) from schema_migrations
2220
+  (0.2ms) select max(version) from schema_migrations
2221
+  (0.1ms) select max(version) from schema_migrations
2222
+  (0.1ms) select max(version) from schema_migrations
2223
+  (0.1ms) select max(version) from schema_migrations
2224
+  (0.1ms) select max(version) from schema_migrations
2225
+  (0.2ms) select max(version) from schema_migrations
2226
+  (0.2ms) select max(version) from schema_migrations
2227
+  (0.2ms) select max(version) from schema_migrations
2228
+  (0.2ms) select max(version) from schema_migrations
2229
+  (0.3ms) select max(version) from schema_migrations
2230
+  (0.2ms) select max(version) from schema_migrations
2231
+ Processing by StatusCat::StatusController#index as HTML
2232
+  (0.2ms) select max(version) from schema_migrations
2233
+ Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 0.2ms)
2234
+  (0.2ms) select max(version) from schema_migrations
2235
+ Processing by StatusCat::StatusController#index as HTML
2236
+  (0.2ms) select max(version) from schema_migrations
2237
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2238
+  (1.0ms) select max(version) from schema_migrations
2239
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb (44.4ms)
2240
+  (0.3ms) select max(version) from schema_migrations
2241
+  (0.2ms) select max(version) from schema_migrations
2242
+ Processing by StatusCat::StatusController#index as HTML
2243
+  (0.2ms) select max(version) from schema_migrations
2244
+ Completed 200 OK in 5ms (Views: 3.3ms | ActiveRecord: 0.2ms)
2245
+ Processing by StatusCat::StatusController#index as HTML
2246
+  (0.2ms) select max(version) from schema_migrations
2247
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2248
+  (0.1ms) select max(version) from schema_migrations
2249
+  (0.2ms) select max(version) from schema_migrations
2250
+
2251
+ Sent mail to ops@schrodingersbox.com (20.6ms)
2252
+ Date: Fri, 25 Oct 2013 01:24:18 -0700
2253
+ From: ops@schrodingersbox.com
2254
+ To: ops@schrodingersbox.com
2255
+ Message-ID: <526a2ab27e8d7_f3623fd03a45e6d451955@shakezula.local.mail>
2256
+ Subject: TEST StatusCat Failure
2257
+ Mime-Version: 1.0
2258
+ Content-Type: multipart/alternative;
2259
+ boundary="--==_mimepart_526a2ab27ada5_f3623fd03a45e6d45182e";
2260
+ charset=UTF-8
2261
+ Content-Transfer-Encoding: 7bit
2262
+
2263
+
2264
+ ----==_mimepart_526a2ab27ada5_f3623fd03a45e6d45182e
2265
+ Content-Type: text/plain;
2266
+ charset=UTF-8
2267
+ Content-Transfer-Encoding: 7bit
2268
+
2269
+ ----------------------
2270
+ Name | Value | Status
2271
+ ----------------------
2272
+ base | | OK
2273
+ ----------------------
2274
+
2275
+ ----==_mimepart_526a2ab27ada5_f3623fd03a45e6d45182e
2276
+ Content-Type: text/html;
2277
+ charset=UTF-8
2278
+ Content-Transfer-Encoding: 7bit
2279
+
2280
+ <!DOCTYPE html>
2281
+ <html>
2282
+ <head>
2283
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
2284
+ </head>
2285
+ <body>
2286
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
2287
+ </body>
2288
+ </html>
2289
+ ----==_mimepart_526a2ab27ada5_f3623fd03a45e6d45182e--
2290
+
2291
+  (0.3ms) select max(version) from schema_migrations
2292
+  (0.1ms) select max(version) from schema_migrations
2293
+  (0.2ms) select max(version) from schema_migrations
2294
+  (0.1ms) select max(version) from schema_migrations
2295
+  (0.1ms) select max(version) from schema_migrations
2296
+  (0.1ms) select max(version) from schema_migrations
2297
+  (0.2ms) select max(version) from schema_migrations
2298
+  (0.2ms) select max(version) from schema_migrations
2299
+  (0.2ms) select max(version) from schema_migrations
2300
+  (0.2ms) select max(version) from schema_migrations
2301
+  (0.2ms) select max(version) from schema_migrations
2302
+  (0.2ms) select max(version) from schema_migrations
2303
+  (0.1ms) select max(version) from schema_migrations
2304
+  (0.1ms) select max(version) from schema_migrations
2305
+  (0.2ms) select max(version) from schema_migrations
2306
+  (0.2ms) select max(version) from schema_migrations
2307
+  (0.2ms) select max(version) from schema_migrations
2308
+  (0.2ms) select max(version) from schema_migrations
2309
+  (0.2ms) select max(version) from schema_migrations
2310
+  (0.2ms) select max(version) from schema_migrations
2311
+  (0.2ms) select max(version) from schema_migrations
2312
+  (0.2ms) select max(version) from schema_migrations
2313
+  (0.2ms) select max(version) from schema_migrations
2314
+  (0.2ms) select max(version) from schema_migrations
2315
+  (0.4ms) select max(version) from schema_migrations
2316
+  (0.2ms) select max(version) from schema_migrations
2317
+  (0.2ms) select max(version) from schema_migrations
2318
+  (0.4ms) select max(version) from schema_migrations
2319
+  (0.2ms) select max(version) from schema_migrations
2320
+  (0.1ms) select max(version) from schema_migrations
2321
+  (0.1ms) select max(version) from schema_migrations
2322
+  (0.2ms) select max(version) from schema_migrations
2323
+  (0.1ms) select max(version) from schema_migrations
2324
+  (0.1ms) select max(version) from schema_migrations
2325
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.html.erb (13.3ms)
2326
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status_mailer/failure.text.erb (0.6ms)
2327
+
2328
+ Sent mail to ops@schrodingersbox.com (14.3ms)
2329
+ Date: Sat, 19 Apr 2014 12:53:51 -0700
2330
+ From: ops@schrodingersbox.com
2331
+ To: ops@schrodingersbox.com
2332
+ Message-ID: <5352d44f8e002_159f80c2bbec44134@shakezula.local.mail>
2333
+ Subject: TEST StatusCat Failure
2334
+ Mime-Version: 1.0
2335
+ Content-Type: multipart/alternative;
2336
+ boundary="--==_mimepart_5352d44f8b819_159f80c2bbec4402a";
2337
+ charset=UTF-8
2338
+ Content-Transfer-Encoding: 7bit
2339
+
2340
+
2341
+ ----==_mimepart_5352d44f8b819_159f80c2bbec4402a
2342
+ Content-Type: text/plain;
2343
+ charset=UTF-8
2344
+ Content-Transfer-Encoding: 7bit
2345
+
2346
+ ----------------------
2347
+ Name | Value | Status
2348
+ ----------------------
2349
+ base | | OK
2350
+ ----------------------
2351
+
2352
+ ----==_mimepart_5352d44f8b819_159f80c2bbec4402a
2353
+ Content-Type: text/html;
2354
+ charset=UTF-8
2355
+ Content-Transfer-Encoding: 7bit
2356
+
2357
+ <!DOCTYPE html>
2358
+ <html>
2359
+ <head>
2360
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
2361
+ </head>
2362
+ <body>
2363
+ <table border="1"><tr><th>Name</th><th>Value</th><th>Status</th></tr><tr><td style="background-color: green">base</td><td></td><td>OK</td></tr></table>
2364
+ </body>
2365
+ </html>
2366
+ ----==_mimepart_5352d44f8b819_159f80c2bbec4402a--
2367
+
2368
+  (0.3ms) select max(version) from schema_migrations
2369
+ Processing by StatusCat::StatusController#index as HTML
2370
+  (0.2ms) select max(version) from schema_migrations
2371
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (0.4ms)
2372
+ Completed 200 OK in 8ms (Views: 5.8ms | ActiveRecord: 0.2ms)
2373
+ Processing by StatusCat::StatusController#index as HTML
2374
+  (0.2ms) select max(version) from schema_migrations
2375
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2376
+  (0.1ms) select max(version) from schema_migrations
2377
+  (0.2ms) select max(version) from schema_migrations
2378
+  (0.3ms) select max(version) from schema_migrations
2379
+  (0.2ms) select max(version) from schema_migrations
2380
+  (0.3ms) select max(version) from schema_migrations
2381
+  (0.2ms) select max(version) from schema_migrations
2382
+  (0.1ms) select max(version) from schema_migrations
2383
+  (0.2ms) select max(version) from schema_migrations
2384
+  (0.2ms) select max(version) from schema_migrations
2385
+  (0.2ms) select max(version) from schema_migrations
2386
+  (0.2ms) select max(version) from schema_migrations
2387
+  (0.1ms) select max(version) from schema_migrations
2388
+  (0.2ms) select max(version) from schema_migrations
2389
+  (0.2ms) select max(version) from schema_migrations
2390
+  (0.1ms) select max(version) from schema_migrations
2391
+  (0.2ms) select max(version) from schema_migrations
2392
+  (0.2ms) select max(version) from schema_migrations
2393
+  (0.2ms) select max(version) from schema_migrations
2394
+  (0.1ms) select max(version) from schema_migrations
2395
+  (0.1ms) select max(version) from schema_migrations
2396
+  (0.1ms) select max(version) from schema_migrations
2397
+  (0.1ms) select max(version) from schema_migrations
2398
+  (0.1ms) select max(version) from schema_migrations
2399
+  (0.2ms) select max(version) from schema_migrations
2400
+ Processing by StatusCat::StatusController#index as HTML
2401
+ Completed 500 Internal Server Error in 3ms
2402
+ Processing by StatusCat::StatusController#index as HTML
2403
+ Completed 500 Internal Server Error in 3ms
2404
+ Processing by StatusCat::StatusController#index as HTML
2405
+ Completed 500 Internal Server Error in 4ms
2406
+ Processing by StatusCat::StatusController#index as HTML
2407
+ Completed 500 Internal Server Error in 2ms
2408
+ Processing by StatusCat::StatusController#index as HTML
2409
+ Completed 500 Internal Server Error in 2ms
2410
+ Processing by StatusCat::StatusController#index as HTML
2411
+ Completed 500 Internal Server Error in 2ms
2412
+ Processing by StatusCat::StatusController#index as HTML
2413
+  (0.9ms) select max(version) from schema_migrations
2414
+ Completed 500 Internal Server Error in 20ms
2415
+ Processing by StatusCat::StatusController#index as HTML
2416
+  (0.3ms) select max(version) from schema_migrations
2417
+ Completed 500 Internal Server Error in 9ms
2418
+ Processing by StatusCat::StatusController#index as HTML
2419
+  (0.8ms) select max(version) from schema_migrations
2420
+ Completed 500 Internal Server Error in 24ms
2421
+ Processing by StatusCat::StatusController#index as HTML
2422
+  (0.2ms) select max(version) from schema_migrations
2423
+ Completed 500 Internal Server Error in 4ms
2424
+ Processing by StatusCat::StatusController#index as HTML
2425
+  (0.4ms) select max(version) from schema_migrations
2426
+ Completed 200 OK in 16ms (Views: 10.5ms | ActiveRecord: 0.4ms)
2427
+  (0.2ms) select max(version) from schema_migrations
2428
+ Processing by StatusCat::StatusController#index as HTML
2429
+  (0.3ms) select max(version) from schema_migrations
2430
+ Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.3ms)
2431
+  (0.3ms) begin transaction
2432
+ Processing by StatusCat::StatusController#index as HTML
2433
+  (0.2ms) select max(version) from schema_migrations
2434
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (0.3ms)
2435
+ Completed 200 OK in 9ms (Views: 7.3ms | ActiveRecord: 0.2ms)
2436
+  (0.1ms) rollback transaction
2437
+  (0.1ms) begin transaction
2438
+ Processing by StatusCat::StatusController#index as HTML
2439
+  (0.2ms) select max(version) from schema_migrations
2440
+ Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
2441
+  (0.1ms) rollback transaction
2442
+  (0.1ms) begin transaction
2443
+ Processing by StatusCat::StatusController#index as HTML
2444
+  (0.2ms) select max(version) from schema_migrations
2445
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2446
+  (0.2ms) select max(version) from schema_migrations
2447
+  (0.1ms) rollback transaction
2448
+  (0.1ms) begin transaction
2449
+ Processing by StatusCat::StatusController#index as HTML
2450
+  (0.2ms) select max(version) from schema_migrations
2451
+ Completed 200 OK in 4ms (Views: 1.5ms | ActiveRecord: 0.2ms)
2452
+  (0.1ms) rollback transaction
2453
+  (0.3ms) begin transaction
2454
+ Processing by StatusCat::StatusController#index as HTML
2455
+  (0.2ms) select max(version) from schema_migrations
2456
+ Rendered /Users/rdh727/schrodingersbox/status_cat/app/views/status_cat/status/index.html.erb within layouts/application (0.3ms)
2457
+ Completed 200 OK in 9ms (Views: 6.8ms | ActiveRecord: 0.2ms)
2458
+  (0.1ms) rollback transaction
2459
+  (0.1ms) begin transaction
2460
+ Processing by StatusCat::StatusController#index as HTML
2461
+  (0.2ms) select max(version) from schema_migrations
2462
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2463
+  (0.1ms) rollback transaction
2464
+  (0.1ms) begin transaction
2465
+ Processing by StatusCat::StatusController#index as HTML
2466
+  (0.3ms) select max(version) from schema_migrations
2467
+ Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.3ms)
2468
+  (0.1ms) select max(version) from schema_migrations
2469
+  (0.1ms) rollback transaction
2470
+  (0.1ms) begin transaction
2471
+ Processing by StatusCat::StatusController#index as HTML
2472
+  (0.2ms) select max(version) from schema_migrations
2473
+ Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
2474
+  (0.1ms) rollback transaction