rubyception 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (227) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +30 -0
  3. data/Rakefile +42 -0
  4. data/app/assets/javascripts/rubyception/app.coffee +4 -0
  5. data/app/assets/javascripts/rubyception/application.coffee +17 -0
  6. data/app/assets/javascripts/rubyception/application.js +15 -0
  7. data/app/assets/javascripts/rubyception/collections/backtrace_lines.coffee +4 -0
  8. data/app/assets/javascripts/rubyception/collections/entries.coffee +3 -0
  9. data/app/assets/javascripts/rubyception/collections/lines.coffee +3 -0
  10. data/app/assets/javascripts/rubyception/init.coffee +10 -0
  11. data/app/assets/javascripts/rubyception/lib/backbone.js +1431 -0
  12. data/app/assets/javascripts/rubyception/lib/inflections.js +659 -0
  13. data/app/assets/javascripts/rubyception/lib/jenny.coffee +262 -0
  14. data/app/assets/javascripts/rubyception/lib/milk.coffee +261 -0
  15. data/app/assets/javascripts/rubyception/lib/mousetrap.js +7 -0
  16. data/app/assets/javascripts/rubyception/lib/underscore-min.js +32 -0
  17. data/app/assets/javascripts/rubyception/models/backtrace_line.coffee +2 -0
  18. data/app/assets/javascripts/rubyception/models/entry.coffee +2 -0
  19. data/app/assets/javascripts/rubyception/models/line.coffee +2 -0
  20. data/app/assets/javascripts/rubyception/routers/log.coffee +45 -0
  21. data/app/assets/javascripts/rubyception/shBrushSql.js +66 -0
  22. data/app/assets/javascripts/rubyception/shCore.js +17 -0
  23. data/app/assets/javascripts/rubyception/template.js +1 -0
  24. data/app/assets/javascripts/rubyception/views/backtrace_lines/backtrace_line.coffee +8 -0
  25. data/app/assets/javascripts/rubyception/views/backtrace_lines/index.coffee +16 -0
  26. data/app/assets/javascripts/rubyception/views/entries/entry.coffee +49 -0
  27. data/app/assets/javascripts/rubyception/views/entries/index.coffee +79 -0
  28. data/app/assets/javascripts/rubyception/views/lines/index.coffee +5 -0
  29. data/app/assets/javascripts/rubyception/views/lines/line.coffee +10 -0
  30. data/app/assets/javascripts/rubyception/views/logs/show.coffee +8 -0
  31. data/app/assets/stylesheets/rubyception/application.css +13 -0
  32. data/app/assets/stylesheets/rubyception/application.sass +12 -0
  33. data/app/assets/stylesheets/rubyception/backtrace_lines.sass +66 -0
  34. data/app/assets/stylesheets/rubyception/default.sass +35 -0
  35. data/app/assets/stylesheets/rubyception/entries.sass +57 -0
  36. data/app/assets/stylesheets/rubyception/lines.sass +41 -0
  37. data/app/assets/stylesheets/rubyception/shCore.css +226 -0
  38. data/app/assets/stylesheets/rubyception/shThemeDefault.css +117 -0
  39. data/app/controllers/rubyception/application_controller.rb +4 -0
  40. data/app/controllers/rubyception/templating_controller.rb +22 -0
  41. data/app/helpers/rubyception/application_helper.rb +9 -0
  42. data/app/models/rubyception/entry.rb +108 -0
  43. data/app/models/rubyception/line.rb +55 -0
  44. data/app/views/layouts/rubyception/application.haml +15 -0
  45. data/app/views/rubyception/application/index.haml +0 -0
  46. data/app/views/rubyception/backtrace_lines/_backtrace_line.haml +5 -0
  47. data/app/views/rubyception/backtrace_lines/_index.haml +7 -0
  48. data/app/views/rubyception/entries/_entry.haml +12 -0
  49. data/app/views/rubyception/entries/_index.haml +1 -0
  50. data/app/views/rubyception/lines/_index.haml +3 -0
  51. data/app/views/rubyception/lines/_line.haml +2 -0
  52. data/app/views/rubyception/lines/action_controller/_exist_fragment.haml +0 -0
  53. data/app/views/rubyception/lines/action_controller/_expire_fragment.haml +0 -0
  54. data/app/views/rubyception/lines/action_controller/_expire_page.haml +0 -0
  55. data/app/views/rubyception/lines/action_controller/_halted_callback.haml +0 -0
  56. data/app/views/rubyception/lines/action_controller/_process_action.haml +0 -0
  57. data/app/views/rubyception/lines/action_controller/_read_fragment.haml +0 -0
  58. data/app/views/rubyception/lines/action_controller/_redirect_to.haml +0 -0
  59. data/app/views/rubyception/lines/action_controller/_send_data.haml +0 -0
  60. data/app/views/rubyception/lines/action_controller/_send_file.haml +0 -0
  61. data/app/views/rubyception/lines/action_controller/_start_processing.haml +0 -0
  62. data/app/views/rubyception/lines/action_controller/_write_fragment.haml +0 -0
  63. data/app/views/rubyception/lines/action_controller/_write_page.haml +0 -0
  64. data/app/views/rubyception/lines/action_mailer/_deliver.haml +0 -0
  65. data/app/views/rubyception/lines/action_mailer/_receive.haml +0 -0
  66. data/app/views/rubyception/lines/action_view/_render_partial.haml +3 -0
  67. data/app/views/rubyception/lines/action_view/_render_template.haml +6 -0
  68. data/app/views/rubyception/lines/active_record/_identity.haml +3 -0
  69. data/app/views/rubyception/lines/active_record/_sql.haml +4 -0
  70. data/app/views/rubyception/lines/active_resource/_request.haml +0 -0
  71. data/app/views/rubyception/lines/active_support/_cache_delete.haml +0 -0
  72. data/app/views/rubyception/lines/active_support/_cache_exist.haml +0 -0
  73. data/app/views/rubyception/lines/active_support/_cache_fetch_hit.haml +0 -0
  74. data/app/views/rubyception/lines/active_support/_cache_generate.haml +0 -0
  75. data/app/views/rubyception/lines/active_support/_cache_read.haml +0 -0
  76. data/app/views/rubyception/lines/active_support/_cache_write.haml +0 -0
  77. data/config/initializers/sass.rb +4 -0
  78. data/config/initializers/websocket_server.rb +23 -0
  79. data/config/routes.rb +3 -0
  80. data/config/templating.yml +39 -0
  81. data/db/development.sqlite3 +0 -0
  82. data/lib/rubyception.rb +6 -0
  83. data/lib/rubyception/catcher.rb +12 -0
  84. data/lib/rubyception/engine.rb +5 -0
  85. data/lib/rubyception/subscriber.rb +30 -0
  86. data/lib/rubyception/templating.rb +48 -0
  87. data/lib/rubyception/version.rb +3 -0
  88. data/lib/rubyception/websocket_server.rb +30 -0
  89. data/lib/tasks/rubyception_tasks.rake +4 -0
  90. data/lib/tasks/templates.rake +7 -0
  91. data/test/dummy/README.rdoc +261 -0
  92. data/test/dummy/Rakefile +7 -0
  93. data/test/dummy/app/assets/javascripts/application.js +15 -0
  94. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  95. data/test/dummy/app/controllers/application_controller.rb +3 -0
  96. data/test/dummy/app/controllers/tasks_controller.rb +4 -0
  97. data/test/dummy/app/helpers/application_helper.rb +2 -0
  98. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  99. data/test/dummy/app/views/tasks/index.html.erb +1 -0
  100. data/test/dummy/config.ru +4 -0
  101. data/test/dummy/config/application.rb +59 -0
  102. data/test/dummy/config/boot.rb +10 -0
  103. data/test/dummy/config/database.yml +25 -0
  104. data/test/dummy/config/environment.rb +5 -0
  105. data/test/dummy/config/environments/development.rb +37 -0
  106. data/test/dummy/config/environments/production.rb +67 -0
  107. data/test/dummy/config/environments/test.rb +37 -0
  108. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  109. data/test/dummy/config/initializers/inflections.rb +15 -0
  110. data/test/dummy/config/initializers/mime_types.rb +5 -0
  111. data/test/dummy/config/initializers/secret_token.rb +7 -0
  112. data/test/dummy/config/initializers/session_store.rb +8 -0
  113. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  114. data/test/dummy/config/locales/en.yml +5 -0
  115. data/test/dummy/config/routes.rb +5 -0
  116. data/test/dummy/db/development.sqlite3 +0 -0
  117. data/test/dummy/log/development.log +183 -0
  118. data/test/dummy/public/404.html +26 -0
  119. data/test/dummy/public/422.html +26 -0
  120. data/test/dummy/public/500.html +25 -0
  121. data/test/dummy/public/favicon.ico +0 -0
  122. data/test/dummy/script/rails +6 -0
  123. data/test/dummy/tmp/cache/assets/C2A/A50/sprockets%2F502789294f7d708459013948aa30c91c +0 -0
  124. data/test/dummy/tmp/cache/assets/C76/720/sprockets%2F610e52016b025a1ce3828a39a7e93981 +0 -0
  125. data/test/dummy/tmp/cache/assets/C7E/740/sprockets%2F8703235e74ff13492a454a492b24b7c5 +0 -0
  126. data/test/dummy/tmp/cache/assets/C86/920/sprockets%2Fc4933e5c2861e44ab07485567259fa32 +0 -0
  127. data/test/dummy/tmp/cache/assets/C9C/F10/sprockets%2F33864d14794ad865eed8829535780ad9 +0 -0
  128. data/test/dummy/tmp/cache/assets/CA1/8B0/sprockets%2F2fb362180bfba307350968110ec6f454 +0 -0
  129. data/test/dummy/tmp/cache/assets/CAD/770/sprockets%2Fc5914c960063cf7cdcd50130a7637485 +0 -0
  130. data/test/dummy/tmp/cache/assets/CAD/DB0/sprockets%2Fe276db0373d02afa09f069436349328d +0 -0
  131. data/test/dummy/tmp/cache/assets/CAE/140/sprockets%2F6350953af3f774482a51481f8cd0a3c3 +0 -0
  132. data/test/dummy/tmp/cache/assets/CB0/010/sprockets%2F1c103104469484b76897daa3d04c6ee9 +0 -0
  133. data/test/dummy/tmp/cache/assets/CB2/E10/sprockets%2F7b063ac8c2e913114d098d89e60228e5 +0 -0
  134. data/test/dummy/tmp/cache/assets/CB5/EA0/sprockets%2Fe98d20291409af69a7316a86c45da651 +0 -0
  135. data/test/dummy/tmp/cache/assets/CB9/B80/sprockets%2F07c32ba22a6489f062e48df8830667d8 +0 -0
  136. data/test/dummy/tmp/cache/assets/CBE/630/sprockets%2F476aa283807fdd8203e98d3137686eb5 +0 -0
  137. data/test/dummy/tmp/cache/assets/CBE/A10/sprockets%2F7f66283cb01647a7c4cf954b62919c29 +0 -0
  138. data/test/dummy/tmp/cache/assets/CC8/DC0/sprockets%2F302790cf97013f80dc311cf2ad0a6342 +0 -0
  139. data/test/dummy/tmp/cache/assets/CD1/8E0/sprockets%2Fe898f78743c913b3855e1786cc58ec61 +0 -0
  140. data/test/dummy/tmp/cache/assets/CD2/510/sprockets%2F32995b414c804ddbb00f5504841f5e1b +0 -0
  141. data/test/dummy/tmp/cache/assets/CD6/EE0/sprockets%2F8666c05da70453c6e7cda433411192af +0 -0
  142. data/test/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  143. data/test/dummy/tmp/cache/assets/CE4/F70/sprockets%2F538e295f0a0d9311c8259bf029ec680f +0 -0
  144. data/test/dummy/tmp/cache/assets/CE5/3E0/sprockets%2F7b916f5404e1ee4a943e921d6523a97b +0 -0
  145. data/test/dummy/tmp/cache/assets/CE9/D20/sprockets%2F9dd235d6e21764622b79bf65cf15349a +0 -0
  146. data/test/dummy/tmp/cache/assets/CF2/2F0/sprockets%2F314b4a0885d2efea526a19f539987e96 +0 -0
  147. data/test/dummy/tmp/cache/assets/CFB/750/sprockets%2F42c8014c71d022dd4c60ed1e963b076a +0 -0
  148. data/test/dummy/tmp/cache/assets/D03/BA0/sprockets%2F7c98f37658deed89f88b13d429262a75 +0 -0
  149. data/test/dummy/tmp/cache/assets/D07/3B0/sprockets%2F2ca3210b7cff57c3299aea8507803f32 +0 -0
  150. data/test/dummy/tmp/cache/assets/D08/7E0/sprockets%2F47ed6467d629e22254ca2b0d13c863bb +0 -0
  151. data/test/dummy/tmp/cache/assets/D0F/970/sprockets%2F0461a7c825c4bb945e2f5daf00974f64 +0 -0
  152. data/test/dummy/tmp/cache/assets/D10/E40/sprockets%2Fa39042b3a568331554c57725fedfcf3e +0 -0
  153. data/test/dummy/tmp/cache/assets/D13/740/sprockets%2F98a98bb8bc60c8b170c451195e44e42d +0 -0
  154. data/test/dummy/tmp/cache/assets/D14/BE0/sprockets%2Faa69f1166262379365d818afcf4fa3b3 +0 -0
  155. data/test/dummy/tmp/cache/assets/D15/C40/sprockets%2F8fe3d124a7582df0a47c44743f3e3d85 +0 -0
  156. data/test/dummy/tmp/cache/assets/D1B/210/sprockets%2F567244d0d8f2733c6d1826ee82c76dce +0 -0
  157. data/test/dummy/tmp/cache/assets/D2C/BD0/sprockets%2F17c8f4a03e52cd0d6b85605b0abd7413 +0 -0
  158. data/test/dummy/tmp/cache/assets/D2D/BE0/sprockets%2Fcdcde17900d6ad0c72c14390808a35b3 +0 -0
  159. data/test/dummy/tmp/cache/assets/D30/800/sprockets%2F6ad46c52755a4a6c0b81250fc72ae17c +0 -0
  160. data/test/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  161. data/test/dummy/tmp/cache/assets/D34/E20/sprockets%2Fc81175b2bb38464d022abb2d9b18bf87 +0 -0
  162. data/test/dummy/tmp/cache/assets/D38/420/sprockets%2Fc893136e3c5e0cb051358b8c01fc6b9c +0 -0
  163. data/test/dummy/tmp/cache/assets/D3C/C50/sprockets%2F52be58b70628a1836b3cea8bd096ee22 +0 -0
  164. data/test/dummy/tmp/cache/assets/D3E/980/sprockets%2F5e82819b1fe416d230b10d76abd948df +0 -0
  165. data/test/dummy/tmp/cache/assets/D3F/A80/sprockets%2F5e2ee04b0c2b6417f9ab728692a738cd +0 -0
  166. data/test/dummy/tmp/cache/assets/D41/340/sprockets%2Ffdc1e8bf346373a650e6d082f522a59e +0 -0
  167. data/test/dummy/tmp/cache/assets/D41/920/sprockets%2F64c94c28c60bbb70d9a3b9e972ae3057 +0 -0
  168. data/test/dummy/tmp/cache/assets/D47/BB0/sprockets%2F40929a27da40e05aa0b4aa0173f1ebb1 +0 -0
  169. data/test/dummy/tmp/cache/assets/D49/740/sprockets%2Fbcb0e6511f88b9af6d70380c86a57b79 +0 -0
  170. data/test/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  171. data/test/dummy/tmp/cache/assets/D50/940/sprockets%2Ff601e768c1f96abd3d019e7f7564e3c9 +0 -0
  172. data/test/dummy/tmp/cache/assets/D53/460/sprockets%2F64e051e79ebdaa56bd989d67831f941d +0 -0
  173. data/test/dummy/tmp/cache/assets/D58/150/sprockets%2F70d598d088bce2f8078c80866be9cff0 +0 -0
  174. data/test/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  175. data/test/dummy/tmp/cache/assets/D66/E40/sprockets%2F0cd4ea4f30e313f641b96be80a13cf98 +0 -0
  176. data/test/dummy/tmp/cache/assets/D69/5A0/sprockets%2F8a630d58f110eeeffad123986912bae1 +0 -0
  177. data/test/dummy/tmp/cache/assets/D69/E10/sprockets%2F3d4d98cb1ad46a0b7635b75993c2ac0d +0 -0
  178. data/test/dummy/tmp/cache/assets/D6A/920/sprockets%2F9f1c0c3ad8aae418e1004d5cf54f5479 +0 -0
  179. data/test/dummy/tmp/cache/assets/D6B/A70/sprockets%2Fff1bd1557a03e82f5c2c45d58b661a4f +0 -0
  180. data/test/dummy/tmp/cache/assets/D6F/6B0/sprockets%2F1e2a322de4879106937ede70ffa2da6e +0 -0
  181. data/test/dummy/tmp/cache/assets/D70/780/sprockets%2F6c6a33bccf82b144dbd7982f0854f8b0 +0 -0
  182. data/test/dummy/tmp/cache/assets/D73/C90/sprockets%2F9752db727fd681d97becb91a17ad302d +0 -0
  183. data/test/dummy/tmp/cache/assets/D74/A50/sprockets%2Fe50162da67fdab880a08590f618dfc8e +0 -0
  184. data/test/dummy/tmp/cache/assets/D75/270/sprockets%2Fef0b31d47f8f9acc69f0234019b737ee +0 -0
  185. data/test/dummy/tmp/cache/assets/D77/320/sprockets%2F0c96ad8de5e6a049f5df53415baa4697 +0 -0
  186. data/test/dummy/tmp/cache/assets/D7A/CF0/sprockets%2Fb7e1aa09c7c42e2b98895e16dbc839b6 +0 -0
  187. data/test/dummy/tmp/cache/assets/D7B/110/sprockets%2F55184d1c2bc87fc49369d69e10be7adf +0 -0
  188. data/test/dummy/tmp/cache/assets/D81/A40/sprockets%2Ff886784e31a152dc32fdf5cf782d6bd9 +0 -0
  189. data/test/dummy/tmp/cache/assets/D91/AE0/sprockets%2Fab00df33bbe0ef2939b4d43e042e4d77 +0 -0
  190. data/test/dummy/tmp/cache/assets/D9E/1A0/sprockets%2F69bf83cb71b257071ba6db37bdea78f1 +0 -0
  191. data/test/dummy/tmp/cache/assets/D9E/840/sprockets%2Fc8da1010ea3b0a24bd101a2dd319dc4c +0 -0
  192. data/test/dummy/tmp/cache/assets/DA0/880/sprockets%2F89c46cad03e38a94663bfaac1b8d95d0 +0 -0
  193. data/test/dummy/tmp/cache/assets/DA1/950/sprockets%2F1ea6768fec37a8ee2ad758d4152ae1d2 +0 -0
  194. data/test/dummy/tmp/cache/assets/DA1/D40/sprockets%2Ffd605d648ad0a46b3e3ef9cf089a51b6 +0 -0
  195. data/test/dummy/tmp/cache/assets/DA1/FB0/sprockets%2Fe8cba462fd2940b4be7bf2d294fd7209 +0 -0
  196. data/test/dummy/tmp/cache/assets/DA9/140/sprockets%2Fa9dc7b7a71d4a92925c654f09d17fefa +0 -0
  197. data/test/dummy/tmp/cache/assets/DAA/960/sprockets%2F486294de7d016fa0ec65f0f9efa2e19f +0 -0
  198. data/test/dummy/tmp/cache/assets/DAB/9E0/sprockets%2Fa425c97bf53c87ea907267ce66ad5deb +0 -0
  199. data/test/dummy/tmp/cache/assets/DB3/1D0/sprockets%2F095c6e852a938bbfb9fc98a9ea105ee8 +0 -0
  200. data/test/dummy/tmp/cache/assets/DC3/C60/sprockets%2F0c49e61f99da10cf7acc0cac7736b23a +0 -0
  201. data/test/dummy/tmp/cache/assets/DC7/E70/sprockets%2Fdae539d9ce457212fabb2abf298e112d +0 -0
  202. data/test/dummy/tmp/cache/assets/DC8/C90/sprockets%2F880a4acdf2b3dec03f783e63ed10e6e3 +0 -0
  203. data/test/dummy/tmp/cache/assets/DD0/DE0/sprockets%2Fdd9bcfaa02c63a17f16d84fb523fd886 +0 -0
  204. data/test/dummy/tmp/cache/assets/DD0/E10/sprockets%2F7ff09d9b55239e81c67ac0bd1cd60cfb +0 -0
  205. data/test/dummy/tmp/cache/assets/DD3/140/sprockets%2Fdcdc4960e9f9381cbaec40b2f26c8f53 +0 -0
  206. data/test/dummy/tmp/cache/assets/DD4/340/sprockets%2Ff2cff1054cf9ff3d947f1372db9b6aa2 +0 -0
  207. data/test/dummy/tmp/cache/assets/DD7/F90/sprockets%2F3cbb2ecff5ff45927078c4490a93bfeb +0 -0
  208. data/test/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  209. data/test/dummy/tmp/cache/assets/DE2/3D0/sprockets%2F503d37fdad31b11af5bd20b78ee3eaa0 +0 -0
  210. data/test/dummy/tmp/cache/assets/DF5/440/sprockets%2Fadaab579f5cf709a6c31b2fe40404ede +0 -0
  211. data/test/dummy/tmp/cache/assets/DFC/4A0/sprockets%2Fb2e7beb7a4bdf292c1b627bf0f84d9f0 +0 -0
  212. data/test/dummy/tmp/cache/assets/E02/C10/sprockets%2Fdd42eb4f61a99477f901cc31ddda7cfd +0 -0
  213. data/test/dummy/tmp/cache/assets/E04/610/sprockets%2Fd7d96ebe1affa231845c03c78ff6eaa7 +0 -0
  214. data/test/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  215. data/test/dummy/tmp/cache/assets/E14/060/sprockets%2F7d7d19b9786dbc0f535478bcdcdc8fce +0 -0
  216. data/test/dummy/tmp/cache/assets/E27/F00/sprockets%2F8abb689fab00eaa7301adf5d198f4dce +0 -0
  217. data/test/dummy/tmp/cache/assets/E2B/870/sprockets%2F22736cce6575f0dd0fcedb11ece9cc8a +0 -0
  218. data/test/dummy/tmp/cache/assets/E31/FB0/sprockets%2Fa8bb4c8b0dc7cc0affd698f7e2a27d72 +0 -0
  219. data/test/dummy/tmp/cache/assets/E3B/E00/sprockets%2F4e3fffccff7a681b16a92b6caf8ef761 +0 -0
  220. data/test/dummy/tmp/cache/assets/E57/9C0/sprockets%2Fb3ca68a8872ea6d2cc2bcbfe01a7fde6 +0 -0
  221. data/test/dummy/tmp/cache/assets/E69/200/sprockets%2Ff2e92a9a60ccdd889dd57cd5bdfed0f2 +0 -0
  222. data/test/dummy/tmp/cache/assets/E6B/860/sprockets%2Ffde862d9eef7ace776b5e3ebc470bcb4 +0 -0
  223. data/test/dummy/tmp/cache/assets/F4A/1F0/sprockets%2Ffceff42fa3bdfb2eafbcad5a77ad38ee +0 -0
  224. data/test/integration/navigation_test.rb +10 -0
  225. data/test/rubyception_test.rb +7 -0
  226. data/test/test_helper.rb +15 -0
  227. metadata +495 -0
@@ -0,0 +1,4 @@
1
+ class TasksController < ActionController::Base
2
+ def index
3
+ end
4
+ end
@@ -0,0 +1,2 @@
1
+ module ApplicationHelper
2
+ end
@@ -0,0 +1,14 @@
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <title>Dummy</title>
5
+ <%= stylesheet_link_tag "application", :media => "all" %>
6
+ <%= javascript_include_tag "application" %>
7
+ <%= csrf_meta_tags %>
8
+ </head>
9
+ <body>
10
+
11
+ <%= yield %>
12
+
13
+ </body>
14
+ </html>
@@ -0,0 +1 @@
1
+ All Tasks
@@ -0,0 +1,4 @@
1
+ # This file is used by Rack-based servers to start the application.
2
+
3
+ require ::File.expand_path('../config/environment', __FILE__)
4
+ run Dummy::Application
@@ -0,0 +1,59 @@
1
+ require File.expand_path('../boot', __FILE__)
2
+
3
+ require 'rails/all'
4
+
5
+ Bundler.require
6
+ require "rubyception"
7
+
8
+ module Dummy
9
+ class Application < Rails::Application
10
+ # Settings in config/environments/* take precedence over those specified here.
11
+ # Application configuration should go into files in config/initializers
12
+ # -- all .rb files in that directory are automatically loaded.
13
+
14
+ # Custom directories with classes and modules you want to be autoloadable.
15
+ # config.autoload_paths += %W(#{config.root}/extras)
16
+
17
+ # Only load the plugins named here, in the order given (default is alphabetical).
18
+ # :all can be used as a placeholder for all plugins not explicitly named.
19
+ # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
20
+
21
+ # Activate observers that should always be running.
22
+ # config.active_record.observers = :cacher, :garbage_collector, :forum_observer
23
+
24
+ # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
25
+ # Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
26
+ # config.time_zone = 'Central Time (US & Canada)'
27
+
28
+ # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
29
+ # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
30
+ # config.i18n.default_locale = :de
31
+
32
+ # Configure the default encoding used in templates for Ruby 1.9.
33
+ config.encoding = "utf-8"
34
+
35
+ # Configure sensitive parameters which will be filtered from the log file.
36
+ config.filter_parameters += [:password]
37
+
38
+ # Enable escaping HTML in JSON.
39
+ config.active_support.escape_html_entities_in_json = true
40
+
41
+ # Use SQL instead of Active Record's schema dumper when creating the database.
42
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
43
+ # like if you have constraints or database-specific column types
44
+ # config.active_record.schema_format = :sql
45
+
46
+ # Enforce whitelist mode for mass assignment.
47
+ # This will create an empty whitelist of attributes available for mass-assignment for all models
48
+ # in your app. As such, your models will need to explicitly whitelist or blacklist accessible
49
+ # parameters by using an attr_accessible or attr_protected declaration.
50
+ config.active_record.whitelist_attributes = true
51
+
52
+ # Enable the asset pipeline
53
+ config.assets.enabled = true
54
+
55
+ # Version of your assets, change this if you want to expire all your assets
56
+ config.assets.version = '1.0'
57
+ end
58
+ end
59
+
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Raise exception on mass assignment protection for Active Record models
26
+ config.active_record.mass_assignment_sanitizer = :strict
27
+
28
+ # Log the query plan for queries taking more than this (works
29
+ # with SQLite, MySQL, and PostgreSQL)
30
+ config.active_record.auto_explain_threshold_in_seconds = 0.5
31
+
32
+ # Do not compress assets
33
+ config.assets.compress = false
34
+
35
+ # Expands the lines which load the assets
36
+ config.assets.debug = true
37
+ end
@@ -0,0 +1,67 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to nil and saved in location specified by config.assets.prefix
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Prepend all log lines with the following tags
37
+ # config.log_tags = [ :subdomain, :uuid ]
38
+
39
+ # Use a different logger for distributed setups
40
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
41
+
42
+ # Use a different cache store in production
43
+ # config.cache_store = :mem_cache_store
44
+
45
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
46
+ # config.action_controller.asset_host = "http://assets.example.com"
47
+
48
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
49
+ # config.assets.precompile += %w( search.js )
50
+
51
+ # Disable delivery errors, bad email addresses will be ignored
52
+ # config.action_mailer.raise_delivery_errors = false
53
+
54
+ # Enable threaded mode
55
+ # config.threadsafe!
56
+
57
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
58
+ # the I18n.default_locale when a translation can not be found)
59
+ config.i18n.fallbacks = true
60
+
61
+ # Send deprecation notices to registered listeners
62
+ config.active_support.deprecation = :notify
63
+
64
+ # Log the query plan for queries taking more than this (works
65
+ # with SQLite, MySQL, and PostgreSQL)
66
+ # config.active_record.auto_explain_threshold_in_seconds = 0.5
67
+ end
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = '6cc0780ab4666045e6409d27fa2246f460ae9a6c4e641bdb8e60a0b93b39fea7681ad3372700315eaaefe26f460f977b744e631f5fe17a8c4aefb6439f8c8fa9'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,5 @@
1
+ Rails.application.routes.draw do
2
+
3
+ mount Rubyception::Engine => "/rubyception"
4
+ root to: 'tasks#index'
5
+ end
File without changes
@@ -0,0 +1,183 @@
1
+ DEPRECATION WARNING: auto_flushing= is deprecated and will be removed from Rails 3.2. (called from <top (required)> at /Users/tye/Sites/rubyception/config/initializers/websocket_server.rb:5)
2
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
3
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/entries/_index.haml (1.0ms)
4
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
5
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/entries/_entry.haml (2.2ms)
6
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
7
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/backtrace_lines/_index.haml (1.7ms)
8
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
9
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/backtrace_lines/_backtrace_line.haml (1.2ms)
10
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
11
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/_index.haml (0.8ms)
12
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
13
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_write_fragment.haml (0.5ms)
14
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
15
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_read_fragment.haml (0.5ms)
16
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
17
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_expire_fragment.haml (0.5ms)
18
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
19
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_exist_fragment.haml (0.5ms)
20
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
21
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_write_page.haml (0.5ms)
22
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
23
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_expire_page.haml (0.5ms)
24
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
25
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_start_processing.haml (0.5ms)
26
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
27
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_process_action.haml (0.5ms)
28
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
29
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_send_file.haml (0.5ms)
30
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
31
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_send_data.haml (0.5ms)
32
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
33
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_redirect_to.haml (0.5ms)
34
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
35
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_halted_callback.haml (0.5ms)
36
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
37
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_view/_render_template.haml (1.5ms)
38
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
39
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_view/_render_partial.haml (1.1ms)
40
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
41
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_record/_sql.haml (1.3ms)
42
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
43
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_record/_identity.haml (1.1ms)
44
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
45
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_mailer/_receive.haml (0.5ms)
46
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
47
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_mailer/_deliver.haml (0.5ms)
48
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
49
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_resource/_request.haml (0.5ms)
50
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
51
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_read.haml (0.5ms)
52
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
53
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_generate.haml (0.5ms)
54
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
55
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_fetch_hit.haml (0.5ms)
56
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
57
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_write.haml (0.5ms)
58
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
59
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_delete.haml (0.5ms)
60
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
61
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_exist.haml (0.5ms)
62
+ DEPRECATION WARNING: auto_flushing= is deprecated and will be removed from Rails 3.2. (called from <top (required)> at /Users/tye/Sites/rubyception/config/initializers/websocket_server.rb:5)
63
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
64
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/entries/_index.haml (0.9ms)
65
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
66
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/entries/_entry.haml (2.1ms)
67
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
68
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/backtrace_lines/_index.haml (1.7ms)
69
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
70
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/backtrace_lines/_backtrace_line.haml (1.3ms)
71
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
72
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/_index.haml (0.8ms)
73
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
74
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_write_fragment.haml (0.6ms)
75
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
76
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_read_fragment.haml (0.5ms)
77
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
78
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_expire_fragment.haml (0.5ms)
79
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
80
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_exist_fragment.haml (0.5ms)
81
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
82
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_write_page.haml (0.5ms)
83
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
84
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_expire_page.haml (0.5ms)
85
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
86
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_start_processing.haml (0.5ms)
87
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
88
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_process_action.haml (0.5ms)
89
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
90
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_send_file.haml (0.6ms)
91
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
92
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_send_data.haml (0.6ms)
93
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
94
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_redirect_to.haml (0.5ms)
95
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
96
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_halted_callback.haml (0.5ms)
97
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
98
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_view/_render_template.haml (1.5ms)
99
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
100
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_view/_render_partial.haml (1.1ms)
101
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
102
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_record/_sql.haml (1.4ms)
103
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
104
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_record/_identity.haml (1.2ms)
105
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
106
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_mailer/_receive.haml (0.5ms)
107
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
108
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_mailer/_deliver.haml (0.5ms)
109
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
110
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_resource/_request.haml (0.5ms)
111
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
112
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_read.haml (0.5ms)
113
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
114
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_generate.haml (0.5ms)
115
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
116
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_fetch_hit.haml (0.5ms)
117
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
118
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_write.haml (0.5ms)
119
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
120
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_delete.haml (0.5ms)
121
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
122
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_exist.haml (0.5ms)
123
+ DEPRECATION WARNING: auto_flushing= is deprecated and will be removed from Rails 3.2. (called from <top (required)> at /Users/tye/Sites/rubyception/config/initializers/websocket_server.rb:5)
124
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
125
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/entries/_index.haml (0.9ms)
126
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
127
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/entries/_entry.haml (2.1ms)
128
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
129
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/backtrace_lines/_index.haml (1.8ms)
130
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
131
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/backtrace_lines/_backtrace_line.haml (1.3ms)
132
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
133
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/_index.haml (0.8ms)
134
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
135
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_write_fragment.haml (0.5ms)
136
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
137
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_read_fragment.haml (0.5ms)
138
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
139
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_expire_fragment.haml (0.5ms)
140
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
141
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_exist_fragment.haml (0.5ms)
142
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
143
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_write_page.haml (0.5ms)
144
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
145
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_expire_page.haml (0.6ms)
146
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
147
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_start_processing.haml (0.5ms)
148
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
149
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_process_action.haml (0.5ms)
150
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
151
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_send_file.haml (0.5ms)
152
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
153
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_send_data.haml (0.7ms)
154
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
155
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_redirect_to.haml (0.7ms)
156
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
157
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_controller/_halted_callback.haml (0.6ms)
158
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
159
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_view/_render_template.haml (1.7ms)
160
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
161
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_view/_render_partial.haml (1.8ms)
162
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
163
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_record/_sql.haml (1.6ms)
164
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
165
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_record/_identity.haml (1.1ms)
166
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
167
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_mailer/_receive.haml (0.5ms)
168
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
169
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/action_mailer/_deliver.haml (0.5ms)
170
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
171
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_resource/_request.haml (0.7ms)
172
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
173
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_read.haml (0.5ms)
174
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
175
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_generate.haml (0.5ms)
176
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
177
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_fetch_hit.haml (0.5ms)
178
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
179
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_write.haml (0.5ms)
180
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
181
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_delete.haml (0.5ms)
182
+ Could not log "render_partial.action_view" event. NoMethodError: undefined method `<<' for nil:NilClass
183
+ Rendered /Users/tye/Sites/rubyception/app/views/rubyception/lines/active_support/_cache_exist.haml (0.5ms)