help_engine 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (376) hide show
  1. checksums.yaml +15 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +129 -0
  4. data/Rakefile +37 -0
  5. data/app/assets/javascripts/help_engine/application.js +13 -0
  6. data/app/assets/javascripts/help_engine/help_pages.js +2 -0
  7. data/app/assets/stylesheets/help_engine/application.css +15 -0
  8. data/app/assets/stylesheets/help_engine/help_pages.css +4 -0
  9. data/app/controllers/help_engine/application_controller.rb +4 -0
  10. data/app/controllers/help_engine/help_pages_controller.rb +62 -0
  11. data/app/helpers/help_engine/application_helper.rb +4 -0
  12. data/app/helpers/help_engine/help_pages_helper.rb +4 -0
  13. data/app/models/help_engine/help_page.rb +26 -0
  14. data/app/views/help_engine/help_pages/_form.html.erb +43 -0
  15. data/app/views/help_engine/help_pages/edit.html.erb +8 -0
  16. data/app/views/help_engine/help_pages/index.html.erb +21 -0
  17. data/app/views/help_engine/help_pages/new.html.erb +7 -0
  18. data/app/views/help_engine/help_pages/show.html.erb +16 -0
  19. data/app/views/layouts/help_engine/application.html.erb +14 -0
  20. data/config/routes.rb +6 -0
  21. data/db/migrate/20150728142457_create_help_engine_help_pages.rb +11 -0
  22. data/db/migrate/20150729102332_add_author_to_help_pages.rb +6 -0
  23. data/lib/help_engine.rb +4 -0
  24. data/lib/help_engine/engine.rb +6 -0
  25. data/lib/help_engine/version.rb +9 -0
  26. data/lib/tasks/help_engine_tasks.rake +4 -0
  27. data/test/controllers/help_engine/help_pages_controller_test.rb +51 -0
  28. data/test/dummy/README.rdoc +28 -0
  29. data/test/dummy/Rakefile +6 -0
  30. data/test/dummy/app/assets/javascripts/application.js +15 -0
  31. data/test/dummy/app/assets/javascripts/home.js +2 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  33. data/test/dummy/app/assets/stylesheets/help_pages.css +20 -0
  34. data/test/dummy/app/assets/stylesheets/home.css +4 -0
  35. data/test/dummy/app/controllers/application_controller.rb +5 -0
  36. data/test/dummy/app/controllers/home_controller.rb +4 -0
  37. data/test/dummy/app/helpers/application_helper.rb +2 -0
  38. data/test/dummy/app/helpers/home_helper.rb +2 -0
  39. data/test/dummy/app/models/user.rb +5 -0
  40. data/test/dummy/app/views/home/index.html.erb +12 -0
  41. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  42. data/test/dummy/app/views/layouts/help_engine/application.html.erb +18 -0
  43. data/test/dummy/bin/bundle +3 -0
  44. data/test/dummy/bin/rails +4 -0
  45. data/test/dummy/bin/rake +4 -0
  46. data/test/dummy/bin/setup +29 -0
  47. data/test/dummy/config.ru +4 -0
  48. data/test/dummy/config/application.rb +26 -0
  49. data/test/dummy/config/boot.rb +5 -0
  50. data/test/dummy/config/database.yml +25 -0
  51. data/test/dummy/config/environment.rb +5 -0
  52. data/test/dummy/config/environments/development.rb +41 -0
  53. data/test/dummy/config/environments/production.rb +79 -0
  54. data/test/dummy/config/environments/test.rb +42 -0
  55. data/test/dummy/config/initializers/assets.rb +11 -0
  56. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  57. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  58. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  59. data/test/dummy/config/initializers/inflections.rb +16 -0
  60. data/test/dummy/config/initializers/mime_types.rb +4 -0
  61. data/test/dummy/config/initializers/session_store.rb +3 -0
  62. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  63. data/test/dummy/config/locales/en.yml +23 -0
  64. data/test/dummy/config/routes.rb +7 -0
  65. data/test/dummy/config/secrets.yml +22 -0
  66. data/test/dummy/db/development.sqlite3 +0 -0
  67. data/test/dummy/db/migrate/20150729103806_create_users.rb +9 -0
  68. data/test/dummy/db/schema.rb +35 -0
  69. data/test/dummy/db/test.sqlite3 +0 -0
  70. data/test/dummy/log/development.log +2577 -0
  71. data/test/dummy/log/test.log +4807 -0
  72. data/test/dummy/public/404.html +67 -0
  73. data/test/dummy/public/422.html +67 -0
  74. data/test/dummy/public/500.html +66 -0
  75. data/test/dummy/public/favicon.ico +0 -0
  76. data/test/dummy/test/controllers/home_controller_test.rb +9 -0
  77. data/test/dummy/test/models/user_test.rb +9 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-Nb4-glReZdOKM_Esl7KrX92gAxxwYEv8r--wpZ2AnA.cache +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-RR_kQxJmSk1g8TuaR2k4oANAObXi9ihZHDzUmFOX9Q.cache +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-SrnqbERIC3yCdUkYkP-rPk7YYSdasLVe5vPA-vjtg0.cache +1 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-k8puMC5Eqq6HNuUcyMyC9b78TTRu36rmHqsWorU0Rg.cache +1 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-pRet6NBrdPzO2QxMHMOcMoELMzGgToR9sQNAmznfB4.cache +1 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0-wSSu36D6YrVvOEj8KTvT9NZVstyzMsss71WxcWE60.cache +2 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0bBd9lLlffpC5NrKPStP2gtkZFCZeDyYK_870IBS5SM.cache +1 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/10wTpXRpIK4-8G3BjoDc0_xGhrrRPOHP0-o9bRTX6p4.cache +1 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1_xxc9tRuRrqPRzlqPnAoeQ5-8rHxUmAoMmAEeQiIpo.cache +1 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1nDlh0ykt8Un7ek3I2DnMcQQhsWf60Qcl8ow8vHoEHw.cache +1 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2BtI15iY6obksxZAGwKu_op6HNJtOhFF2aZvua1k9Cg.cache +1 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2djTcaWqFaQvR0HOvOw9uoO7_DFJJpA_FnuDOdOimmE.cache +0 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3TfD7ggCUdf1U6vk_vfAMl4rhie387905faEZ-rhzxk.cache +1 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3TxoC4FlqW4lpUG06QUzYHcwAOwojOnV4ogODWK87KY.cache +1 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4BsnUTinY20xJE6EFwVUWY5D3idM3ZN3zhvMUwLTmzw.cache +2 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4MEISqDP9AuOkU4GwbUg6iyvTE8ygI74ogDCjkGoR8w.cache +1 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4ZwzEDZKiwYjFWukk0vJIHEbxea9ighL5FM8Rtg6oLc.cache +1 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5-X-YnySPf01eBTwek6E3a7QtAmUsMIm8aTSRyhYlYM.cache +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5MYrDqzNBlq_JRGZzXuyY00F2Wc43q7gIMDTx6bttz4.cache +2 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5MuSqebc80HX46DcID0bPxVZZ42bwO4v4WfhuNh255U.cache +1 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6Qyv1ZFaOcMRDd8UXRKi1x9_0Bu5ChywyzqekVjU8Wg.cache +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6ebKLq_GMaP1oFAYPCwdeADib3Uw9-nGNqxEpdCeBIU.cache +0 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7ezy78ekarp49sWLRBkvH9uT4JPg_-CtTwYoWI8w7GI.cache +2 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/85aWm6sGrUUerMv2-j2cG91tNv3c9wsC76lcdF-syYI.cache +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8j4_9U3kUmOrYQ7Tx4MFN2kQwmFaOcGuH5axXdNN1Rw.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9331DNeUloM2h0916fHV3fO2Ifqk-X7g0XUckf0SPIc.cache +1 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9H4RyRYnQcPWacSEHsYjkhaE_mkO0HnegiC1CxLtt_A.cache +1 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9MMsnVuoBXcTv6IQiV-mPN9uamLm08vRYlJaxhYvqTU.cache +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9RauYKcVeOYCaLLYxxQrIHbZmlOdarost3wpQjnHtvI.cache +0 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9pfGliw2FZwEqbhVshzHoNhTfQ2hEIOCuABOjgmk8gg.cache +0 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/A1Bb1d6kchtoem2iyBnxBRo2uSaZH41uPTk0cWoO4us.cache +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/A41MT8xWUFUMbKAP5IBvFZPFxSOy1FSR52U0Ktn9iEk.cache +2 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AEYT92WiWCWnqMEKRJPXHrEC7l3FxAqj4dFeiUefPsU.cache +1 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BAR5AVm4w0xcnQnlvdPY4i69kq_v6TMQNdSFbHVO7XA.cache +2 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Bp0DK6a8wU14_66pgM08FDTiEd6sb7ok66GKNK060Jo.cache +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CBKqi865QK6HEAe65svLVGpw8xmoNy_2JRbquR0hcJI.cache +1 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CvFDw1yH4H0djF_P-YoONcq5hRuAzx9pt3EoTs8TPSc.cache +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CycC8E9Nl8m3jFr_n0WQsIKUpcD1x9DyIJZR9YZxqZo.cache +2 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DGLzz83PV8JVIe-BNCaxduT-qYwbcY2ew6taWisVmyA.cache +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DZsqP2fG66FVJ9wACqzE6GRdEIWFU4cU4wUqxCU1zYo.cache +1 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DtMSdtj9n2ytUFD3eJvg8HlYO7qtOAS6W8z3GofBjd4.cache +1 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DvUSkkPQMvL1zbjDlHbdiM8hyjNarRqgPeaxOKQ-HLU.cache +1 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/E4ps_R4XOwRWjpyl2V3QgwJ-aMh9ZSE1mPOwhTcG5zc.cache +0 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EeS3BFGFUeQO5qckSqB1dHwRwKJEdjZdJdO7dkhJbys.cache +1 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ExxhUhA_vbDgLz2_zm67qEg9MVnXrMK5lHlXNcosJSE.cache +1 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FENM70mwHD12tlpTOl-rJOMGVx0RIRGKJ43eoHpJKgo.cache +1 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FMmFnmqmpxwGkxKK2lZ1my5bm3fG-YcaE3WFsCT2-zU.cache +1 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Fzye4VhJ6oTXduFYFOZxRMjeUwRT6k3ITuqdgnUlK_s.cache +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GgRnRvCy7r7DbhcdWa4Vgbwm6NO0TH6h7SWBAajGGuM.cache +1 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GwFMPQD-mpnVD8XDSKLYxiH9FkFTkU-Vq3g_HDL3TlY.cache +2 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HD4BLfAwO5nwHYONRfQ9g6BHotw8zrMBmejMD7LM6CA.cache +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HF7sO3rKF1kYr62za8FhiMHUy5xn-NVWZZ9Yc3PhJUY.cache +1 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/I9qCp4PmRBzDH2-zCGniLq23anE0q3TPqxz9KKohfHg.cache +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IOY-FXTXyAAWf-j7hGKCa7alYl3iH-RfAKQW6WNCQlg.cache +1 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Idsm4w6u3zo8zdP5-1h6STs7F57b3lkeiPYSth33WtQ.cache +2 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IjlhS97MX3BYWw2zAgOaKiWjPLJUKSmoQUR5y-V0EIo.cache +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JH_9SiwprSalodbxuZDN1nm0f2sqb8LcXAxwbDaM2SQ.cache +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JRTp5o-2OLdgSf98RfB6ncFrr1PD4prDvoH2qZ6Cq2o.cache +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JlhpehI1KNUzskYuR9aSN8xfHovA4iKoVx6BgwkKuiU.cache +1 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KFlrgefvmmJ6s-sUxrVgQBpf26Zlwj2ZogFfmnNgRwI.cache +1 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KOGWaPIWpqLN-H2rR-73N8VcvpdOw3oSFq_HYivvqMw.cache +1 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KZGKo3_Ux0XnCZFDkMycBhf6j-wzqvH0Ys9XGOs9Qjc.cache +2 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/L1OB9MCMq8NyBSHIl846wLHe7PAca78GXxaeaSIwYOk.cache +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Lch11aVa7EVBPeHjQ0EQWVaMX2r0WzrcXwk6K9lbQ88.cache +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LcvBwyVWxnfbdE97Htj4w4SPhxLkbg813H6mtTPvIbg.cache +1 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M1PC1qa68zhJ1Q7pqHL3-yTu0gMQPirKybzrY2UBVr0.cache +1 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M7Xa9LBFtGAlgUb6Q8mPF2LPXAd--dGDvGVQA6LOL6k.cache +1 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M7gh2NlRVfGTxBrZi-1yaDdvr5y9fDb3D8fiNrzPaL8.cache +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MQxwmzY47y51HIaJJqT4PR8jjfGacV0JzDeMyZ-dhdI.cache +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MSNOSPCypCKz0zgpfKanvRFBvymb6o47iY3hPNo84Dg.cache +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MWrFZxIQI7bA-Ozd3k87Zk5hhVBpCoYoQtdAXxGqFxs.cache +2 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Mb6TBKH27Qpq8cxbnJU9cUtct_O4qLFK0kW-l6gA0xQ.cache +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MtNORCmZF38gLTPApAu-rMwhHyo3urZjJekQWrYXW_U.cache +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Mw2RiLPFUHhY-c2C5q8Qj9TFJkzaxYpJyyvMrLWi3mo.cache +2 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NM_SZTEvLjOBXcUZ8v5Lc_-6rSO9gWrr5BcTib0YK58.cache +1 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NRdeCMKMfp51PHF9NoC3CLtcqt71XCP7xncuLANrQLo.cache +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NauBwmu3NDN391OwfpI6htxUdkYQTsl8jYfiFEzNtgs.cache +2 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Nd1g7HF7QpmY6CJh8VR5uLbiL293rHFeMC9WViilfQ0.cache +1 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/O-t6Ggj54B2qkRhh1UMw6ZTd4rSUbduRM9SgZ0Yufq4.cache +1 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ODM1A0-MTQZVePxRPmlxnwYfsALTxYwTwqC6PZEL3Yc.cache +1 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Oiz-vHY3zrmg7XihrDI8C7noKItrw4j-FojzjwLFtTg.cache +1 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OwWFiU8nu0cyFo-qlZVbwtt4aqDFz2YY0vxAx3SdHgo.cache +1 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P4tpW6voOWJN13IMYPV8BBcLb72dRL_oAnqtvMD6noM.cache +1 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PC2ixqxq-lebKpZkX6uvl7j2JbYofNZu3aZu8bJXazA.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PbjhPnVxp2FymXtEbSopxzJW24ZBb8v8dfP0GF8cs3w.cache +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PhIruj_HREkekapCGv-Ymdy4fnGt_SBsNaJ-wR_Qx54.cache +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QBBPmCl_6JNM_Y5k_ujXJZNA1E589Ur5Luf6AsyQieI.cache +1 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QDAxf5JNyFd7ih2W6fGiB6N8YTs5O9W3U9-lVxNwv1g.cache +1 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QHCbzhO15ATU0NuZmkLpExRZ2wpi9ztEMRjMoz9V0_A.cache +1 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QK3bZcd-qzW-01w1uj3PAmvefd5pYkD9vfU59Yf_VmA.cache +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Qh5AIYThgPQl0gPfMFhAo9KfuSevsNudEJAvyEFt8ew.cache +1 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/REY5IzKwDFZscj7cqC7HI6VXQ3k7ieBpk9yZf3K69cE.cache +1 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RQCa4tO2WXNmk0f_HEYQxgGScUSVxDx2Dbt0aUobbFA.cache +0 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RnNZ-GVb5UaUqjPyexe8APGVCj11NS3ZlsMLjGIsTak.cache +0 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Rno-aq0MC3-qdT_XOMgydcIVTn3yRBlaTjLs_Eahw5E.cache +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RxCAisceBtWwHnx94h1xl_FRFVjk_ALZHbuC_pMcKY0.cache +1 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Sk0BOffT2A-aKDBwfROvAhqgoNwcMhz-aR-7-xWGCqQ.cache +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T8xX--TijEeVuS4vsG8a4_VLKUmMPz8gwspwrT39iIY.cache +2 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TDa2enNs4phk4vgd7U9eQ44EtsH9iQOP4OMXS0_6p6w.cache +1 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TQdtMRNwWOXYBcACj1cNfCnaWdkOOKwH02sIY6AyI4g.cache +0 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TgngM2fqhT7BBipJtIQDv9iGcIkIZ9pdhG7IzWNhDdA.cache +2 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/U-txrV0CTBAuDhviFEz3zd3oxqxQaS7mK8W9mp4Mz2w.cache +2 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/U2IPuMvgFxaOgEbp7r-EGN_MX60Z09FG8IDOc33XnI8.cache +2 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/U3zSnR8VhP_2qPfLexPdXVZ4afUNHX5_5vY68omY5wk.cache +1 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UtRWeM1x-3QwudOxpG1qbMG8l_5Y-vvbBOI7VgtDgzk.cache +2 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/V2FIUY59Yxsb0NO5ix_ilKfhKkPE_vWE96YYPukXNTo.cache +1 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VDQBTPkN-ZyEOinFwsghasae4a5wWFKPQqIMit3SNKk.cache +1 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VE6y9lGSVXFe-LzmlSZTLpG1jPuTY2h56WJB_r1w--U.cache +2 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VPe4_OC_7A1qIRTwC3X1ZYpQa6B9Uuy8HLhWbsFQ3aM.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VT-NSsaMUAEM1SI0lxmreA2QbB_T1hAdWEAQX8y06KQ.cache +2 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VXh2hNNorD83XwRzrNTliFpnTCfQWx6a9pfpoSNJlyY.cache +2 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/W7cEJ0L-lIA_Iu3G6Rdji3Ua-VTp1kI-Pluh2XsZLCM.cache +2 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WCl46w9VIXhadqORL1t7hAn4Ec5Gifv-27kzOlVkE-s.cache +0 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WIMN8AIbUCT--KnKwRLSZru3_NWleSPvgVeknrhhntY.cache +1 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WOikv3V-OnDxVe19Z5QYg928sMi_arKEpDbLF_R-baA.cache +2 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XBuebWu06BPBrs9UmgEwYyKqfzuuJIdcwY_aFtOthPo.cache +2 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XVvEqq8PZcKciXp7XXR5yeIJD1nVSWH0ZDXxzoyImIs.cache +2 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Y3Oo3YLpvKbuAo9kgfwexh8PshAPo4pRDD1uOfFKwVw.cache +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YNxv-6FPDnTHBcleGVvnjo2tt1RbVsFh0flNZc1iUF0.cache +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZvQlqydPyQ3NgGJxrmV8ct_VPWQJhZWC0AOWRHFlrQE.cache +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_8dVD0cWSRaWZvF1hlj4hnt-5m-ef9B4VR0g601NNSM.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_X37QmnQjXiS_ciF3Tv2OPlEYqJ5CONpe1MusaBPlrs.cache +2 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_ud6IsnSMUB7AFlxdL2wfFHt9e27OFaMT8w4Hhi8s3s.cache +2 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_unkFsywRc1IQUNrgmuli0vO85WUBKIwVdjsgg3CttE.cache +1 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aAS-OSOt39twsAhZ99wbPW-VePQx8y73lyDfzesjyOA.cache +0 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aSpwDIPZvLCzgg6eQ6CBYrPcWfZQj1hExnj2bZuRS7o.cache +1 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/b3ykymahF_f-VnArN5YR4ABhdb1nhYlFC14vUDfQyrA.cache +1 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cPmlWj7lvZ6UJv565rT9Yf4p2itgp68b8AUm5FzTZLA.cache +1 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/caBfnmAR3oO1yjmya7RGKBYDp8FbJ98vbE6oujzfmdo.cache +1 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/crsxC4Ikcv-LjlOk6kbrvpFX_kwS6L_ZuCFfmtcqJ3g.cache +1 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dam4xeft-4pxJur4mOVZyEr00BbD3P2fZlJJLDBCW4k.cache +1 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/deW3RdnDWk7eKNfNaPTndnMBS-C5Uejme5QbIwV_DFE.cache +1 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eSSl4nM-pHeKRM49gXvzCz6G_Z3s6sO0NuSasWl_guU.cache +1 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/efpqwE725HhsNQs_pImHXdYWLBRkpKccWFxah3Mgrg8.cache +0 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/exTl_KFHjcHI_yZnLurj8IX2Wf5aU4fF8KuQS_zwRlU.cache +1 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fA2p2ZvO4FoVN_JiRuXgn1QjTTnyXth5bSywCqDC3D4.cache +2 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fvqqXy74j0pkvDiYupbSywtHJb8Zaj2no2awsxmN080.cache +0 -0
  215. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gKweYCa8rcDoyO2NEl9sWZQTaBMPxyS0N3GlCKJH-dk.cache +0 -0
  216. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gkZuJaPRfMY67pzHWGAvS8fY3A_8Wy6lHAt8jZjc-RA.cache +1 -0
  217. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gvLDa5XGwSj3L5oZiQ94ZsnwY5CHS8qX2BliHyhUXGo.cache +1 -0
  218. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hPff0eEhvhdthhYgdHy3lzeNZ6cvhDzQo423PYr9pOo.cache +0 -0
  219. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/i6wcQuMV92ZYfW22B1MudB23VrRPGzXB_F93-__pDTk.cache +1 -0
  220. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iEkuA2D_doNDfSkOynSJxE4hcKEv4n-ubxiW85zYBkM.cache +1 -0
  221. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/io9mD7x5wFh97DDeLqB6z8G306olUZC0ZQ84iHMZAro.cache +1 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jPX_s7R9Y9Tx62x3BSdnJgcc2fuTlxZfIsf5VIy56bQ.cache +1 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/k0Wj-zYEFyY7FYmy76a8cDpFBOZUzOoWtpTt-tpk3cg.cache +1 -0
  224. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/k1-xgyd9Qgfi9ud2kiflYrHmX9WeP8hRdLKnL5WRtzc.cache +1 -0
  225. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/k1VysugytfQfsmfyfuBdbNu-StUicfHR62A7geolXjo.cache +0 -0
  226. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kUCHSLInGsexuLlZ_wAg4HlaEc0PpVNedulsjuAR9xk.cache +0 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lQq-Tpm4qUuP2cNQrF1kJQlcYyp-4DkSbPyywRjB7EU.cache +0 -0
  228. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lSKeX0hb4g_BdOr5mS-N-GPWK-bOfUDKaUxwWPY4Bnc.cache +0 -0
  229. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l_NttTk8glBXTbELzF22gXG3O2as7dW3WK01jezGSi8.cache +1 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/le3lWrLzZBtpidZgBJKf3dYop_ZfPcqZRVBw8zNID_E.cache +1 -0
  231. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lmI9T0rmkVx-nfDZzH3otGBc8XDUulhF6_IBVDwLR6s.cache +1 -0
  232. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lpZxgXXOQ-_cQ5QAkazer4uKIN29hyUzK819qscqy9c.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/meGcwF7aSx0DI6roHb64NuIydoA0sBf1--7fMIvPMIk.cache +0 -0
  234. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mfRvZs-7xZ4l5rmcRPsx_2PrIt8yy8x07EX1svQggmw.cache +1 -0
  235. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ms6DIHGMHdSmp2E3Qag2dM3nEpuraKkYPXOer9VqeiI.cache +1 -0
  236. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nNH1DxPzbNldMpL9AoZLagNwZMzBWDtBijp2oRde3qU.cache +0 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ogryVIUzLqai9RFlk_9f1BHE2jaT5pCkuzPJc6HUi14.cache +0 -0
  238. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oohjElyBvDP5_IEsAmTkOGRy8zPR8t9y0Mt4Lfz7wCc.cache +0 -0
  239. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/p2-oKPIsNm7gfEoPR3fSemp4FHNzmkBlKDKtI-c-RbU.cache +1 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/q45JteXUa8iW35xv164yY8EGpnSDDrPoqUTf9ok5SAM.cache +1 -0
  241. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qxVZ61uwoSYgk5oQil9oJsK_mW-4Iu0OyzLaowE9QY4.cache +1 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rEIAYiWN0KehRrvEQ21kF8WGbaXAUfFveeU_-PA_P80.cache +1 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rokmpmn65Y0E8f0mS7tpUGqZH_-nDqKwXJaJrT2QzXM.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rvK0pxfJz2x0qVixalWGBt6eImJsXUWsyUikhjFwKhg.cache +1 -0
  245. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/s7fQQ43jB6mjRFIz15dLVI3dEYE5iV_2wC-UKE7Eqbs.cache +2 -0
  246. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sDa1E7GLMXpwYf2zCQHKEtZ1J69eLwo4h3-zjmuK6O0.cache +0 -0
  247. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sZ8K3Y4HlxDnWUkSuBm9Y9-kgjgQ5mhoXULi0qwyppI.cache +1 -0
  248. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sw2BwHXpuM7qfRX9jfeVnZE92JprkTSjQVC2fOVpx6k.cache +0 -0
  249. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t3BapNcJdpGFBCR0zx51zIOCZxbgUFoPVSyOLEvzKF8.cache +0 -0
  250. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/taFCQLLdXXCgg5G2PJmmJw7WAy_kOhjGK7xdFqDe4RU.cache +0 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ttACw2Hkiu3aMFohPEpPkoV3CC-NCHbL_9r9IgM9J6w.cache +0 -0
  252. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/unaOvA_qtYauqiV5Bz8XK5Rq37dpo4i60tq1Yrw25YA.cache +0 -0
  253. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vBU_oQb5K0cQryFOvHBC4U1ktEYub1O9QU6Ch6NnbL0.cache +1 -0
  254. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vEdmkyFUgEwIqJIci63zqfK3YYu_WUeZMJ7g69NUZvI.cache +1 -0
  255. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wED6wq_166nc6Y6_JqRlmSW-u8U6OvHA9JOi0cjtAVk.cache +1 -0
  256. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xJxbntYgnCUF_3FJ6ax-Md8iE3aMxqFpUqxSKjKTFzc.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xm4ynjEHIwAlkT7UWVtq5abB7ymHiphYNIwSFCuNA-0.cache +0 -0
  258. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y6y7_CdSNWHZxnMgfTQXFRfIBVBHsnRwQKYbyytK4eA.cache +0 -0
  259. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yQsm0KL_rBq3n-Zpk60cYbU-qKLDl_4VxoBLJEw9JP4.cache +1 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yUZ4CZcVHpXC6prvIuccXFjhVLQnNeAge7fwOyVHkiA.cache +1 -0
  261. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yscXmDNt87n8gaZAGLo4Eggj3ta6wm-d9CGzb8Coj4c.cache +1 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yvg4LuqachT4wmGP6bfmq070O1S-5_jKMGPQ5YcWBbI.cache +1 -0
  263. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/z18bIGxlzN8ON488PL1F3wh_NWsD4egV63lcn_YzZDI.cache +1 -0
  264. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zMheImdnv7QXtIkUnaLRmGRbBT2xLdUXqdkIY7Yovzg.cache +1 -0
  265. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zc02B6j1sJ4uh9IrrDXOJM1tqG243hIUwDGp9Ejketw.cache +1 -0
  266. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/-SrnqbERIC3yCdUkYkP-rPk7YYSdasLVe5vPA-vjtg0.cache +1 -0
  267. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/0-wSSu36D6YrVvOEj8KTvT9NZVstyzMsss71WxcWE60.cache +2 -0
  268. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/15KZXWmY-aFT8cfE5uPBBSNKqH13bGGNJNXxDE0V-WA.cache +0 -0
  269. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/19SfRzGsjgrb5Xcr8FDkrPLF9E73cgBrQ-_dgZx6fLQ.cache +1 -0
  270. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2HeIUhXyK0DMffcAADE4tUx4tIptmnFpNf-xPnhUTsA.cache +1 -0
  271. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2Wv7aG9_L8ihkDwzJutxgUNL1oQbvEm9vFNZCqf0o0Q.cache +1 -0
  272. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/2eCAcwlE8cvpvDwGOR0y3RdwFxG-Uo9FPJ-XveNx9O0.cache +0 -0
  273. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4Ba7mPK3joTmHTnH7ZwaxeAwKpG_ahrqJEycH0L3dKU.cache +0 -0
  274. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/4E9yI-01GR8FocF_RPq7jPb_r6v5OJzBIQ6ndSZY6Ac.cache +0 -0
  275. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5MYrDqzNBlq_JRGZzXuyY00F2Wc43q7gIMDTx6bttz4.cache +2 -0
  276. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5eqR7HQXbdX7FZOCiKXGizHkkiUThEXNzi-mss2oyU8.cache +0 -0
  277. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/5rCRVAkiUUcxvARZIYiC73ML6sRwDjoJUN7qrt5mEf0.cache +1 -0
  278. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/7X9WxqLdRdr5WA434P8ZsB-6b5uRrFpb3yzvnKhVObM.cache +0 -0
  279. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/89kpDv8soAyWeuOO2i-QTOu2O530SFQepqyPkngtTuY.cache +1 -0
  280. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/8cpYQaSX4IrLGgqAE90uP3m7DwF4ttXHLvXh1b1TflA.cache +0 -0
  281. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9RauYKcVeOYCaLLYxxQrIHbZmlOdarost3wpQjnHtvI.cache +0 -0
  282. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/9g6uuOnPA6ZFbDsmFpjGovay8vCHBnegImxETwz9YrQ.cache +0 -0
  283. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/A41MT8xWUFUMbKAP5IBvFZPFxSOy1FSR52U0Ktn9iEk.cache +2 -0
  284. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/A_Mgj2T1HUV28jFN8rT-rLYGJ13jDCyg0svfAlyKEL4.cache +1 -0
  285. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/BAR5AVm4w0xcnQnlvdPY4i69kq_v6TMQNdSFbHVO7XA.cache +0 -0
  286. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/BrQRHDuvOBGooyPjkGrxctLYGOrn4uT7PhMJButdA8Y.cache +0 -0
  287. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/C0ko33oWWmWdbhO1CNTtbwZOPFCKmKzFjbGdDkiv4FU.cache +0 -0
  288. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CkaXMc3KAzjZwVE5P18M2IZuY0mr-S9xOy_JLF1O34A.cache +1 -0
  289. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/CvFDw1yH4H0djF_P-YoONcq5hRuAzx9pt3EoTs8TPSc.cache +0 -0
  290. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/DtMSdtj9n2ytUFD3eJvg8HlYO7qtOAS6W8z3GofBjd4.cache +1 -0
  291. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ExLV9IbvCa6biJfZc9kz8aUGf1omcv9BT-Iv6ENlEGY.cache +1 -0
  292. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ExxhUhA_vbDgLz2_zm67qEg9MVnXrMK5lHlXNcosJSE.cache +1 -0
  293. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Fzye4VhJ6oTXduFYFOZxRMjeUwRT6k3ITuqdgnUlK_s.cache +0 -0
  294. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Hm48qbwMCX51daTUhsKKI2IcZkyUDS_5Pmns086ZT1Q.cache +1 -0
  295. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/IlEZID7P7ZVuy7SK_GL5_Vy8EjZsJ7t74fPKxJuDutE.cache +1 -0
  296. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/JCbwFtZjWws4K6hFGdKhaCexIEvC_lrd39Z5meCKA_4.cache +0 -0
  297. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KFlrgefvmmJ6s-sUxrVgQBpf26Zlwj2ZogFfmnNgRwI.cache +1 -0
  298. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/KZGKo3_Ux0XnCZFDkMycBhf6j-wzqvH0Ys9XGOs9Qjc.cache +2 -0
  299. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Kfo91zwBZGXKtgASjSHe5avxDfcqZLqIfHlO72uPr3w.cache +0 -0
  300. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/LnUMPDCEx2BPZ8zzIkuHYj9iMha9lAhsPqhj_kv_jf8.cache +1 -0
  301. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/M1PC1qa68zhJ1Q7pqHL3-yTu0gMQPirKybzrY2UBVr0.cache +1 -0
  302. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/M7Xa9LBFtGAlgUb6Q8mPF2LPXAd--dGDvGVQA6LOL6k.cache +1 -0
  303. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/MRYSMH-zr35cGm9bC22ILGGASlskif4O8H4Gz_5lyzE.cache +0 -0
  304. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Mw2RiLPFUHhY-c2C5q8Qj9TFJkzaxYpJyyvMrLWi3mo.cache +2 -0
  305. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NauBwmu3NDN391OwfpI6htxUdkYQTsl8jYfiFEzNtgs.cache +0 -0
  306. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/NlIm1jpBl1-zaQ8sM07bAjuXYLGZ2S4fvhBjV-XXkz8.cache +0 -0
  307. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ODM1A0-MTQZVePxRPmlxnwYfsALTxYwTwqC6PZEL3Yc.cache +1 -0
  308. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/Q-6S0HsMGmjZNY5_x9vDBghdsqjDW3aGZYaiBW5m4Bs.cache +0 -0
  309. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QBBPmCl_6JNM_Y5k_ujXJZNA1E589Ur5Luf6AsyQieI.cache +1 -0
  310. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QHCbzhO15ATU0NuZmkLpExRZ2wpi9ztEMRjMoz9V0_A.cache +1 -0
  311. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/QK3bZcd-qzW-01w1uj3PAmvefd5pYkD9vfU59Yf_VmA.cache +2 -0
  312. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/R1scqanKcVlkycl6Ouf-cwXlvjbLhRhGPWjUnMa-vp8.cache +0 -0
  313. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/R5KbPrgxlHuiTZST-jImOtLLQ8gbmpwq0zyoWDcTS6Q.cache +1 -0
  314. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/R94VaxbcphivWsNPXAgGs5TU8bWoqQbMII8hrluLWms.cache +2 -0
  315. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VE6y9lGSVXFe-LzmlSZTLpG1jPuTY2h56WJB_r1w--U.cache +2 -0
  316. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VT-NSsaMUAEM1SI0lxmreA2QbB_T1hAdWEAQX8y06KQ.cache +2 -0
  317. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VXh2hNNorD83XwRzrNTliFpnTCfQWx6a9pfpoSNJlyY.cache +2 -0
  318. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/VsTsAUxhiLZLSntLPFPbDvJdIYb8o-dPZqhkr99XSYk.cache +0 -0
  319. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/W7cEJ0L-lIA_Iu3G6Rdji3Ua-VTp1kI-Pluh2XsZLCM.cache +2 -0
  320. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XGaYTcjNgGZSAJGgrLPQyRdz3qdvyNEF_8HfEAwmzPE.cache +1 -0
  321. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/XVvEqq8PZcKciXp7XXR5yeIJD1nVSWH0ZDXxzoyImIs.cache +2 -0
  322. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/YU9fg437IkM6XV3YEBoys93u9NOibdIVqrrUaacwyw4.cache +0 -0
  323. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/_unkFsywRc1IQUNrgmuli0vO85WUBKIwVdjsgg3CttE.cache +1 -0
  324. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/arfkUa3-jw-eyzFARfHPs1UYXp9wmKNBkpRjv37CRCk.cache +1 -0
  325. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/cJZIaZpFuXo9qi32ptFX8Ss5L5z2Axl5le0zXSuI7mk.cache +1 -0
  326. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/deW3RdnDWk7eKNfNaPTndnMBS-C5Uejme5QbIwV_DFE.cache +1 -0
  327. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/eKzSAPFYMTJJtBbGDkJei1j7L5vNaiON8INcPFVdtgs.cache +1 -0
  328. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/eYJHHT__uUteoXFycfhwbI379K3REk9_GIgo6d02V3s.cache +2 -0
  329. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/eZtGavcNvUqfmdk2R0dC7AU3Vc1tGebNxzUAKBxwlHI.cache +0 -0
  330. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/fA2p2ZvO4FoVN_JiRuXgn1QjTTnyXth5bSywCqDC3D4.cache +2 -0
  331. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/h6F9AxKDVkyCZGxugKy7naZ0mSN4zCKqZGyhYvkqvQU.cache +1 -0
  332. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hPff0eEhvhdthhYgdHy3lzeNZ6cvhDzQo423PYr9pOo.cache +0 -0
  333. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hWCg1mj3atfnDkt5IvVEvThxTFWzFGtCQ_-Li5lRa2o.cache +0 -0
  334. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/haN4fq20PpOYrqUohWsod0JUPP6Os71uWf5YvzgFuGk.cache +1 -0
  335. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/hn-w50jMEFbicW2Dp1j8GpI5KROTaVD3-Gk5RO7RQ5U.cache +1 -0
  336. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jPX_s7R9Y9Tx62x3BSdnJgcc2fuTlxZfIsf5VIy56bQ.cache +1 -0
  337. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/jjHhKuJevYo-yUT02KoCUaJxJXjLUGTVmTsQcCu-tnY.cache +1 -0
  338. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/kDg9RVyEG2VdVnmrBA-4FBymSjozt3wmfJHEY9CtNuE.cache +0 -0
  339. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/lmI9T0rmkVx-nfDZzH3otGBc8XDUulhF6_IBVDwLR6s.cache +1 -0
  340. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/mfRvZs-7xZ4l5rmcRPsx_2PrIt8yy8x07EX1svQggmw.cache +1 -0
  341. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/miVimTZst4AsQUnGPqQ4U_HhGQ3neDeqOc8mTlPMOSo.cache +1 -0
  342. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nG4rxs0eE1H1baY8Du2oF_6fHSdSkIA8WGbIMWMItEU.cache +0 -0
  343. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nY_Jhgy8H2zwL-Lxrq3qvmsk0YxD4lcT4hpAgokGk7M.cache +0 -0
  344. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/nnOpP4k0oge6JPLffQyVmZo96WTW7hvAHXBKJSY3KNs.cache +1 -0
  345. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/o5ED8HllG3WPFxZ6UstTTnbEYPEvLp1jSyLgvv-tX2A.cache +0 -0
  346. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/oDOPnEj390MR1YfEG5hRpFKsbG0q4pZw9UxFrWbtJC0.cache +1 -0
  347. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/onaBeYoPVo3S1NObk2-D9McYV83G--hm2Z84ffBGsAk.cache +1 -0
  348. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qahjSYirnViO_FGaTIlSRf68AaJ5EKPiicR8jqOsTnA.cache +2 -0
  349. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/qukp9m9UACC7bt1fblHjnUVzjRuEC5s5lME7DL7haus.cache +0 -0
  350. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/rokmpmn65Y0E8f0mS7tpUGqZH_-nDqKwXJaJrT2QzXM.cache +0 -0
  351. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/sDa1E7GLMXpwYf2zCQHKEtZ1J69eLwo4h3-zjmuK6O0.cache +0 -0
  352. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/sZ8K3Y4HlxDnWUkSuBm9Y9-kgjgQ5mhoXULi0qwyppI.cache +1 -0
  353. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/sn1vZfiFbyTKg-DbUM9t6sLWO49lvFCZwPzvxm8St_A.cache +0 -0
  354. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/t3BapNcJdpGFBCR0zx51zIOCZxbgUFoPVSyOLEvzKF8.cache +2 -0
  355. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/ufxRCcZC9kt2qFaJ8uLYuvX1jgB7y-YDJPTvHNGuwm4.cache +1 -0
  356. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/us2Iwpcxj7LfGKRzLKyxfupmLdKUWAG1mcl9Ulwm7A8.cache +0 -0
  357. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/v7lRu7Js_JTOZwjKgRbeBiSu34ulax99MVSrCA6SOHU.cache +0 -0
  358. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vYnhEbN8-BdUD2XzMVhMqScK6TVOwS4eT0kghnhH_ZQ.cache +1 -0
  359. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/vrIw1vVDqnPzKkn-IXRGcJN8dvx6T5-9E1C10JUEH2k.cache +1 -0
  360. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wEcmLRb1qcqdz7D6e56ZiMOLC0X-ggwLg7fl9mnETuc.cache +0 -0
  361. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/wSzzwAXupe0710Y82LeeVjn_1YUz8F000DY4S3CmJJ4.cache +0 -0
  362. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/x2yFC1uGoElRMUUlSOTjQMwSl8GLJlTh0wcG46KzQe0.cache +0 -0
  363. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/x4rxavGlxT8kesLmEtzUCiDIMvukTK9J1e-ZBO-nqUI.cache +2 -0
  364. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/xdiJDFIdWaEcnza9i90UZEeHDeQiz7ywIUtqgmZNtI4.cache +1 -0
  365. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yAAuhzCCQwkAAR3dnO84iMkr-0se8_Afon-ii9rMuVo.cache +1 -0
  366. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yB7SzMJ_6r-Nl4tA0jmdlA_uD6xoDb64BJ90T-WdvOY.cache +0 -0
  367. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yEsz8DwMrWdZDKbJlq_O2KhEy2ZQ2cIvCx_gJiCk19E.cache +1 -0
  368. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yfGyup3QG8xweHxeY1UPc2tpAW3R1aPfVaOCN9qukvI.cache +1 -0
  369. data/test/dummy/tmp/cache/assets/test/sprockets/v3.0/yhAoTeN7DlVlFdOvIrxUuYqaIBMGctZfcKloHqiYm04.cache +1 -0
  370. data/test/fixtures/help_engine/help_pages.yml +20 -0
  371. data/test/fixtures/users.yml +5 -0
  372. data/test/help_engine_test.rb +7 -0
  373. data/test/integration/navigation_test.rb +10 -0
  374. data/test/models/help_engine/help_page_test.rb +21 -0
  375. data/test/test_helper.rb +33 -0
  376. metadata +852 -0
@@ -0,0 +1,79 @@
1
+ Rails.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
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.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
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -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,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
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
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -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] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,7 @@
1
+ Rails.application.routes.draw do
2
+
3
+ root 'home#index'
4
+
5
+ mount HelpEngine::Engine => "help"
6
+
7
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: e3d9ffba620366d7aa558f7d0d09ae22305e7054ad6a474a820b9d53f39545156f2d0845bab1b309f13a95eec381d15e02d276541c8d20164545a9003a8d772f
15
+
16
+ test:
17
+ secret_key_base: 92dbac4844c8f60967e2ebcc2526b93cc9ea62a22fa4aeeca6cc40a1a074ddd746b8e8fe41a9ac3ab3e943807e46abef7b40fc36ef651914a101874ce1e956c2
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,9 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :email
5
+
6
+ t.timestamps null: false
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,35 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150729103806) do
15
+
16
+ create_table "help_engine_help_pages", force: :cascade do |t|
17
+ t.string "name"
18
+ t.string "slug"
19
+ t.text "content"
20
+ t.datetime "created_at", null: false
21
+ t.datetime "updated_at", null: false
22
+ t.integer "author_id"
23
+ t.string "author_type"
24
+ end
25
+
26
+ add_index "help_engine_help_pages", ["author_type", "author_id"], name: "index_help_engine_help_pages_on_author_type_and_author_id"
27
+ add_index "help_engine_help_pages", ["slug"], name: "index_help_engine_help_pages_on_slug"
28
+
29
+ create_table "users", force: :cascade do |t|
30
+ t.string "email"
31
+ t.datetime "created_at", null: false
32
+ t.datetime "updated_at", null: false
33
+ end
34
+
35
+ end
@@ -0,0 +1,2577 @@
1
+  (147.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (184.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5
+ Migrating to CreateHelpEngineHelpPages (20150728142457)
6
+  (0.1ms) begin transaction
7
+  (2.5ms) CREATE TABLE "help_engine_help_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
8
+ SQL (13.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150728142457"]]
9
+  (206.7ms) commit transaction
10
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
11
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+
14
+
15
+ Started GET "/" for 127.0.0.1 at 2015-07-28 15:58:44 +0100
16
+ Processing by Rails::WelcomeController#index as HTML
17
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/railties-4.2.3/lib/rails/templates/rails/welcome/index.html.erb (102.7ms)
18
+ Completed 200 OK in 133ms (Views: 132.9ms | ActiveRecord: 0.0ms)
19
+
20
+
21
+ Started GET "/help_engine/" for 127.0.0.1 at 2015-07-28 15:59:00 +0100
22
+
23
+ ActionController::RoutingError (No route matches [GET] "/help_engine"):
24
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
25
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
26
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
27
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
28
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
29
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
30
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
31
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
32
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
33
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
34
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
35
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
36
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
37
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
38
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
39
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
40
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
41
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
42
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
43
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
44
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
45
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
46
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
47
+
48
+
49
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.8ms)
50
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (9.2ms)
51
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (4.2ms)
52
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (102.4ms)
53
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (35.9ms)
54
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (351.8ms)
55
+
56
+
57
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 15:59:10 +0100
58
+ Processing by HelpEngine::HelpPagesController#index as HTML
59
+ HelpEngine::HelpPage Load (71.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
60
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (98.5ms)
61
+ Completed 200 OK in 1114ms (Views: 855.9ms | ActiveRecord: 76.2ms)
62
+
63
+
64
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 15:59:12 +0100
65
+
66
+
67
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 15:59:12 +0100
68
+
69
+
70
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 15:59:12 +0100
71
+
72
+
73
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 15:59:12 +0100
74
+
75
+
76
+ Started GET "/help_engine/help_pages/new" for 127.0.0.1 at 2015-07-28 15:59:33 +0100
77
+ Processing by HelpEngine::HelpPagesController#new as HTML
78
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (196.0ms)
79
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (198.8ms)
80
+ Completed 200 OK in 297ms (Views: 276.0ms | ActiveRecord: 0.7ms)
81
+
82
+
83
+ Started POST "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 15:59:45 +0100
84
+ Processing by HelpEngine::HelpPagesController#create as HTML
85
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"cuTHTruZMrjYHfns+jsZj3EgvOV4y3osu2tg3N+AiYCWggknAlbhk1OMIiWTU56743VD+zamb84GZsl2lAIuzA==", "help_page"=>{"name"=>"Foo", "slug"=>"foo", "content"=>"Foo Bar"}, "commit"=>"Create Help page"}
86
+  (0.3ms) begin transaction
87
+ SQL (19.2ms) INSERT INTO "help_engine_help_pages" ("name", "slug", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Foo"], ["slug", "foo"], ["content", "Foo Bar"], ["created_at", "2015-07-28 14:59:45.532640"], ["updated_at", "2015-07-28 14:59:45.532640"]]
88
+  (96.7ms) commit transaction
89
+ Redirected to http://localhost:3000/help_engine/help_pages/1
90
+ Completed 302 Found in 297ms (ActiveRecord: 116.1ms)
91
+
92
+
93
+ Started GET "/help_engine/help_pages/1" for 127.0.0.1 at 2015-07-28 15:59:45 +0100
94
+ Processing by HelpEngine::HelpPagesController#show as HTML
95
+ Parameters: {"id"=>"1"}
96
+ HelpEngine::HelpPage Load (5.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? LIMIT 1 [["id", 1]]
97
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.7ms)
98
+ Completed 200 OK in 123ms (Views: 80.1ms | ActiveRecord: 5.3ms)
99
+
100
+
101
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 15:59:49 +0100
102
+ Processing by HelpEngine::HelpPagesController#index as HTML
103
+ HelpEngine::HelpPage Load (9.8ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
104
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (12.4ms)
105
+ Completed 200 OK in 90ms (Views: 80.1ms | ActiveRecord: 9.8ms)
106
+
107
+
108
+ Started GET "/help_engine/help_pages/1" for 127.0.0.1 at 2015-07-28 15:59:52 +0100
109
+ Processing by HelpEngine::HelpPagesController#show as HTML
110
+ Parameters: {"id"=>"1"}
111
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? LIMIT 1 [["id", 1]]
112
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (0.8ms)
113
+ Completed 200 OK in 81ms (Views: 76.9ms | ActiveRecord: 0.2ms)
114
+
115
+
116
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 15:59:57 +0100
117
+ Processing by HelpEngine::HelpPagesController#index as HTML
118
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
119
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (10.3ms)
120
+ Completed 200 OK in 238ms (Views: 237.1ms | ActiveRecord: 0.4ms)
121
+
122
+
123
+ Started GET "/help_engine/help_pages/1" for 127.0.0.1 at 2015-07-28 16:00:01 +0100
124
+ Processing by HelpEngine::HelpPagesController#show as HTML
125
+ Parameters: {"id"=>"1"}
126
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? LIMIT 1 [["id", 1]]
127
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (0.9ms)
128
+ Completed 200 OK in 77ms (Views: 76.0ms | ActiveRecord: 0.2ms)
129
+
130
+
131
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:00:03 +0100
132
+ Processing by HelpEngine::HelpPagesController#index as HTML
133
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
134
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (7.4ms)
135
+ Completed 200 OK in 81ms (Views: 80.5ms | ActiveRecord: 0.2ms)
136
+
137
+
138
+ Started GET "/help_engine/help_pages/1/edit" for 127.0.0.1 at 2015-07-28 16:00:06 +0100
139
+ Processing by HelpEngine::HelpPagesController#edit as HTML
140
+ Parameters: {"id"=>"1"}
141
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? LIMIT 1 [["id", 1]]
142
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (11.4ms)
143
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (31.7ms)
144
+ Completed 200 OK in 108ms (Views: 98.8ms | ActiveRecord: 0.2ms)
145
+
146
+
147
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:00:09 +0100
148
+ Processing by HelpEngine::HelpPagesController#index as HTML
149
+ HelpEngine::HelpPage Load (6.8ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
150
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (10.7ms)
151
+ Completed 200 OK in 75ms (Views: 68.0ms | ActiveRecord: 6.8ms)
152
+
153
+
154
+ Started GET "/help_engine/help_pages/1" for 127.0.0.1 at 2015-07-28 16:00:12 +0100
155
+ Processing by HelpEngine::HelpPagesController#show as HTML
156
+ Parameters: {"id"=>"1"}
157
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? LIMIT 1 [["id", 1]]
158
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (0.8ms)
159
+ Completed 200 OK in 70ms (Views: 65.7ms | ActiveRecord: 0.3ms)
160
+
161
+
162
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:00:15 +0100
163
+ Processing by HelpEngine::HelpPagesController#index as HTML
164
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
165
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (10.6ms)
166
+ Completed 200 OK in 82ms (Views: 80.9ms | ActiveRecord: 0.3ms)
167
+ SQL (148.1ms) DELETE FROM "help_engine_help_pages"
168
+
169
+
170
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:07:55 +0100
171
+ Processing by HelpEngine::HelpPagesController#index as HTML
172
+ HelpEngine::HelpPage Load (11.9ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
173
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (161.1ms)
174
+ Completed 200 OK in 1311ms (Views: 1151.2ms | ActiveRecord: 12.4ms)
175
+
176
+
177
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 16:07:58 +0100
178
+
179
+
180
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:07:58 +0100
181
+
182
+
183
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:07:58 +0100
184
+
185
+
186
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:07:58 +0100
187
+
188
+
189
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:10:22 +0100
190
+ Processing by HelpEngine::HelpPagesController#index as HTML
191
+ Completed 500 Internal Server Error in 10ms (ActiveRecord: 0.0ms)
192
+
193
+ NameError (uninitialized constant HelpEngine::HelpPage::FriendlyId):
194
+ /home/rob/web/help_engine/app/models/help_engine/help_page.rb:5:in `<class:HelpPage>'
195
+ /home/rob/web/help_engine/app/models/help_engine/help_page.rb:3:in `<module:HelpEngine>'
196
+ /home/rob/web/help_engine/app/models/help_engine/help_page.rb:2:in `<top (required)>'
197
+ /home/rob/web/help_engine/app/controllers/help_engine/help_pages_controller.rb:9:in `index'
198
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
199
+ actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
200
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
201
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
202
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
203
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
204
+ activesupport (4.2.3) lib/active_support/callbacks.rb:553:in `block (2 levels) in compile'
205
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
206
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
207
+ activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
208
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
209
+ actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
210
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
211
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
212
+ activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
213
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
214
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
215
+ actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
216
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
217
+ actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
218
+ actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
219
+ actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
220
+ actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
221
+ actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
222
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
223
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
224
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
225
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
226
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
227
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
228
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
229
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
230
+ railties (4.2.3) lib/rails/railtie.rb:194:in `public_send'
231
+ railties (4.2.3) lib/rails/railtie.rb:194:in `method_missing'
232
+ actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:51:in `serve'
233
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
234
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
235
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
236
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
237
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
238
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
239
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
240
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
241
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
242
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
243
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
244
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
245
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
246
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
247
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
248
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
249
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
250
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
251
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
252
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
253
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
254
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
255
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
256
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
257
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
258
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
259
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
260
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
261
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
262
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
263
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
264
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
265
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
266
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
267
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
268
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
269
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
270
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
271
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
272
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
273
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
274
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
275
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
276
+
277
+
278
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.5ms)
279
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.5ms)
280
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
281
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (90.2ms)
282
+
283
+
284
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:10:44 +0100
285
+ Processing by HelpEngine::HelpPagesController#index as HTML
286
+ Completed 500 Internal Server Error in 142ms (ActiveRecord: 0.0ms)
287
+
288
+ NameError (uninitialized constant HelpEngine::HelpPage::FriendlyId):
289
+ /home/rob/web/help_engine/app/models/help_engine/help_page.rb:5:in `<class:HelpPage>'
290
+ /home/rob/web/help_engine/app/models/help_engine/help_page.rb:3:in `<module:HelpEngine>'
291
+ /home/rob/web/help_engine/app/models/help_engine/help_page.rb:2:in `<top (required)>'
292
+ /home/rob/web/help_engine/app/controllers/help_engine/help_pages_controller.rb:9:in `index'
293
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
294
+ actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
295
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
296
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
297
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
298
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
299
+ activesupport (4.2.3) lib/active_support/callbacks.rb:553:in `block (2 levels) in compile'
300
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
301
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
302
+ activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
303
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
304
+ actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
305
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
306
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
307
+ activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
308
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
309
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
310
+ actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
311
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
312
+ actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
313
+ actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
314
+ actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
315
+ actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
316
+ actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
317
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
318
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
319
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
320
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
321
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
322
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
323
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
324
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
325
+ railties (4.2.3) lib/rails/railtie.rb:194:in `public_send'
326
+ railties (4.2.3) lib/rails/railtie.rb:194:in `method_missing'
327
+ actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:51:in `serve'
328
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
329
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
330
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
331
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
332
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
333
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
334
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
335
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
336
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
337
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
338
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
339
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
340
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
341
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
342
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
343
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
344
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
345
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
346
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
347
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
348
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
349
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
350
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
351
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
352
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
353
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
354
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
355
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
356
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
357
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
358
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
359
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
360
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
361
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
362
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
363
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
364
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
365
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
366
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
367
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
368
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
369
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
370
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
371
+
372
+
373
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.5ms)
374
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.1ms)
375
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (129.6ms)
376
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (186.6ms)
377
+
378
+
379
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:11:05 +0100
380
+ Processing by HelpEngine::HelpPagesController#index as HTML
381
+ HelpEngine::HelpPage Load (15.1ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
382
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (102.2ms)
383
+ Completed 200 OK in 951ms (Views: 786.5ms | ActiveRecord: 15.4ms)
384
+
385
+
386
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 16:11:06 +0100
387
+
388
+
389
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:11:06 +0100
390
+
391
+
392
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:11:06 +0100
393
+
394
+
395
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:11:06 +0100
396
+
397
+
398
+ Started GET "/help_engine/help_pages/new" for 127.0.0.1 at 2015-07-28 16:12:20 +0100
399
+ Processing by HelpEngine::HelpPagesController#new as HTML
400
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (349.4ms)
401
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (440.5ms)
402
+ Completed 200 OK in 577ms (Views: 535.9ms | ActiveRecord: 0.8ms)
403
+
404
+
405
+ Started POST "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:12:32 +0100
406
+ Processing by HelpEngine::HelpPagesController#create as HTML
407
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BJTnvJNWJWp2R+G95zs28j1mgJbgp/KtQrl6qEBmGabg8inVKpn2Qf3WOnSOU7HGrzN/iK7K50//tNMCC+S+6g==", "help_page"=>{"name"=>"Foo", "slug"=>"foo", "content"=>"Foo Bar"}, "commit"=>"Create Help page"}
408
+  (0.2ms) begin transaction
409
+ SQL (10.0ms) INSERT INTO "help_engine_help_pages" ("name", "slug", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Foo"], ["slug", "foo"], ["content", "Foo Bar"], ["created_at", "2015-07-28 15:12:32.222516"], ["updated_at", "2015-07-28 15:12:32.222516"]]
410
+  (118.6ms) commit transaction
411
+ Redirected to http://localhost:3000/help_engine/help_pages/foo
412
+ Completed 302 Found in 297ms (ActiveRecord: 128.7ms)
413
+
414
+
415
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:12:32 +0100
416
+ Processing by HelpEngine::HelpPagesController#show as HTML
417
+ Parameters: {"id"=>"foo"}
418
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? LIMIT 1 [["id", 0]]
419
+ Completed 404 Not Found in 38ms (ActiveRecord: 0.4ms)
420
+
421
+ ActiveRecord::RecordNotFound (Couldn't find HelpEngine::HelpPage with 'id'=foo):
422
+ activerecord (4.2.3) lib/active_record/core.rb:155:in `find'
423
+ /home/rob/web/help_engine/app/controllers/help_engine/help_pages_controller.rb:54:in `set_help_page'
424
+ activesupport (4.2.3) lib/active_support/callbacks.rb:430:in `block in make_lambda'
425
+ activesupport (4.2.3) lib/active_support/callbacks.rb:143:in `call'
426
+ activesupport (4.2.3) lib/active_support/callbacks.rb:143:in `block in halting_and_conditional'
427
+ activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
428
+ activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `block in call'
429
+ activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `each'
430
+ activesupport (4.2.3) lib/active_support/callbacks.rb:502:in `call'
431
+ activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
432
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
433
+ actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
434
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
435
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
436
+ activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
437
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
438
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
439
+ actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
440
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
441
+ actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
442
+ actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
443
+ actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
444
+ actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
445
+ actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
446
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
447
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
448
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
449
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
450
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
451
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
452
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
453
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
454
+ railties (4.2.3) lib/rails/railtie.rb:194:in `public_send'
455
+ railties (4.2.3) lib/rails/railtie.rb:194:in `method_missing'
456
+ actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:51:in `serve'
457
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
458
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
459
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
460
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
461
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
462
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
463
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
464
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
465
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
466
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
467
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
468
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
469
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
470
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
471
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
472
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
473
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
474
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
475
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
476
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
477
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
478
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
479
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
480
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
481
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
482
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
483
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
484
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
485
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
486
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
487
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
488
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
489
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
490
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
491
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
492
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
493
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
494
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
495
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
496
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
497
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
498
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
499
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
500
+
501
+
502
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.0ms)
503
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms)
504
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.3ms)
505
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (68.2ms)
506
+
507
+
508
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:14:04 +0100
509
+ Processing by HelpEngine::HelpPagesController#show as HTML
510
+ Parameters: {"id"=>"foo"}
511
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
512
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (10.6ms)
513
+ Completed 200 OK in 164ms (Views: 100.5ms | ActiveRecord: 2.2ms)
514
+
515
+
516
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 16:14:04 +0100
517
+
518
+
519
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:14:05 +0100
520
+
521
+
522
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:14:05 +0100
523
+
524
+
525
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:14:05 +0100
526
+
527
+
528
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:16:20 +0100
529
+ Processing by HelpEngine::HelpPagesController#index as HTML
530
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
531
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (139.3ms)
532
+ Completed 200 OK in 250ms (Views: 249.2ms | ActiveRecord: 0.5ms)
533
+
534
+
535
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:17:00 +0100
536
+ Processing by HelpEngine::HelpPagesController#show as HTML
537
+ Parameters: {"id"=>"foo"}
538
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
539
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (13.6ms)
540
+ Completed 200 OK in 142ms (Views: 120.0ms | ActiveRecord: 0.2ms)
541
+
542
+
543
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:17:04 +0100
544
+ Processing by HelpEngine::HelpPagesController#index as HTML
545
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
546
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (5.9ms)
547
+ Completed 200 OK in 140ms (Views: 138.9ms | ActiveRecord: 0.7ms)
548
+
549
+
550
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:19:24 +0100
551
+ Processing by HelpEngine::HelpPagesController#index as HTML
552
+ HelpEngine::HelpPage Load (0.6ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
553
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (20.5ms)
554
+ Completed 200 OK in 135ms (Views: 133.8ms | ActiveRecord: 0.6ms)
555
+
556
+
557
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 16:19:24 +0100
558
+
559
+
560
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:19:25 +0100
561
+
562
+
563
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:19:25 +0100
564
+
565
+
566
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:19:25 +0100
567
+
568
+
569
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:19:29 +0100
570
+ Processing by HelpEngine::HelpPagesController#show as HTML
571
+ Parameters: {"id"=>"foo"}
572
+ HelpEngine::HelpPage Load (3.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
573
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (15.5ms)
574
+ Completed 200 OK in 87ms (Views: 77.2ms | ActiveRecord: 3.4ms)
575
+
576
+
577
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:21:55 +0100
578
+ Processing by HelpEngine::HelpPagesController#show as HTML
579
+ Parameters: {"id"=>"foo"}
580
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
581
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (12.4ms)
582
+ Completed 200 OK in 112ms (Views: 100.2ms | ActiveRecord: 0.3ms)
583
+
584
+
585
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 16:21:55 +0100
586
+
587
+
588
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:21:55 +0100
589
+
590
+
591
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:21:55 +0100
592
+
593
+
594
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:21:55 +0100
595
+
596
+
597
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:22:27 +0100
598
+ Processing by HelpEngine::HelpPagesController#show as HTML
599
+ Parameters: {"id"=>"foo"}
600
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
601
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (8.7ms)
602
+ Completed 200 OK in 137ms (Views: 127.6ms | ActiveRecord: 0.4ms)
603
+
604
+
605
+ Started GET "/assets/help_engine/help_pages.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-28 16:22:27 +0100
606
+
607
+
608
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:22:27 +0100
609
+
610
+
611
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:22:27 +0100
612
+
613
+
614
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:22:27 +0100
615
+
616
+
617
+ Started GET "/help_engine/help_pages/foo/edit" for 127.0.0.1 at 2015-07-28 16:22:31 +0100
618
+ Processing by HelpEngine::HelpPagesController#edit as HTML
619
+ Parameters: {"id"=>"foo"}
620
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
621
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (17.4ms)
622
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (28.5ms)
623
+ Completed 200 OK in 93ms (Views: 88.7ms | ActiveRecord: 0.2ms)
624
+
625
+
626
+ Started PATCH "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:22:49 +0100
627
+ Processing by HelpEngine::HelpPagesController#update as HTML
628
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"Y1fhNB13z0aGuAXZI8LH0UfehG7sy1WMrE3/Ls2rfEOHMS9dpLgcbQ0p3hBKqkDl1Yt7cKKmQG4RQFaEhinbDw==", "help_page"=>{"name"=>"Foo", "slug"=>"foo", "content"=>"Foo Bar\r\n=======\r\nThis is some content"}, "commit"=>"Update Help page", "id"=>"foo"}
629
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
630
+  (0.1ms) begin transaction
631
+ SQL (8.1ms) UPDATE "help_engine_help_pages" SET "content" = ?, "updated_at" = ? WHERE "help_engine_help_pages"."id" = ? [["content", "Foo Bar\r\n=======\r\nThis is some content"], ["updated_at", "2015-07-28 15:22:49.142618"], ["id", 2]]
632
+  (157.1ms) commit transaction
633
+ Redirected to http://localhost:3000/help_engine/help_pages/foo
634
+ Completed 302 Found in 197ms (ActiveRecord: 165.6ms)
635
+
636
+
637
+ Started GET "/help_engine/help_pages/foo" for 127.0.0.1 at 2015-07-28 16:22:49 +0100
638
+ Processing by HelpEngine::HelpPagesController#show as HTML
639
+ Parameters: {"id"=>"foo"}
640
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
641
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.1ms)
642
+ Completed 200 OK in 77ms (Views: 65.8ms | ActiveRecord: 0.4ms)
643
+
644
+
645
+ Started GET "/help_engine/help_pages/foo/edit" for 127.0.0.1 at 2015-07-28 16:24:46 +0100
646
+ Processing by HelpEngine::HelpPagesController#edit as HTML
647
+ Parameters: {"id"=>"foo"}
648
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
649
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (27.5ms)
650
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (30.8ms)
651
+ Completed 200 OK in 130ms (Views: 123.9ms | ActiveRecord: 0.3ms)
652
+
653
+
654
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:24:51 +0100
655
+ Processing by HelpEngine::HelpPagesController#index as HTML
656
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
657
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (8.1ms)
658
+ Completed 200 OK in 82ms (Views: 77.8ms | ActiveRecord: 0.3ms)
659
+
660
+
661
+ Started GET "/help_engine/help_pages/new" for 127.0.0.1 at 2015-07-28 16:24:58 +0100
662
+ Processing by HelpEngine::HelpPagesController#new as HTML
663
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (10.0ms)
664
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (20.3ms)
665
+ Completed 200 OK in 92ms (Views: 92.0ms | ActiveRecord: 0.0ms)
666
+
667
+
668
+ Started POST "/help_engine/help_pages" for 127.0.0.1 at 2015-07-28 16:25:17 +0100
669
+ Processing by HelpEngine::HelpPagesController#create as HTML
670
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"dIFc4QqKYg7HVD/OcugDbPOBfL3TDbGqxRuWNVILKteQ55KIs0WxJUzF5AcbgIRYYdSDo51gpEh4Fj+fGYmNmw==", "help_page"=>{"name"=>"Bar", "content"=>"This\r\n====\r\n\r\nIs the end of the world"}, "commit"=>"Create Help page"}
671
+  (0.2ms) begin transaction
672
+ HelpEngine::HelpPage Exists (0.3ms) SELECT 1 AS one FROM "help_engine_help_pages" WHERE ("help_engine_help_pages"."id" IS NOT NULL) AND "help_engine_help_pages"."slug" = ? LIMIT 1 [["slug", "bar"]]
673
+ SQL (3.0ms) INSERT INTO "help_engine_help_pages" ("name", "content", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Bar"], ["content", "This\r\n====\r\n\r\nIs the end of the world"], ["slug", "bar"], ["created_at", "2015-07-28 15:25:17.777795"], ["updated_at", "2015-07-28 15:25:17.777795"]]
674
+  (192.9ms) commit transaction
675
+ Redirected to http://localhost:3000/help_engine/help_pages/bar
676
+ Completed 302 Found in 789ms (ActiveRecord: 196.5ms)
677
+
678
+
679
+ Started GET "/help_engine/help_pages/bar" for 127.0.0.1 at 2015-07-28 16:25:18 +0100
680
+ Processing by HelpEngine::HelpPagesController#show as HTML
681
+ Parameters: {"id"=>"bar"}
682
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
683
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (6.6ms)
684
+ Completed 200 OK in 77ms (Views: 68.2ms | ActiveRecord: 0.3ms)
685
+
686
+
687
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:25:40 +0100
688
+ Processing by HelpEngine::HelpPagesController#edit as HTML
689
+ Parameters: {"id"=>"bar"}
690
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
691
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (10.5ms)
692
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (16.3ms)
693
+ Completed 200 OK in 89ms (Views: 81.5ms | ActiveRecord: 0.2ms)
694
+
695
+
696
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:28:57 +0100
697
+ Processing by HelpEngine::HelpPagesController#edit as HTML
698
+ Parameters: {"id"=>"bar"}
699
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
700
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (12.8ms)
701
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (15.3ms)
702
+ Completed 200 OK in 149ms (Views: 145.4ms | ActiveRecord: 0.3ms)
703
+
704
+
705
+ Started GET "/assets/help_engine/help_pages.self-d2418b363314c6fe14c939a04d3a7a7293ed9257a626fb31dc6a9155afad749f.css?body=1" for 127.0.0.1 at 2015-07-28 16:28:58 +0100
706
+
707
+
708
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:28:58 +0100
709
+
710
+
711
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:28:58 +0100
712
+
713
+
714
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:28:58 +0100
715
+
716
+
717
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:29:47 +0100
718
+ Processing by HelpEngine::HelpPagesController#edit as HTML
719
+ Parameters: {"id"=>"bar"}
720
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
721
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (6.1ms)
722
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (27.5ms)
723
+ Completed 200 OK in 154ms (Views: 147.3ms | ActiveRecord: 0.3ms)
724
+
725
+
726
+ Started GET "/assets/help_engine/help_pages.self-ea1c66435ff7d34ed4e52ba88c4d2fb543f43c5efa607081a9cb5f626ec3975c.css?body=1" for 127.0.0.1 at 2015-07-28 16:29:47 +0100
727
+
728
+
729
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:29:48 +0100
730
+
731
+
732
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:29:48 +0100
733
+
734
+
735
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:29:48 +0100
736
+
737
+
738
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:30:46 +0100
739
+ Processing by HelpEngine::HelpPagesController#edit as HTML
740
+ Parameters: {"id"=>"bar"}
741
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
742
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (12.0ms)
743
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (21.1ms)
744
+ Completed 200 OK in 278ms (Views: 269.6ms | ActiveRecord: 0.4ms)
745
+
746
+
747
+ Started GET "/assets/help_engine/help_pages.self-37fe5a8f9f218e977aa120c4615b93d77a9100afd8f7b42984f906c658d24985.css?body=1" for 127.0.0.1 at 2015-07-28 16:30:46 +0100
748
+
749
+
750
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:30:46 +0100
751
+
752
+
753
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:30:46 +0100
754
+
755
+
756
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:30:46 +0100
757
+
758
+
759
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:31:26 +0100
760
+ Processing by HelpEngine::HelpPagesController#edit as HTML
761
+ Parameters: {"id"=>"bar"}
762
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
763
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (13.9ms)
764
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (25.6ms)
765
+ Completed 200 OK in 111ms (Views: 105.3ms | ActiveRecord: 0.4ms)
766
+
767
+
768
+ Started GET "/assets/help_engine/help_pages.self-37fe5a8f9f218e977aa120c4615b93d77a9100afd8f7b42984f906c658d24985.css?body=1" for 127.0.0.1 at 2015-07-28 16:31:26 +0100
769
+
770
+
771
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:31:27 +0100
772
+
773
+
774
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:31:27 +0100
775
+
776
+
777
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:31:27 +0100
778
+
779
+
780
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:32:26 +0100
781
+ Processing by HelpEngine::HelpPagesController#edit as HTML
782
+ Parameters: {"id"=>"bar"}
783
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
784
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (13.2ms)
785
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (27.4ms)
786
+ Completed 200 OK in 178ms (Views: 170.2ms | ActiveRecord: 0.3ms)
787
+
788
+
789
+ Started GET "/assets/help_engine/help_pages.self-e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855.css?body=1" for 127.0.0.1 at 2015-07-28 16:32:26 +0100
790
+
791
+
792
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:32:26 +0100
793
+
794
+
795
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:32:26 +0100
796
+
797
+
798
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:32:26 +0100
799
+
800
+
801
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:32:56 +0100
802
+ Processing by HelpEngine::HelpPagesController#edit as HTML
803
+ Parameters: {"id"=>"bar"}
804
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
805
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (7.9ms)
806
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (30.3ms)
807
+ Completed 200 OK in 165ms (Views: 157.2ms | ActiveRecord: 0.4ms)
808
+
809
+
810
+ Started GET "/assets/help_engine/help_pages.self-def4f20a2911a4015e4aa420ed87cff5bf74aec710cad1ceaaee4cc08f43ad87.css?body=1" for 127.0.0.1 at 2015-07-28 16:32:56 +0100
811
+
812
+
813
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:32:56 +0100
814
+
815
+
816
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:32:57 +0100
817
+
818
+
819
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:32:57 +0100
820
+
821
+
822
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:33:38 +0100
823
+ Processing by HelpEngine::HelpPagesController#edit as HTML
824
+ Parameters: {"id"=>"bar"}
825
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
826
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (10.9ms)
827
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (25.7ms)
828
+ Completed 500 Internal Server Error in 122ms (ActiveRecord: 0.3ms)
829
+
830
+ LoadError (cannot load such file -- sass):
831
+ activesupport (4.2.3) lib/active_support/dependencies.rb:274:in `require'
832
+ activesupport (4.2.3) lib/active_support/dependencies.rb:274:in `block in require'
833
+ activesupport (4.2.3) lib/active_support/dependencies.rb:240:in `load_dependency'
834
+ activesupport (4.2.3) lib/active_support/dependencies.rb:274:in `require'
835
+ sprockets (3.2.0) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
836
+ sprockets (3.2.0) lib/sprockets/sass_processor.rb:47:in `initialize'
837
+ sprockets (3.2.0) lib/sprockets/sass_processor.rb:26:in `new'
838
+ sprockets (3.2.0) lib/sprockets/sass_processor.rb:26:in `instance'
839
+ sprockets (3.2.0) lib/sprockets/sass_processor.rb:30:in `call'
840
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
841
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
842
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:56:in `reverse_each'
843
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
844
+ sprockets (3.2.0) lib/sprockets/loader.rb:86:in `load_asset_by_uri'
845
+ sprockets (3.2.0) lib/sprockets/loader.rb:45:in `block in load'
846
+ sprockets (3.2.0) lib/sprockets/loader.rb:155:in `fetch_asset_from_dependency_cache'
847
+ sprockets (3.2.0) lib/sprockets/loader.rb:38:in `load'
848
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
849
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:47:in `yield'
850
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:47:in `default'
851
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:47:in `load'
852
+ sprockets (3.2.0) lib/sprockets/bundle.rb:23:in `block in call'
853
+ sprockets (3.2.0) lib/sprockets/utils.rb:183:in `dfs'
854
+ sprockets (3.2.0) lib/sprockets/bundle.rb:24:in `call'
855
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:75:in `call_processor'
856
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
857
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:56:in `reverse_each'
858
+ sprockets (3.2.0) lib/sprockets/processor_utils.rb:56:in `call_processors'
859
+ sprockets (3.2.0) lib/sprockets/loader.rb:86:in `load_asset_by_uri'
860
+ sprockets (3.2.0) lib/sprockets/loader.rb:45:in `block in load'
861
+ sprockets (3.2.0) lib/sprockets/loader.rb:155:in `fetch_asset_from_dependency_cache'
862
+ sprockets (3.2.0) lib/sprockets/loader.rb:38:in `load'
863
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:20:in `block in initialize'
864
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:47:in `yield'
865
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:47:in `default'
866
+ sprockets (3.2.0) lib/sprockets/cached_environment.rb:47:in `load'
867
+ sprockets (3.2.0) lib/sprockets/base.rb:63:in `find_asset'
868
+ sprockets (3.2.0) lib/sprockets/environment.rb:30:in `find_asset'
869
+ sprockets (3.2.0) lib/sprockets/base.rb:89:in `[]'
870
+ sprockets-rails (2.3.2) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path'
871
+ sprockets-rails (2.3.2) lib/sprockets/rails/helper.rb:190:in `check_errors_for'
872
+ sprockets-rails (2.3.2) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag'
873
+ sprockets-rails (2.3.2) lib/sprockets/rails/helper.rb:158:in `map'
874
+ sprockets-rails (2.3.2) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag'
875
+ /home/rob/web/help_engine/app/views/layouts/help_engine/application.html.erb:5:in `__home_rob_web_help_engine_app_views_layouts_help_engine_application_html_erb__235177382__630266588'
876
+ actionview (4.2.3) lib/action_view/template.rb:145:in `block in render'
877
+ activesupport (4.2.3) lib/active_support/notifications.rb:166:in `instrument'
878
+ actionview (4.2.3) lib/action_view/template.rb:333:in `instrument'
879
+ actionview (4.2.3) lib/action_view/template.rb:143:in `render'
880
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
881
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
882
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:14:in `render'
883
+ actionview (4.2.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
884
+ actionview (4.2.3) lib/action_view/renderer/renderer.rb:23:in `render'
885
+ actionview (4.2.3) lib/action_view/rendering.rb:100:in `_render_template'
886
+ actionpack (4.2.3) lib/action_controller/metal/streaming.rb:217:in `_render_template'
887
+ actionview (4.2.3) lib/action_view/rendering.rb:83:in `render_to_body'
888
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
889
+ actionpack (4.2.3) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
890
+ actionpack (4.2.3) lib/abstract_controller/rendering.rb:25:in `render'
891
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
892
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
893
+ activesupport (4.2.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
894
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/benchmark.rb:295:in `realtime'
895
+ activesupport (4.2.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
896
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
897
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
898
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
899
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:43:in `render'
900
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
901
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
902
+ actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
903
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
904
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
905
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
906
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
907
+ activesupport (4.2.3) lib/active_support/callbacks.rb:553:in `block (2 levels) in compile'
908
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
909
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
910
+ activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
911
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
912
+ actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
913
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
914
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
915
+ activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
916
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
917
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
918
+ actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
919
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
920
+ actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
921
+ actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
922
+ actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
923
+ actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
924
+ actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
925
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
926
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
927
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
928
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
929
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
930
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
931
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
932
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
933
+ railties (4.2.3) lib/rails/railtie.rb:194:in `public_send'
934
+ railties (4.2.3) lib/rails/railtie.rb:194:in `method_missing'
935
+ actionpack (4.2.3) lib/action_dispatch/routing/mapper.rb:51:in `serve'
936
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
937
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
938
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
939
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
940
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
941
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
942
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
943
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
944
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
945
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
946
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
947
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
948
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
949
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
950
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
951
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
952
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
953
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
954
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
955
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
956
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
957
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
958
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
959
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
960
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
961
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
962
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
963
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
964
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
965
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
966
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
967
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
968
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
969
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
970
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
971
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
972
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
973
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
974
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
975
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
976
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
977
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
978
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
979
+
980
+
981
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (33.2ms)
982
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.6ms)
983
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
984
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (91.8ms)
985
+
986
+
987
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:34:15 +0100
988
+ Processing by HelpEngine::HelpPagesController#edit as HTML
989
+ Parameters: {"id"=>"bar"}
990
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
991
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (5.1ms)
992
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (16.7ms)
993
+ Completed 200 OK in 98ms (Views: 92.3ms | ActiveRecord: 0.3ms)
994
+
995
+
996
+ Started GET "/assets/help_engine/help_pages.self-def4f20a2911a4015e4aa420ed87cff5bf74aec710cad1ceaaee4cc08f43ad87.css?body=1" for 127.0.0.1 at 2015-07-28 16:34:16 +0100
997
+
998
+
999
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:34:16 +0100
1000
+
1001
+
1002
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:34:16 +0100
1003
+
1004
+
1005
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:34:16 +0100
1006
+
1007
+
1008
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:34:32 +0100
1009
+ Processing by HelpEngine::HelpPagesController#edit as HTML
1010
+ Parameters: {"id"=>"bar"}
1011
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
1012
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (13.0ms)
1013
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (24.2ms)
1014
+ Completed 200 OK in 348ms (Views: 341.0ms | ActiveRecord: 0.3ms)
1015
+
1016
+
1017
+ Started GET "/assets/help_engine/help_pages.self-020ee39012870bdb07dd4f57000e5a0f8f6e115ead5f895a79127e77df888392.css?body=1" for 127.0.0.1 at 2015-07-28 16:34:33 +0100
1018
+
1019
+
1020
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-28 16:34:33 +0100
1021
+
1022
+
1023
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-28 16:34:33 +0100
1024
+
1025
+
1026
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-28 16:34:33 +0100
1027
+
1028
+
1029
+ Started PATCH "/help_engine/help_pages/bar" for 127.0.0.1 at 2015-07-28 16:34:56 +0100
1030
+ Processing by HelpEngine::HelpPagesController#update as HTML
1031
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"vFebS4Hs2zPNizdkVAmflpCuQV2fbViXLvfULiOAkntYMVUiOCMIGEYa7K09YRiiAvu+Q9EATXWT+n2EaAI1Nw==", "help_page"=>{"name"=>"Bar", "content"=>"This\r\n====\r\n\r\nIs the end of the world\r\n\r\n* One\r\n* Two\r\n\r\n# Thee\r\n# Four"}, "commit"=>"Update Help page", "id"=>"bar"}
1032
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
1033
+  (0.1ms) begin transaction
1034
+ SQL (8.6ms) UPDATE "help_engine_help_pages" SET "content" = ?, "updated_at" = ? WHERE "help_engine_help_pages"."id" = ? [["content", "This\r\n====\r\n\r\nIs the end of the world\r\n\r\n* One\r\n* Two\r\n\r\n# Thee\r\n# Four"], ["updated_at", "2015-07-28 15:34:56.686953"], ["id", 3]]
1035
+  (107.7ms) commit transaction
1036
+ Redirected to http://localhost:3000/help_engine/help_pages/bar
1037
+ Completed 302 Found in 135ms (ActiveRecord: 116.7ms)
1038
+
1039
+
1040
+ Started GET "/help_engine/help_pages/bar" for 127.0.0.1 at 2015-07-28 16:34:56 +0100
1041
+ Processing by HelpEngine::HelpPagesController#show as HTML
1042
+ Parameters: {"id"=>"bar"}
1043
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
1044
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.0ms)
1045
+ Completed 200 OK in 103ms (Views: 92.1ms | ActiveRecord: 0.4ms)
1046
+
1047
+
1048
+ Started GET "/help_engine/help_pages/bar/edit" for 127.0.0.1 at 2015-07-28 16:35:02 +0100
1049
+ Processing by HelpEngine::HelpPagesController#edit as HTML
1050
+ Parameters: {"id"=>"bar"}
1051
+ HelpEngine::HelpPage Load (2.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
1052
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (16.0ms)
1053
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (25.3ms)
1054
+ Completed 200 OK in 108ms (Views: 101.3ms | ActiveRecord: 2.5ms)
1055
+
1056
+
1057
+ Started PATCH "/help_engine/help_pages/bar" for 127.0.0.1 at 2015-07-28 16:42:40 +0100
1058
+ Processing by HelpEngine::HelpPagesController#update as HTML
1059
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"L4zDTiAe0Qa3oGCjVUY9sbGrYyVyZuGzy8irgc124ObL6g0nmdECLTwxu2o8LrqFI/6cOzwL9FF2xQIrhvRHqg==", "help_page"=>{"name"=>"Bar", "content"=>"This\r\n====\r\n\r\nIs the end of the world\r\n\r\n* One\r\n* Two\r\n\r\n- Thee\r\n- Four"}, "commit"=>"Update Help page", "id"=>"bar"}
1060
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
1061
+  (0.1ms) begin transaction
1062
+ SQL (3.2ms) UPDATE "help_engine_help_pages" SET "content" = ?, "updated_at" = ? WHERE "help_engine_help_pages"."id" = ? [["content", "This\r\n====\r\n\r\nIs the end of the world\r\n\r\n* One\r\n* Two\r\n\r\n- Thee\r\n- Four"], ["updated_at", "2015-07-28 15:42:40.866607"], ["id", 3]]
1063
+  (106.1ms) commit transaction
1064
+ Redirected to http://localhost:3000/help_engine/help_pages/bar
1065
+ Completed 302 Found in 134ms (ActiveRecord: 109.7ms)
1066
+
1067
+
1068
+ Started GET "/help_engine/help_pages/bar" for 127.0.0.1 at 2015-07-28 16:42:41 +0100
1069
+ Processing by HelpEngine::HelpPagesController#show as HTML
1070
+ Parameters: {"id"=>"bar"}
1071
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
1072
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.0ms)
1073
+ Completed 200 OK in 102ms (Views: 94.4ms | ActiveRecord: 0.4ms)
1074
+
1075
+
1076
+ Started GET "/" for 127.0.0.1 at 2015-07-29 07:52:30 +0100
1077
+ Processing by Rails::WelcomeController#index as HTML
1078
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/railties-4.2.3/lib/rails/templates/rails/welcome/index.html.erb (33.7ms)
1079
+ Completed 200 OK in 235ms (Views: 233.0ms | ActiveRecord: 0.0ms)
1080
+
1081
+
1082
+ Started GET "/help_engine/help_pages" for 127.0.0.1 at 2015-07-29 07:52:41 +0100
1083
+ Processing by HelpEngine::HelpPagesController#index as HTML
1084
+ HelpEngine::HelpPage Load (33.1ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1085
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (293.7ms)
1086
+ Completed 200 OK in 2600ms (Views: 1322.1ms | ActiveRecord: 34.2ms)
1087
+
1088
+
1089
+ Started GET "/help/help_pages" for 127.0.0.1 at 2015-07-29 07:53:43 +0100
1090
+ Processing by HelpEngine::HelpPagesController#index as HTML
1091
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1092
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (45.6ms)
1093
+ Completed 200 OK in 159ms (Views: 113.7ms | ActiveRecord: 1.8ms)
1094
+
1095
+
1096
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 07:56:13 +0100
1097
+
1098
+ ActionController::RoutingError (No route matches [GET] "/help/pages"):
1099
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1100
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1101
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1102
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1103
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1104
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1105
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1106
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1107
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1108
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1109
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1110
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1111
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1112
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1113
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1114
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1115
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1116
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1117
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1118
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1119
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:138:in `service'
1120
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/httpserver.rb:94:in `run'
1121
+ /home/rob/.rvm/rubies/ruby-1.9.3-p547/lib/ruby/1.9.1/webrick/server.rb:191:in `block in start_thread'
1122
+
1123
+
1124
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
1125
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1126
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.4ms)
1127
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (120.8ms)
1128
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (6.5ms)
1129
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (445.8ms)
1130
+
1131
+
1132
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 07:56:27 +0100
1133
+ Processing by HelpEngine::HelpPagesController#index as HTML
1134
+ HelpEngine::HelpPage Load (0.6ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1135
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (59.7ms)
1136
+ Completed 200 OK in 366ms (Views: 323.0ms | ActiveRecord: 1.2ms)
1137
+
1138
+
1139
+ Started GET "/assets/help_engine/help_pages.self-020ee39012870bdb07dd4f57000e5a0f8f6e115ead5f895a79127e77df888392.css?body=1" for 127.0.0.1 at 2015-07-29 07:56:28 +0100
1140
+
1141
+
1142
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 07:56:28 +0100
1143
+
1144
+
1145
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 07:56:28 +0100
1146
+
1147
+
1148
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 07:56:28 +0100
1149
+
1150
+
1151
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 07:56:38 +0100
1152
+ Processing by HelpEngine::HelpPagesController#show as HTML
1153
+ Parameters: {"id"=>"foo"}
1154
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1155
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (15.3ms)
1156
+ Completed 200 OK in 303ms (Views: 115.9ms | ActiveRecord: 0.5ms)
1157
+
1158
+
1159
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 08:22:08 +0100
1160
+ Processing by HelpEngine::HelpPagesController#index as HTML
1161
+ HelpEngine::HelpPage Load (37.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1162
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (299.7ms)
1163
+ Completed 200 OK in 4149ms (Views: 3397.5ms | ActiveRecord: 38.2ms)
1164
+
1165
+
1166
+ Started GET "/assets/help_engine/help_pages.self-020ee39012870bdb07dd4f57000e5a0f8f6e115ead5f895a79127e77df888392.css?body=1" for 127.0.0.1 at 2015-07-29 08:22:17 +0100
1167
+
1168
+
1169
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 08:22:17 +0100
1170
+
1171
+
1172
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 08:22:17 +0100
1173
+
1174
+
1175
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 08:22:17 +0100
1176
+
1177
+
1178
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 08:22:24 +0100
1179
+ Processing by HelpEngine::HelpPagesController#show as HTML
1180
+ Parameters: {"id"=>"foo"}
1181
+ HelpEngine::HelpPage Load (3.0ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1182
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (2.6ms)
1183
+ Completed 200 OK in 838ms (Views: 164.6ms | ActiveRecord: 3.0ms)
1184
+
1185
+
1186
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 08:22:28 +0100
1187
+ Processing by HelpEngine::HelpPagesController#show as HTML
1188
+ Parameters: {"id"=>"foo"}
1189
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1190
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (6.9ms)
1191
+ Completed 200 OK in 179ms (Views: 157.9ms | ActiveRecord: 0.2ms)
1192
+
1193
+
1194
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:35:39 +0100
1195
+ Processing by HomeController#index as HTML
1196
+ Rendered home/index.html.erb within layouts/application (16.9ms)
1197
+ Completed 200 OK in 1722ms (Views: 1721.9ms | ActiveRecord: 0.0ms)
1198
+
1199
+
1200
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 08:35:45 +0100
1201
+
1202
+
1203
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 08:35:45 +0100
1204
+
1205
+
1206
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 08:35:45 +0100
1207
+
1208
+
1209
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 08:35:45 +0100
1210
+
1211
+
1212
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:40:04 +0100
1213
+ Processing by HomeController#index as HTML
1214
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1215
+ Rendered home/index.html.erb within layouts/application (1817.2ms)
1216
+ Completed 500 Internal Server Error in 1836ms (ActiveRecord: 135.8ms)
1217
+
1218
+ ActionView::Template::Error (undefined method `tag' for #<HelpEngine::HelpPage:0x9ef9b34>):
1219
+ 2:
1220
+ 3: <p>
1221
+ 4: To see the first help page click
1222
+ 5: <%= link_to 'here', help_engine_help_page_path(HelpEngine::HelpPage.first.tag) %>
1223
+ 6: </p>
1224
+ 7:
1225
+ 8: <p>
1226
+ app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__815268833__627685078'
1227
+
1228
+
1229
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (33.2ms)
1230
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (28.2ms)
1231
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.7ms)
1232
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (263.5ms)
1233
+
1234
+
1235
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:40:54 +0100
1236
+ Processing by HomeController#index as HTML
1237
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1238
+ Rendered home/index.html.erb within layouts/application (254.9ms)
1239
+ Completed 500 Internal Server Error in 270ms (ActiveRecord: 0.7ms)
1240
+
1241
+ ActionView::Template::Error (undefined method `help_engine_help_page_path' for #<#<Class:0xb046040>:0xb4409034>):
1242
+ 2:
1243
+ 3: <p>
1244
+ 4: To see the first help page click
1245
+ 5: <%= link_to 'here', help_engine_help_page_path(HelpEngine::HelpPage.first.slug) %>
1246
+ 6: </p>
1247
+ 7:
1248
+ 8: <p>
1249
+ app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb__815268833__635419848'
1250
+
1251
+
1252
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.2ms)
1253
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (19.4ms)
1254
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.9ms)
1255
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (114.3ms)
1256
+
1257
+
1258
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:42:47 +0100
1259
+ Processing by HomeController#index as HTML
1260
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1261
+ Rendered home/index.html.erb within layouts/application (563.2ms)
1262
+ Completed 500 Internal Server Error in 655ms (ActiveRecord: 15.4ms)
1263
+
1264
+ ActionView::Template::Error (undefined method `help_page_path' for #<#<Class:0xa771744>:0xa770984>):
1265
+ 2:
1266
+ 3: <p>
1267
+ 4: To see the first help page click
1268
+ 5: <%= link_to 'here', help_page_path(HelpEngine::HelpPage.first.slug) %>
1269
+ 6: </p>
1270
+ 7:
1271
+ 8: <p>
1272
+ app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb___457705065_88345710'
1273
+
1274
+
1275
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (25.8ms)
1276
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (21.2ms)
1277
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (66.9ms)
1278
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (182.4ms)
1279
+
1280
+
1281
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:44:04 +0100
1282
+ Processing by HomeController#index as HTML
1283
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1284
+ Rendered home/index.html.erb within layouts/application (37.4ms)
1285
+ Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.4ms)
1286
+
1287
+ ActionView::Template::Error (undefined method `help_help_page_path' for #<#<Class:0xa771744>:0xa92c980>):
1288
+ 2:
1289
+ 3: <p>
1290
+ 4: To see the first help page click
1291
+ 5: <%= link_to 'here', help_help_page_path(HelpEngine::HelpPage.first.slug) %>
1292
+ 6: </p>
1293
+ 7:
1294
+ 8: <p>
1295
+ app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb___457705065_88694250'
1296
+
1297
+
1298
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (20.9ms)
1299
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (21.3ms)
1300
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
1301
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (111.7ms)
1302
+
1303
+
1304
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:44:31 +0100
1305
+ Processing by HomeController#index as HTML
1306
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1307
+ Rendered home/index.html.erb within layouts/application (39.1ms)
1308
+ Completed 500 Internal Server Error in 55ms (ActiveRecord: 0.4ms)
1309
+
1310
+ ActionView::Template::Error (undefined method `help_engine_help_page_path' for #<#<Class:0xa771744>:0xaabaacc>):
1311
+ 2:
1312
+ 3: <p>
1313
+ 4: To see the first help page click
1314
+ 5: <%= link_to 'here', help_engine_help_page_path(HelpEngine::HelpPage.first.slug) %>
1315
+ 6: </p>
1316
+ 7:
1317
+ 8: <p>
1318
+ app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb___457705065_89509470'
1319
+
1320
+
1321
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (27.9ms)
1322
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (41.4ms)
1323
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
1324
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (124.8ms)
1325
+
1326
+
1327
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:47:31 +0100
1328
+ Processing by HomeController#index as HTML
1329
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1330
+ Rendered home/index.html.erb within layouts/application (49.6ms)
1331
+ Completed 500 Internal Server Error in 54ms (ActiveRecord: 0.4ms)
1332
+
1333
+ ActionView::Template::Error (undefined method `help_page_url' for #<#<Class:0xa771744>:0xaa0c058>):
1334
+ 2:
1335
+ 3: <p>
1336
+ 4: To see the first help page click
1337
+ 5: <%= link_to 'here', polymorphic_url(HelpEngine::HelpPage.first) %>
1338
+ 6: </p>
1339
+ 7:
1340
+ 8: <p>
1341
+ app/views/home/index.html.erb:5:in `_app_views_home_index_html_erb___457705065_89177950'
1342
+
1343
+
1344
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (23.7ms)
1345
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (12.3ms)
1346
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
1347
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (85.9ms)
1348
+
1349
+
1350
+ Started GET "/" for 127.0.0.1 at 2015-07-29 08:48:49 +0100
1351
+ Processing by HomeController#index as HTML
1352
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1353
+ Rendered home/index.html.erb within layouts/application (30.7ms)
1354
+ Completed 200 OK in 939ms (Views: 937.7ms | ActiveRecord: 0.5ms)
1355
+
1356
+
1357
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 08:48:50 +0100
1358
+
1359
+
1360
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 08:48:50 +0100
1361
+
1362
+
1363
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 08:48:50 +0100
1364
+
1365
+
1366
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 08:48:50 +0100
1367
+
1368
+
1369
+ Started GET "/" for 127.0.0.1 at 2015-07-29 09:01:49 +0100
1370
+ Processing by HomeController#index as HTML
1371
+ Rendered home/index.html.erb within layouts/application (6.4ms)
1372
+ Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.0ms)
1373
+
1374
+ ActionView::Template::Error (undefined method `exits?' for #<Class:0xa4b1e78>):
1375
+ 1: <h1>Help Engine Dummy App</h1>
1376
+ 2:
1377
+ 3: <% if HelpEngine::HelpPage.exits? %>
1378
+ 4: <p>
1379
+ 5: To see the first help page click
1380
+ 6: <%= link_to 'here', help_engine.help_page_path(HelpEngine::HelpPage.first.slug) %>
1381
+ app/views/home/index.html.erb:3:in `_app_views_home_index_html_erb___457705065__626609948'
1382
+
1383
+
1384
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (25.6ms)
1385
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (11.1ms)
1386
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
1387
+ Rendered /home/rob/.rvm/gems/ruby-1.9.3-p547/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (89.9ms)
1388
+
1389
+
1390
+ Started GET "/" for 127.0.0.1 at 2015-07-29 09:02:07 +0100
1391
+ Processing by HomeController#index as HTML
1392
+ HelpEngine::HelpPage Exists (0.3ms) SELECT 1 AS one FROM "help_engine_help_pages" LIMIT 1
1393
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1394
+ Rendered home/index.html.erb within layouts/application (203.9ms)
1395
+ Completed 200 OK in 283ms (Views: 282.3ms | ActiveRecord: 0.6ms)
1396
+
1397
+
1398
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:02:08 +0100
1399
+
1400
+
1401
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:02:08 +0100
1402
+
1403
+
1404
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:02:08 +0100
1405
+
1406
+
1407
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:02:08 +0100
1408
+
1409
+
1410
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:02:14 +0100
1411
+ Processing by HelpEngine::HelpPagesController#index as HTML
1412
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1413
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (12.3ms)
1414
+ Completed 200 OK in 221ms (Views: 220.1ms | ActiveRecord: 0.7ms)
1415
+
1416
+
1417
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:03:13 +0100
1418
+ Processing by HelpEngine::HelpPagesController#index as HTML
1419
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1420
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (4.4ms)
1421
+ Completed 200 OK in 92ms (Views: 91.5ms | ActiveRecord: 0.4ms)
1422
+
1423
+
1424
+ Started GET "/assets/help_engine/help_pages.self-020ee39012870bdb07dd4f57000e5a0f8f6e115ead5f895a79127e77df888392.css?body=1" for 127.0.0.1 at 2015-07-29 09:03:13 +0100
1425
+
1426
+
1427
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:03:13 +0100
1428
+
1429
+
1430
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:03:13 +0100
1431
+
1432
+
1433
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:03:13 +0100
1434
+
1435
+
1436
+ Started GET "/" for 127.0.0.1 at 2015-07-29 09:03:17 +0100
1437
+ Processing by HomeController#index as HTML
1438
+ HelpEngine::HelpPage Exists (0.3ms) SELECT 1 AS one FROM "help_engine_help_pages" LIMIT 1
1439
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1440
+ CACHE (2.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1441
+ Rendered home/index.html.erb within layouts/application (15.4ms)
1442
+ Completed 200 OK in 87ms (Views: 71.8ms | ActiveRecord: 3.1ms)
1443
+
1444
+
1445
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:03:18 +0100
1446
+
1447
+
1448
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:03:18 +0100
1449
+
1450
+
1451
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:03:18 +0100
1452
+
1453
+
1454
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:03:18 +0100
1455
+
1456
+
1457
+ Started GET "/" for 127.0.0.1 at 2015-07-29 09:04:57 +0100
1458
+ Processing by HomeController#index as HTML
1459
+ HelpEngine::HelpPage Exists (18.8ms) SELECT 1 AS one FROM "help_engine_help_pages" LIMIT 1
1460
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1461
+ CACHE (0.0ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1462
+ Rendered home/index.html.erb within layouts/application (28.7ms)
1463
+ Completed 200 OK in 291ms (Views: 271.7ms | ActiveRecord: 19.1ms)
1464
+
1465
+
1466
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:04:58 +0100
1467
+
1468
+
1469
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:04:58 +0100
1470
+
1471
+
1472
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:04:58 +0100
1473
+
1474
+
1475
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:04:58 +0100
1476
+
1477
+
1478
+ Started GET "/" for 127.0.0.1 at 2015-07-29 09:05:12 +0100
1479
+ Processing by HomeController#index as HTML
1480
+ HelpEngine::HelpPage Exists (0.3ms) SELECT 1 AS one FROM "help_engine_help_pages" LIMIT 1
1481
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1482
+ CACHE (0.0ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1483
+ Rendered home/index.html.erb within layouts/application (20.2ms)
1484
+ Completed 200 OK in 108ms (Views: 107.6ms | ActiveRecord: 0.6ms)
1485
+
1486
+
1487
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:05:13 +0100
1488
+
1489
+
1490
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:05:13 +0100
1491
+
1492
+
1493
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:05:13 +0100
1494
+
1495
+
1496
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:05:13 +0100
1497
+
1498
+
1499
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:05:23 +0100
1500
+ Processing by HelpEngine::HelpPagesController#show as HTML
1501
+ Parameters: {"id"=>"foo"}
1502
+ HelpEngine::HelpPage Load (0.6ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1503
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (5.5ms)
1504
+ Completed 200 OK in 509ms (Views: 94.9ms | ActiveRecord: 0.6ms)
1505
+
1506
+
1507
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:08:56 +0100
1508
+ Processing by HelpEngine::HelpPagesController#index as HTML
1509
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1510
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (15.8ms)
1511
+ Completed 200 OK in 103ms (Views: 96.2ms | ActiveRecord: 0.4ms)
1512
+
1513
+
1514
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:14:29 +0100
1515
+ Processing by HelpEngine::HelpPagesController#index as HTML
1516
+ HelpEngine::HelpPage Load (14.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1517
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (142.5ms)
1518
+ Completed 200 OK in 1620ms (Views: 1271.3ms | ActiveRecord: 23.8ms)
1519
+
1520
+
1521
+ Started GET "/assets/help_engine/help_pages.self-020ee39012870bdb07dd4f57000e5a0f8f6e115ead5f895a79127e77df888392.css?body=1" for 127.0.0.1 at 2015-07-29 09:14:32 +0100
1522
+
1523
+
1524
+ Started GET "/assets/help_engine/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:14:32 +0100
1525
+
1526
+
1527
+ Started GET "/assets/help_engine/help_pages.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:14:32 +0100
1528
+
1529
+
1530
+ Started GET "/assets/help_engine/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:14:32 +0100
1531
+
1532
+
1533
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:14:54 +0100
1534
+ Processing by HelpEngine::HelpPagesController#show as HTML
1535
+ Parameters: {"id"=>"foo"}
1536
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1537
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (6.0ms)
1538
+ Completed 200 OK in 412ms (Views: 100.8ms | ActiveRecord: 0.5ms)
1539
+
1540
+
1541
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:17:57 +0100
1542
+ Processing by HelpEngine::HelpPagesController#show as HTML
1543
+ Parameters: {"id"=>"foo"}
1544
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1545
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (13.7ms)
1546
+ Completed 200 OK in 119ms (Views: 108.8ms | ActiveRecord: 0.3ms)
1547
+
1548
+
1549
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:17:57 +0100
1550
+
1551
+
1552
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:17:58 +0100
1553
+
1554
+
1555
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:17:58 +0100
1556
+
1557
+
1558
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:17:58 +0100
1559
+
1560
+
1561
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:20:05 +0100
1562
+ Processing by HelpEngine::HelpPagesController#show as HTML
1563
+ Parameters: {"id"=>"foo"}
1564
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1565
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (13.0ms)
1566
+ Completed 200 OK in 110ms (Views: 99.1ms | ActiveRecord: 0.4ms)
1567
+
1568
+
1569
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:20:05 +0100
1570
+
1571
+
1572
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-29 09:20:05 +0100
1573
+
1574
+
1575
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:20:05 +0100
1576
+
1577
+
1578
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:20:05 +0100
1579
+
1580
+
1581
+ Started GET "/help/pages/foo/edit" for 127.0.0.1 at 2015-07-29 09:20:21 +0100
1582
+ Processing by HelpEngine::HelpPagesController#edit as HTML
1583
+ Parameters: {"id"=>"foo"}
1584
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1585
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (299.7ms)
1586
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (338.6ms)
1587
+ Completed 200 OK in 422ms (Views: 416.3ms | ActiveRecord: 0.3ms)
1588
+
1589
+
1590
+ Started GET "/help/pages/foo/edit" for 127.0.0.1 at 2015-07-29 09:21:34 +0100
1591
+ Processing by HelpEngine::HelpPagesController#edit as HTML
1592
+ Parameters: {"id"=>"foo"}
1593
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1594
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (13.0ms)
1595
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (21.2ms)
1596
+ Completed 200 OK in 239ms (Views: 233.8ms | ActiveRecord: 0.3ms)
1597
+
1598
+
1599
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:21:35 +0100
1600
+
1601
+
1602
+ Started GET "/assets/application.self-d6253a93b6229b6978f718b8afa6e024be655f827322fd0c0e9600449a52c428.css?body=1" for 127.0.0.1 at 2015-07-29 09:21:35 +0100
1603
+
1604
+
1605
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:21:35 +0100
1606
+
1607
+
1608
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:21:35 +0100
1609
+
1610
+
1611
+ Started PATCH "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:21:59 +0100
1612
+ Processing by HelpEngine::HelpPagesController#update as HTML
1613
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"64tAwL+7y8CPjrd8IsBTBO/UPrccBK0EaAabzNkvLwsHwKUFzNCQ0GB/DKYk9BkoDTvqTLUHFHHN7L7lArfk3Q==", "help_page"=>{"name"=>"Foo", "content"=>"Foo Bar\r\n=======\r\nThis is some content"}, "commit"=>"Update Help page", "id"=>"foo"}
1614
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1615
+  (0.4ms) begin transaction
1616
+  (0.2ms) commit transaction
1617
+ Redirected to http://localhost:3000/help/pages/foo
1618
+ Completed 302 Found in 39ms (ActiveRecord: 0.9ms)
1619
+
1620
+
1621
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:21:59 +0100
1622
+ Processing by HelpEngine::HelpPagesController#show as HTML
1623
+ Parameters: {"id"=>"foo"}
1624
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1625
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.2ms)
1626
+ Completed 200 OK in 94ms (Views: 89.7ms | ActiveRecord: 0.2ms)
1627
+
1628
+
1629
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:33:53 +0100
1630
+ Processing by HelpEngine::HelpPagesController#index as HTML
1631
+ HelpEngine::HelpPage Load (0.9ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1632
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (16.0ms)
1633
+ Completed 200 OK in 123ms (Views: 116.1ms | ActiveRecord: 0.9ms)
1634
+
1635
+
1636
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:34:14 +0100
1637
+ Processing by HelpEngine::HelpPagesController#index as HTML
1638
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1639
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (10.3ms)
1640
+ Completed 200 OK in 118ms (Views: 117.4ms | ActiveRecord: 0.5ms)
1641
+
1642
+
1643
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:34:14 +0100
1644
+
1645
+
1646
+ Started GET "/assets/application.self-d6253a93b6229b6978f718b8afa6e024be655f827322fd0c0e9600449a52c428.css?body=1" for 127.0.0.1 at 2015-07-29 09:34:15 +0100
1647
+
1648
+
1649
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:34:15 +0100
1650
+
1651
+
1652
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:34:15 +0100
1653
+
1654
+
1655
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:35:01 +0100
1656
+ Processing by HelpEngine::HelpPagesController#index as HTML
1657
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1658
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (22.1ms)
1659
+ Completed 200 OK in 103ms (Views: 98.2ms | ActiveRecord: 0.4ms)
1660
+
1661
+
1662
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:35:02 +0100
1663
+
1664
+
1665
+ Started GET "/assets/application.self-d6253a93b6229b6978f718b8afa6e024be655f827322fd0c0e9600449a52c428.css?body=1" for 127.0.0.1 at 2015-07-29 09:35:02 +0100
1666
+
1667
+
1668
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:35:02 +0100
1669
+
1670
+
1671
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:35:02 +0100
1672
+
1673
+
1674
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:35:16 +0100
1675
+ Processing by HelpEngine::HelpPagesController#show as HTML
1676
+ Parameters: {"id"=>"foo"}
1677
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1678
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (0.9ms)
1679
+ Completed 200 OK in 70ms (Views: 65.4ms | ActiveRecord: 0.3ms)
1680
+
1681
+
1682
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:39:18 +0100
1683
+ Processing by HelpEngine::HelpPagesController#show as HTML
1684
+ Parameters: {"id"=>"foo"}
1685
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1686
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.9ms)
1687
+ Completed 200 OK in 84ms (Views: 76.8ms | ActiveRecord: 0.4ms)
1688
+
1689
+
1690
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:39:18 +0100
1691
+
1692
+
1693
+ Started GET "/assets/application.self-d6253a93b6229b6978f718b8afa6e024be655f827322fd0c0e9600449a52c428.css?body=1" for 127.0.0.1 at 2015-07-29 09:39:18 +0100
1694
+
1695
+
1696
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:39:18 +0100
1697
+
1698
+
1699
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:39:18 +0100
1700
+
1701
+
1702
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:39:23 +0100
1703
+ Processing by HelpEngine::HelpPagesController#index as HTML
1704
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1705
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (13.6ms)
1706
+ Completed 200 OK in 106ms (Views: 102.4ms | ActiveRecord: 0.4ms)
1707
+
1708
+
1709
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:40:58 +0100
1710
+ Processing by HelpEngine::HelpPagesController#index as HTML
1711
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1712
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (2.4ms)
1713
+ Completed 200 OK in 152ms (Views: 151.1ms | ActiveRecord: 0.3ms)
1714
+
1715
+
1716
+ Started GET "/assets/help_pages.self-5e3cf6a4032dc7c1b3c9d57446429312fed57ef26735d92d77c9b35fd6f76dd2.css?body=1" for 127.0.0.1 at 2015-07-29 09:40:58 +0100
1717
+
1718
+
1719
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:40:59 +0100
1720
+
1721
+
1722
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:40:59 +0100
1723
+
1724
+
1725
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:40:59 +0100
1726
+
1727
+
1728
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:40:59 +0100
1729
+
1730
+
1731
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:41:05 +0100
1732
+ Processing by HelpEngine::HelpPagesController#new as HTML
1733
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (9.5ms)
1734
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (21.2ms)
1735
+ Completed 200 OK in 122ms (Views: 117.3ms | ActiveRecord: 0.0ms)
1736
+
1737
+
1738
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:41:27 +0100
1739
+ Processing by HelpEngine::HelpPagesController#new as HTML
1740
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (3.1ms)
1741
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (26.9ms)
1742
+ Completed 200 OK in 162ms (Views: 161.4ms | ActiveRecord: 0.0ms)
1743
+
1744
+
1745
+ Started GET "/assets/help_pages.self-f4671c368714e37d743940292d4010827273464167dffd8864d43282ccd7c19e.css?body=1" for 127.0.0.1 at 2015-07-29 09:41:27 +0100
1746
+
1747
+
1748
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:41:28 +0100
1749
+
1750
+
1751
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:41:28 +0100
1752
+
1753
+
1754
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:41:28 +0100
1755
+
1756
+
1757
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:41:28 +0100
1758
+
1759
+
1760
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:42:22 +0100
1761
+ Processing by HelpEngine::HelpPagesController#new as HTML
1762
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (10.0ms)
1763
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (16.2ms)
1764
+ Completed 200 OK in 93ms (Views: 92.4ms | ActiveRecord: 0.0ms)
1765
+
1766
+
1767
+ Started GET "/assets/help_pages.self-f4671c368714e37d743940292d4010827273464167dffd8864d43282ccd7c19e.css?body=1" for 127.0.0.1 at 2015-07-29 09:42:23 +0100
1768
+
1769
+
1770
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:42:23 +0100
1771
+
1772
+
1773
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:42:23 +0100
1774
+
1775
+
1776
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:42:23 +0100
1777
+
1778
+
1779
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:42:23 +0100
1780
+
1781
+
1782
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:43:16 +0100
1783
+ Processing by HelpEngine::HelpPagesController#new as HTML
1784
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (4.3ms)
1785
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (8.1ms)
1786
+ Completed 200 OK in 283ms (Views: 282.7ms | ActiveRecord: 0.0ms)
1787
+
1788
+
1789
+ Started GET "/assets/help_pages.self-c8999c307306624dc75bb66ff911d64524873787fd3108d6e0000922aa81b60c.css?body=1" for 127.0.0.1 at 2015-07-29 09:43:16 +0100
1790
+
1791
+
1792
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:43:17 +0100
1793
+
1794
+
1795
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:43:17 +0100
1796
+
1797
+
1798
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:43:17 +0100
1799
+
1800
+
1801
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:43:17 +0100
1802
+
1803
+
1804
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:44:33 +0100
1805
+ Processing by HelpEngine::HelpPagesController#new as HTML
1806
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (7.7ms)
1807
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (14.0ms)
1808
+ Completed 200 OK in 144ms (Views: 143.7ms | ActiveRecord: 0.0ms)
1809
+
1810
+
1811
+ Started GET "/assets/help_pages.self-96c9e494314a3d2aa876468656361ee37ef82726e2fc49c69f10409ba33b5c3e.css?body=1" for 127.0.0.1 at 2015-07-29 09:44:33 +0100
1812
+
1813
+
1814
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:44:33 +0100
1815
+
1816
+
1817
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:44:34 +0100
1818
+
1819
+
1820
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:44:34 +0100
1821
+
1822
+
1823
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:44:34 +0100
1824
+
1825
+
1826
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:45:52 +0100
1827
+ Processing by HelpEngine::HelpPagesController#new as HTML
1828
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (5.7ms)
1829
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (12.4ms)
1830
+ Completed 200 OK in 151ms (Views: 150.9ms | ActiveRecord: 0.0ms)
1831
+
1832
+
1833
+ Started GET "/assets/help_pages.self-e223e90f7a722276a447895a745bfbd76a94917eb8e761d650b4ec6ff7e41c6d.css?body=1" for 127.0.0.1 at 2015-07-29 09:45:52 +0100
1834
+
1835
+
1836
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:45:53 +0100
1837
+
1838
+
1839
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:45:53 +0100
1840
+
1841
+
1842
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:45:53 +0100
1843
+
1844
+
1845
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:45:53 +0100
1846
+
1847
+
1848
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:46:41 +0100
1849
+ Processing by HelpEngine::HelpPagesController#new as HTML
1850
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (7.0ms)
1851
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (8.7ms)
1852
+ Completed 200 OK in 329ms (Views: 328.2ms | ActiveRecord: 0.0ms)
1853
+
1854
+
1855
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 09:46:42 +0100
1856
+
1857
+
1858
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:46:42 +0100
1859
+
1860
+
1861
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:46:42 +0100
1862
+
1863
+
1864
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:46:42 +0100
1865
+
1866
+
1867
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:46:42 +0100
1868
+
1869
+
1870
+ Started POST "/help/pages" for 127.0.0.1 at 2015-07-29 09:47:41 +0100
1871
+ Processing by HelpEngine::HelpPagesController#create as HTML
1872
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"q0DEvl7B18qpTBeJMMOCKCKnztFgiXFAdesBVA2YPG9HCyF7LaqM2ka9rFM298gEwEgaKsmKyDXQASR91gD3uQ==", "help_page"=>{"name"=>"The life of Pi", "content"=>"The Life of Pi\r\n==========\r\n\r\nAn interesting film"}, "commit"=>"Create Help page"}
1873
+  (0.2ms) begin transaction
1874
+ HelpEngine::HelpPage Exists (0.6ms) SELECT 1 AS one FROM "help_engine_help_pages" WHERE ("help_engine_help_pages"."id" IS NOT NULL) AND "help_engine_help_pages"."slug" = ? LIMIT 1 [["slug", "the-life-of-pi"]]
1875
+ SQL (7.7ms) INSERT INTO "help_engine_help_pages" ("name", "content", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "The life of Pi"], ["content", "The Life of Pi\r\n==========\r\n\r\nAn interesting film"], ["slug", "the-life-of-pi"], ["created_at", "2015-07-29 08:47:42.060382"], ["updated_at", "2015-07-29 08:47:42.060382"]]
1876
+  (132.7ms) commit transaction
1877
+ Redirected to http://localhost:3000/help/pages/the-life-of-pi
1878
+ Completed 302 Found in 881ms (ActiveRecord: 141.2ms)
1879
+
1880
+
1881
+ Started GET "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 09:47:42 +0100
1882
+ Processing by HelpEngine::HelpPagesController#show as HTML
1883
+ Parameters: {"id"=>"the-life-of-pi"}
1884
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
1885
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.0ms)
1886
+ Completed 200 OK in 98ms (Views: 94.6ms | ActiveRecord: 0.3ms)
1887
+
1888
+
1889
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:51:26 +0100
1890
+ Processing by HelpEngine::HelpPagesController#index as HTML
1891
+ HelpEngine::HelpPage Load (16.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1892
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (126.6ms)
1893
+ Completed 200 OK in 1767ms (Views: 1487.0ms | ActiveRecord: 17.7ms)
1894
+
1895
+
1896
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 09:51:29 +0100
1897
+
1898
+
1899
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 09:51:29 +0100
1900
+
1901
+
1902
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 09:51:29 +0100
1903
+
1904
+
1905
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 09:51:29 +0100
1906
+
1907
+
1908
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 09:51:29 +0100
1909
+
1910
+
1911
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:51:34 +0100
1912
+ Processing by HelpEngine::HelpPagesController#show as HTML
1913
+ Parameters: {"id"=>"foo"}
1914
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1915
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (2.1ms)
1916
+ Completed 200 OK in 415ms (Views: 88.9ms | ActiveRecord: 0.7ms)
1917
+
1918
+
1919
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:51:37 +0100
1920
+ Processing by HelpEngine::HelpPagesController#show as HTML
1921
+ Parameters: {"id"=>"foo"}
1922
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1923
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (0.9ms)
1924
+ Completed 200 OK in 93ms (Views: 86.4ms | ActiveRecord: 0.2ms)
1925
+
1926
+
1927
+ Started GET "/" for 127.0.0.1 at 2015-07-29 09:57:36 +0100
1928
+ Processing by HomeController#index as HTML
1929
+ HelpEngine::HelpPage Exists (0.5ms) SELECT 1 AS one FROM "help_engine_help_pages" LIMIT 1
1930
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1931
+ CACHE (0.0ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
1932
+ Rendered home/index.html.erb within layouts/application (223.5ms)
1933
+ Completed 200 OK in 309ms (Views: 307.3ms | ActiveRecord: 0.9ms)
1934
+
1935
+
1936
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:58:13 +0100
1937
+ Processing by HelpEngine::HelpPagesController#index as HTML
1938
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1939
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (5.2ms)
1940
+ Completed 200 OK in 109ms (Views: 108.3ms | ActiveRecord: 0.4ms)
1941
+
1942
+
1943
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 09:58:16 +0100
1944
+ Processing by HelpEngine::HelpPagesController#show as HTML
1945
+ Parameters: {"id"=>"foo"}
1946
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
1947
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.3ms)
1948
+ Completed 200 OK in 91ms (Views: 84.5ms | ActiveRecord: 0.4ms)
1949
+
1950
+
1951
+ Started GET "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 09:58:24 +0100
1952
+ Processing by HelpEngine::HelpPagesController#show as HTML
1953
+ Parameters: {"id"=>"the-life-of-pi"}
1954
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
1955
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.1ms)
1956
+ Completed 200 OK in 114ms (Views: 98.5ms | ActiveRecord: 0.5ms)
1957
+
1958
+
1959
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 09:58:35 +0100
1960
+ Processing by HelpEngine::HelpPagesController#index as HTML
1961
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
1962
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (11.8ms)
1963
+ Completed 200 OK in 109ms (Views: 103.9ms | ActiveRecord: 0.4ms)
1964
+
1965
+
1966
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 09:58:38 +0100
1967
+ Processing by HelpEngine::HelpPagesController#new as HTML
1968
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (363.6ms)
1969
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (379.3ms)
1970
+ Completed 200 OK in 467ms (Views: 463.3ms | ActiveRecord: 0.0ms)
1971
+
1972
+
1973
+ Started POST "/help/pages" for 127.0.0.1 at 2015-07-29 09:59:17 +0100
1974
+ Processing by HelpEngine::HelpPagesController#create as HTML
1975
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"QamvKqWA/6S+TQyjnhOPo7CwkbC2xdWqxTnesaTnhpat4krv1uuktFG8t3mYJ8WPUl9FSx/GbN9g0/uYf39NQA==", "help_page"=>{"name"=>"Demo for Chris", "content"=>"This is a demo for Chris\r\n=================\r\n\r\nI can add lists:\r\n\r\n* one\r\n* two"}, "commit"=>"Create Help page"}
1976
+  (2.5ms) begin transaction
1977
+ HelpEngine::HelpPage Exists (0.3ms) SELECT 1 AS one FROM "help_engine_help_pages" WHERE ("help_engine_help_pages"."id" IS NOT NULL) AND "help_engine_help_pages"."slug" = ? LIMIT 1 [["slug", "demo-for-chris"]]
1978
+ SQL (8.0ms) INSERT INTO "help_engine_help_pages" ("name", "content", "slug", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "Demo for Chris"], ["content", "This is a demo for Chris\r\n=================\r\n\r\nI can add lists:\r\n\r\n* one\r\n* two"], ["slug", "demo-for-chris"], ["created_at", "2015-07-29 08:59:17.897342"], ["updated_at", "2015-07-29 08:59:17.897342"]]
1979
+  (230.9ms) commit transaction
1980
+ Redirected to http://localhost:3000/help/pages/demo-for-chris
1981
+ Completed 302 Found in 757ms (ActiveRecord: 241.7ms)
1982
+
1983
+
1984
+ Started GET "/help/pages/demo-for-chris" for 127.0.0.1 at 2015-07-29 09:59:18 +0100
1985
+ Processing by HelpEngine::HelpPagesController#show as HTML
1986
+ Parameters: {"id"=>"demo-for-chris"}
1987
+ HelpEngine::HelpPage Load (5.6ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "demo-for-chris"]]
1988
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.2ms)
1989
+ Completed 200 OK in 105ms (Views: 94.6ms | ActiveRecord: 5.6ms)
1990
+
1991
+
1992
+ Started GET "/help/pages/demo-for-chris/edit" for 127.0.0.1 at 2015-07-29 09:59:35 +0100
1993
+ Processing by HelpEngine::HelpPagesController#edit as HTML
1994
+ Parameters: {"id"=>"demo-for-chris"}
1995
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "demo-for-chris"]]
1996
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (3.5ms)
1997
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (24.3ms)
1998
+ Completed 200 OK in 161ms (Views: 148.0ms | ActiveRecord: 0.3ms)
1999
+
2000
+
2001
+ Started PATCH "/help/pages/demo-for-chris" for 127.0.0.1 at 2015-07-29 09:59:58 +0100
2002
+ Processing by HelpEngine::HelpPagesController#update as HTML
2003
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"ptH0A2Hlq68wLZLPrTJr3ewqI/iJINJecV/35/aDvShKmhHGEo7wv9/cKRWrBiHxDsX3AyAjayvUtdLOLRt2/g==", "help_page"=>{"name"=>"Demo for Chris", "content"=>"This is a demo for Chris\r\n=================\r\n\r\nI can add lists:\r\n\r\n* one\r\n* two"}, "commit"=>"Update Help page", "id"=>"demo-for-chris"}
2004
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "demo-for-chris"]]
2005
+  (0.1ms) begin transaction
2006
+  (0.3ms) commit transaction
2007
+ Redirected to http://localhost:3000/help/pages/demo-for-chris
2008
+ Completed 302 Found in 30ms (ActiveRecord: 0.8ms)
2009
+
2010
+
2011
+ Started GET "/help/pages/demo-for-chris" for 127.0.0.1 at 2015-07-29 09:59:58 +0100
2012
+ Processing by HelpEngine::HelpPagesController#show as HTML
2013
+ Parameters: {"id"=>"demo-for-chris"}
2014
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "demo-for-chris"]]
2015
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (5.5ms)
2016
+ Completed 200 OK in 97ms (Views: 86.3ms | ActiveRecord: 0.3ms)
2017
+
2018
+
2019
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 10:00:54 +0100
2020
+ Processing by HelpEngine::HelpPagesController#index as HTML
2021
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2022
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (7.4ms)
2023
+ Completed 200 OK in 123ms (Views: 118.7ms | ActiveRecord: 0.4ms)
2024
+
2025
+
2026
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 10:05:58 +0100
2027
+ Processing by HelpEngine::HelpPagesController#new as HTML
2028
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (21.2ms)
2029
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (33.0ms)
2030
+ Completed 200 OK in 121ms (Views: 120.2ms | ActiveRecord: 0.0ms)
2031
+
2032
+
2033
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 10:06:16 +0100
2034
+ Processing by HelpEngine::HelpPagesController#new as HTML
2035
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (24.5ms)
2036
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (37.1ms)
2037
+ Completed 200 OK in 131ms (Views: 130.9ms | ActiveRecord: 0.0ms)
2038
+
2039
+
2040
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 10:06:17 +0100
2041
+
2042
+
2043
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 10:06:17 +0100
2044
+
2045
+
2046
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 10:06:17 +0100
2047
+
2048
+
2049
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 10:06:17 +0100
2050
+
2051
+
2052
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 10:06:17 +0100
2053
+
2054
+
2055
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 10:07:33 +0100
2056
+ Processing by HelpEngine::HelpPagesController#new as HTML
2057
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (13.0ms)
2058
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (33.4ms)
2059
+ Completed 200 OK in 282ms (Views: 278.8ms | ActiveRecord: 0.0ms)
2060
+
2061
+
2062
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 10:07:34 +0100
2063
+
2064
+
2065
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 10:07:34 +0100
2066
+
2067
+
2068
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 10:07:34 +0100
2069
+
2070
+
2071
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 10:07:34 +0100
2072
+
2073
+
2074
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 10:07:34 +0100
2075
+
2076
+
2077
+ Started GET "/help/pages/new" for 127.0.0.1 at 2015-07-29 10:11:08 +0100
2078
+ Processing by HelpEngine::HelpPagesController#new as HTML
2079
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (15.4ms)
2080
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/new.html.erb within layouts/help_engine/application (29.8ms)
2081
+ Completed 200 OK in 152ms (Views: 151.2ms | ActiveRecord: 0.0ms)
2082
+
2083
+
2084
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 10:11:09 +0100
2085
+
2086
+
2087
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 10:11:09 +0100
2088
+
2089
+
2090
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 10:11:09 +0100
2091
+
2092
+
2093
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 10:11:09 +0100
2094
+
2095
+
2096
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 10:11:09 +0100
2097
+
2098
+
2099
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 10:11:52 +0100
2100
+ Processing by HelpEngine::HelpPagesController#index as HTML
2101
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2102
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (12.4ms)
2103
+ Completed 200 OK in 122ms (Views: 121.5ms | ActiveRecord: 0.5ms)
2104
+
2105
+
2106
+ Started GET "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 10:11:56 +0100
2107
+ Processing by HelpEngine::HelpPagesController#show as HTML
2108
+ Parameters: {"id"=>"the-life-of-pi"}
2109
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2110
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.2ms)
2111
+ Completed 200 OK in 125ms (Views: 117.7ms | ActiveRecord: 0.4ms)
2112
+
2113
+
2114
+ Started GET "/help/pages/the-life-of-pi/edit" for 127.0.0.1 at 2015-07-29 10:12:00 +0100
2115
+ Processing by HelpEngine::HelpPagesController#edit as HTML
2116
+ Parameters: {"id"=>"the-life-of-pi"}
2117
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2118
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (25.9ms)
2119
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (30.2ms)
2120
+ Completed 200 OK in 152ms (Views: 133.7ms | ActiveRecord: 0.5ms)
2121
+
2122
+
2123
+ Started GET "/help/pages/the-life-of-pi/edit" for 127.0.0.1 at 2015-07-29 10:12:40 +0100
2124
+ Processing by HelpEngine::HelpPagesController#edit as HTML
2125
+ Parameters: {"id"=>"the-life-of-pi"}
2126
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2127
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (14.5ms)
2128
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (47.4ms)
2129
+ Completed 200 OK in 157ms (Views: 141.4ms | ActiveRecord: 0.5ms)
2130
+
2131
+
2132
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 10:12:41 +0100
2133
+
2134
+
2135
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 10:12:41 +0100
2136
+
2137
+
2138
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 10:12:41 +0100
2139
+
2140
+
2141
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 10:12:41 +0100
2142
+
2143
+
2144
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 10:12:41 +0100
2145
+
2146
+
2147
+ Started PATCH "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 10:13:20 +0100
2148
+ Processing by HelpEngine::HelpPagesController#update as HTML
2149
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"rZlo8v/rC5AkOeuuJB0HdqZkJXmxANA4yopPD1VmlphB0o03jIBQgMvIUHQiKU1aRIvxghgDaU1vYGomjv5dTg==", "help_page"=>{"name"=>"The life of Pi two", "content"=>"The Life of Pi\r\n==========\r\n\r\nAn interesting film"}, "commit"=>"Update Help page", "id"=>"the-life-of-pi"}
2150
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2151
+  (0.1ms) begin transaction
2152
+ SQL (7.3ms) UPDATE "help_engine_help_pages" SET "name" = ?, "updated_at" = ? WHERE "help_engine_help_pages"."id" = ? [["name", "The life of Pi two"], ["updated_at", "2015-07-29 09:13:20.806336"], ["id", 4]]
2153
+  (297.9ms) commit transaction
2154
+ Redirected to http://localhost:3000/help/pages/the-life-of-pi
2155
+ Completed 302 Found in 322ms (ActiveRecord: 305.6ms)
2156
+
2157
+
2158
+ Started GET "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 10:13:21 +0100
2159
+ Processing by HelpEngine::HelpPagesController#show as HTML
2160
+ Parameters: {"id"=>"the-life-of-pi"}
2161
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2162
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (0.8ms)
2163
+ Completed 200 OK in 109ms (Views: 91.3ms | ActiveRecord: 0.3ms)
2164
+
2165
+
2166
+ Started GET "/help/pages/the-life-of-pi/edit" for 127.0.0.1 at 2015-07-29 10:13:24 +0100
2167
+ Processing by HelpEngine::HelpPagesController#edit as HTML
2168
+ Parameters: {"id"=>"the-life-of-pi"}
2169
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2170
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/_form.html.erb (15.9ms)
2171
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/edit.html.erb within layouts/help_engine/application (42.5ms)
2172
+ Completed 200 OK in 165ms (Views: 151.0ms | ActiveRecord: 0.3ms)
2173
+
2174
+
2175
+ Started PATCH "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 10:13:34 +0100
2176
+ Processing by HelpEngine::HelpPagesController#update as HTML
2177
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"lSQ4NzGNmt43GOzwtBWukEAgYu2hkc2PVRLbGWBlm795b93yQubBztjpVyqyIeS8os+2FgiSdPrw+P4wu/1QaQ==", "help_page"=>{"name"=>"The life of Pi", "content"=>"The Life of Pi\r\n==========\r\n\r\nAn interesting film"}, "commit"=>"Update Help page", "id"=>"the-life-of-pi"}
2178
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2179
+  (0.1ms) begin transaction
2180
+ SQL (3.9ms) UPDATE "help_engine_help_pages" SET "name" = ?, "updated_at" = ? WHERE "help_engine_help_pages"."id" = ? [["name", "The life of Pi"], ["updated_at", "2015-07-29 09:13:34.479454"], ["id", 4]]
2181
+  (684.5ms) commit transaction
2182
+ Redirected to http://localhost:3000/help/pages/the-life-of-pi
2183
+ Completed 302 Found in 714ms (ActiveRecord: 689.0ms)
2184
+
2185
+
2186
+ Started GET "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 10:13:35 +0100
2187
+ Processing by HelpEngine::HelpPagesController#show as HTML
2188
+ Parameters: {"id"=>"the-life-of-pi"}
2189
+ HelpEngine::HelpPage Load (4.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2190
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.6ms)
2191
+ Completed 200 OK in 98ms (Views: 91.5ms | ActiveRecord: 4.2ms)
2192
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2193
+ Migrating to AddAuthorToHelpPages (20150729102332)
2194
+  (0.1ms) begin transaction
2195
+  (0.3ms) ALTER TABLE "help_pages" ADD "author_id" integer
2196
+ SQLite3::SQLException: no such table: help_pages: ALTER TABLE "help_pages" ADD "author_id" integer
2197
+  (0.1ms) rollback transaction
2198
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2199
+ Migrating to AddAuthorToHelpPages (20150729102332)
2200
+  (0.1ms) begin transaction
2201
+  (4.4ms) ALTER TABLE "help_engine_help_pages" ADD "author_id" integer
2202
+  (0.2ms) ALTER TABLE "help_engine_help_pages" ADD "author_type" varchar
2203
+  (0.1ms) select sqlite_version(*)
2204
+  (0.4ms) CREATE INDEX "index_help_engine_help_pages_on_author_type_and_author_id" ON "help_engine_help_pages" ("author_type", "author_id")
2205
+ SQL (8.4ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150729102332"]]
2206
+  (201.8ms) commit transaction
2207
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2208
+  (0.5ms) SELECT sql
2209
+ FROM sqlite_master
2210
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2211
+ UNION ALL
2212
+ SELECT sql
2213
+ FROM sqlite_temp_master
2214
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2215
+
2216
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2217
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2218
+ Migrating to AddAuthorToHelpPages (20150729102332)
2219
+  (0.1ms) begin transaction
2220
+  (2.0ms) CREATE TEMPORARY TABLE "ahelp_engine_help_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_id" integer, "author_type" varchar)
2221
+  (0.2ms)  SELECT sql
2222
+ FROM sqlite_master
2223
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2224
+ UNION ALL
2225
+ SELECT sql
2226
+ FROM sqlite_temp_master
2227
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2228
+ 
2229
+  (0.1ms) select sqlite_version(*)
2230
+  (0.3ms) CREATE INDEX "tindex_ahelp_engine_help_pages_on_author_type_and_author_id" ON "ahelp_engine_help_pages" ("author_type", "author_id")
2231
+  (0.1ms) SELECT * FROM "help_engine_help_pages"
2232
+  (0.2ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_id","author_type") VALUES (2, 'Foo', 'foo', 'Foo Bar
2233
+ =======
2234
+ This is some content', '2015-07-28 15:12:32.222516', '2015-07-28 15:22:49.142618', NULL, NULL)
2235
+  (0.1ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_id","author_type") VALUES (3, 'Bar', 'bar', 'This
2236
+ ====
2237
+
2238
+ Is the end of the world
2239
+
2240
+ * One
2241
+ * Two
2242
+
2243
+ - Thee
2244
+ - Four', '2015-07-28 15:25:17.777795', '2015-07-28 15:42:40.866607', NULL, NULL)
2245
+  (0.2ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_id","author_type") VALUES (4, 'The life of Pi', 'the-life-of-pi', 'The Life of Pi
2246
+ ==========
2247
+
2248
+ An interesting film', '2015-07-29 08:47:42.060382', '2015-07-29 09:13:34.479454', NULL, NULL)
2249
+  (0.2ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_id","author_type") VALUES (5, 'Demo for Chris', 'demo-for-chris', 'This is a demo for Chris
2250
+ =================
2251
+
2252
+ I can add lists:
2253
+
2254
+ * one
2255
+ * two', '2015-07-29 08:59:17.897342', '2015-07-29 08:59:17.897342', NULL, NULL)
2256
+  (6.8ms) DROP TABLE "help_engine_help_pages"
2257
+  (0.4ms) CREATE TABLE "help_engine_help_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_type" varchar)
2258
+  (0.2ms)  SELECT sql
2259
+ FROM sqlite_master
2260
+ WHERE name='tindex_ahelp_engine_help_pages_on_author_type_and_author_id' AND type='index'
2261
+ UNION ALL
2262
+ SELECT sql
2263
+ FROM sqlite_temp_master
2264
+ WHERE name='tindex_ahelp_engine_help_pages_on_author_type_and_author_id' AND type='index'
2265
+ 
2266
+  (0.2ms) CREATE INDEX "index_help_engine_help_pages_on_author_type_and_author_id" ON "help_engine_help_pages" ("author_type")
2267
+  (0.1ms) SELECT * FROM "ahelp_engine_help_pages"
2268
+  (0.1ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (2, 'Foo', 'foo', 'Foo Bar
2269
+ =======
2270
+ This is some content', '2015-07-28 15:12:32.222516', '2015-07-28 15:22:49.142618', NULL)
2271
+  (0.1ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (3, 'Bar', 'bar', 'This
2272
+ ====
2273
+
2274
+ Is the end of the world
2275
+
2276
+ * One
2277
+ * Two
2278
+
2279
+ - Thee
2280
+ - Four', '2015-07-28 15:25:17.777795', '2015-07-28 15:42:40.866607', NULL)
2281
+  (0.2ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (4, 'The life of Pi', 'the-life-of-pi', 'The Life of Pi
2282
+ ==========
2283
+
2284
+ An interesting film', '2015-07-29 08:47:42.060382', '2015-07-29 09:13:34.479454', NULL)
2285
+  (0.2ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (5, 'Demo for Chris', 'demo-for-chris', 'This is a demo for Chris
2286
+ =================
2287
+
2288
+ I can add lists:
2289
+
2290
+ * one
2291
+ * two', '2015-07-29 08:59:17.897342', '2015-07-29 08:59:17.897342', NULL)
2292
+  (1.1ms) DROP TABLE "ahelp_engine_help_pages"
2293
+  (0.2ms) CREATE TEMPORARY TABLE "ahelp_engine_help_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL, "author_type" varchar) 
2294
+  (0.1ms) SELECT sql
2295
+ FROM sqlite_master
2296
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2297
+ UNION ALL
2298
+ SELECT sql
2299
+ FROM sqlite_temp_master
2300
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2301
+
2302
+  (0.2ms) CREATE INDEX "tindex_ahelp_engine_help_pages_on_author_type_and_author_id" ON "ahelp_engine_help_pages" ("author_type")
2303
+  (0.1ms) SELECT * FROM "help_engine_help_pages"
2304
+  (0.1ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (2, 'Foo', 'foo', 'Foo Bar
2305
+ =======
2306
+ This is some content', '2015-07-28 15:12:32.222516', '2015-07-28 15:22:49.142618', NULL)
2307
+  (0.2ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (3, 'Bar', 'bar', 'This
2308
+ ====
2309
+
2310
+ Is the end of the world
2311
+
2312
+ * One
2313
+ * Two
2314
+
2315
+ - Thee
2316
+ - Four', '2015-07-28 15:25:17.777795', '2015-07-28 15:42:40.866607', NULL)
2317
+  (0.1ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (4, 'The life of Pi', 'the-life-of-pi', 'The Life of Pi
2318
+ ==========
2319
+
2320
+ An interesting film', '2015-07-29 08:47:42.060382', '2015-07-29 09:13:34.479454', NULL)
2321
+  (0.1ms) INSERT INTO "ahelp_engine_help_pages" ("id","name","slug","content","created_at","updated_at","author_type") VALUES (5, 'Demo for Chris', 'demo-for-chris', 'This is a demo for Chris
2322
+ =================
2323
+
2324
+ I can add lists:
2325
+
2326
+ * one
2327
+ * two', '2015-07-29 08:59:17.897342', '2015-07-29 08:59:17.897342', NULL)
2328
+  (1.2ms) DROP TABLE "help_engine_help_pages"
2329
+  (3.4ms) CREATE TABLE "help_engine_help_pages" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "slug" varchar, "content" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
2330
+  (0.1ms)  SELECT sql
2331
+ FROM sqlite_master
2332
+ WHERE name='tindex_ahelp_engine_help_pages_on_author_type_and_author_id' AND type='index'
2333
+ UNION ALL
2334
+ SELECT sql
2335
+ FROM sqlite_temp_master
2336
+ WHERE name='tindex_ahelp_engine_help_pages_on_author_type_and_author_id' AND type='index'
2337
+ 
2338
+  (0.1ms) SELECT * FROM "ahelp_engine_help_pages"
2339
+  (0.1ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at") VALUES (2, 'Foo', 'foo', 'Foo Bar
2340
+ =======
2341
+ This is some content', '2015-07-28 15:12:32.222516', '2015-07-28 15:22:49.142618')
2342
+  (0.1ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at") VALUES (3, 'Bar', 'bar', 'This
2343
+ ====
2344
+
2345
+ Is the end of the world
2346
+
2347
+ * One
2348
+ * Two
2349
+
2350
+ - Thee
2351
+ - Four', '2015-07-28 15:25:17.777795', '2015-07-28 15:42:40.866607')
2352
+  (0.1ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at") VALUES (4, 'The life of Pi', 'the-life-of-pi', 'The Life of Pi
2353
+ ==========
2354
+
2355
+ An interesting film', '2015-07-29 08:47:42.060382', '2015-07-29 09:13:34.479454')
2356
+  (0.1ms) INSERT INTO "help_engine_help_pages" ("id","name","slug","content","created_at","updated_at") VALUES (5, 'Demo for Chris', 'demo-for-chris', 'This is a demo for Chris
2357
+ =================
2358
+
2359
+ I can add lists:
2360
+
2361
+ * one
2362
+ * two', '2015-07-29 08:59:17.897342', '2015-07-29 08:59:17.897342')
2363
+  (0.4ms) DROP TABLE "ahelp_engine_help_pages"
2364
+ SQL (1.1ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20150729102332"]]
2365
+  (132.7ms) commit transaction
2366
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2367
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2368
+ Migrating to AddAuthorToHelpPages (20150729102332)
2369
+  (0.1ms) begin transaction
2370
+  (3.6ms) ALTER TABLE "help_engine_help_pages" ADD "author_id" integer
2371
+  (0.2ms) ALTER TABLE "help_engine_help_pages" ADD "author_type" varchar
2372
+  (0.1ms) select sqlite_version(*)
2373
+  (1.5ms) CREATE INDEX "index_help_engine_help_pages_on_author_type_and_author_id" ON "help_engine_help_pages" ("author_type", "author_id")
2374
+  (0.2ms)  SELECT sql
2375
+ FROM sqlite_master
2376
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2377
+ UNION ALL
2378
+ SELECT sql
2379
+ FROM sqlite_temp_master
2380
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2381
+ 
2382
+  (0.2ms) CREATE INDEX "index_help_engine_help_pages_on_slug" ON "help_engine_help_pages" ("slug")
2383
+ SQL (5.9ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150729102332"]]
2384
+  (236.7ms) commit transaction
2385
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2386
+  (0.2ms) SELECT sql
2387
+ FROM sqlite_master
2388
+ WHERE name='index_help_engine_help_pages_on_slug' AND type='index'
2389
+ UNION ALL
2390
+ SELECT sql
2391
+ FROM sqlite_temp_master
2392
+ WHERE name='index_help_engine_help_pages_on_slug' AND type='index'
2393
+
2394
+  (1.1ms)  SELECT sql
2395
+ FROM sqlite_master
2396
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2397
+ UNION ALL
2398
+ SELECT sql
2399
+ FROM sqlite_temp_master
2400
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2401
+ 
2402
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2403
+ Migrating to CreateUsers (20150729103806)
2404
+  (0.1ms) begin transaction
2405
+  (4.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2406
+ SQL (11.6ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150729103806"]]
2407
+  (150.0ms) commit transaction
2408
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2409
+  (0.3ms)  SELECT sql
2410
+ FROM sqlite_master
2411
+ WHERE name='index_help_engine_help_pages_on_slug' AND type='index'
2412
+ UNION ALL
2413
+ SELECT sql
2414
+ FROM sqlite_temp_master
2415
+ WHERE name='index_help_engine_help_pages_on_slug' AND type='index'
2416
+ 
2417
+  (0.2ms) SELECT sql
2418
+ FROM sqlite_master
2419
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2420
+ UNION ALL
2421
+ SELECT sql
2422
+ FROM sqlite_temp_master
2423
+ WHERE name='index_help_engine_help_pages_on_author_type_and_author_id' AND type='index'
2424
+
2425
+
2426
+
2427
+ Started GET "/help" for 127.0.0.1 at 2015-07-29 12:28:39 +0100
2428
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2429
+ Processing by HelpEngine::HelpPagesController#index as HTML
2430
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2431
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (37.3ms)
2432
+ Completed 200 OK in 1337ms (Views: 1215.0ms | ActiveRecord: 1.3ms)
2433
+
2434
+
2435
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 12:28:42 +0100
2436
+
2437
+
2438
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 12:28:42 +0100
2439
+
2440
+
2441
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 12:28:42 +0100
2442
+
2443
+
2444
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 12:28:42 +0100
2445
+
2446
+
2447
+ Started GET "/assets/application.self-fb28094035fc8f155b896e47c199355db7c84fc9d6214ed9800f1022ac2ece52.js?body=1" for 127.0.0.1 at 2015-07-29 12:28:42 +0100
2448
+
2449
+
2450
+ Started GET "/help/pages/the-life-of-pi" for 127.0.0.1 at 2015-07-29 12:28:47 +0100
2451
+ Processing by HelpEngine::HelpPagesController#show as HTML
2452
+ Parameters: {"id"=>"the-life-of-pi"}
2453
+ HelpEngine::HelpPage Load (0.5ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "the-life-of-pi"]]
2454
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (4.0ms)
2455
+ Completed 200 OK in 351ms (Views: 105.1ms | ActiveRecord: 0.5ms)
2456
+
2457
+
2458
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 12:29:51 +0100
2459
+ Processing by HelpEngine::HelpPagesController#index as HTML
2460
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2461
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (10.0ms)
2462
+ Completed 200 OK in 110ms (Views: 108.8ms | ActiveRecord: 0.4ms)
2463
+
2464
+
2465
+ Started GET "/help/pages/demo-for-chris" for 127.0.0.1 at 2015-07-29 12:30:02 +0100
2466
+ Processing by HelpEngine::HelpPagesController#show as HTML
2467
+ Parameters: {"id"=>"demo-for-chris"}
2468
+ HelpEngine::HelpPage Load (7.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "demo-for-chris"]]
2469
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (17.2ms)
2470
+ Completed 200 OK in 115ms (Views: 104.8ms | ActiveRecord: 7.2ms)
2471
+
2472
+
2473
+ Started GET "/" for 127.0.0.1 at 2015-07-29 12:31:44 +0100
2474
+ Processing by HomeController#index as HTML
2475
+ HelpEngine::HelpPage Exists (0.3ms) SELECT 1 AS one FROM "help_engine_help_pages" LIMIT 1
2476
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
2477
+ CACHE (0.0ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1
2478
+ Rendered home/index.html.erb within layouts/application (234.1ms)
2479
+ Completed 200 OK in 316ms (Views: 314.8ms | ActiveRecord: 0.6ms)
2480
+
2481
+
2482
+ Started GET "/help/" for 127.0.0.1 at 2015-07-29 12:31:47 +0100
2483
+ Processing by HelpEngine::HelpPagesController#index as HTML
2484
+ HelpEngine::HelpPage Load (11.9ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2485
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (15.1ms)
2486
+ Completed 200 OK in 92ms (Views: 79.5ms | ActiveRecord: 11.9ms)
2487
+
2488
+
2489
+ Started GET "/help/pages/bar" for 127.0.0.1 at 2015-07-29 12:35:16 +0100
2490
+ Processing by HelpEngine::HelpPagesController#show as HTML
2491
+ Parameters: {"id"=>"bar"}
2492
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
2493
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.2ms)
2494
+ Completed 200 OK in 132ms (Views: 125.7ms | ActiveRecord: 0.3ms)
2495
+
2496
+
2497
+ Started GET "/help/pages/bar" for 127.0.0.1 at 2015-07-29 12:35:26 +0100
2498
+ Processing by HelpEngine::HelpPagesController#show as HTML
2499
+ Parameters: {"id"=>"bar"}
2500
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
2501
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (1.3ms)
2502
+ Completed 200 OK in 204ms (Views: 196.5ms | ActiveRecord: 0.2ms)
2503
+
2504
+
2505
+ Started GET "/help/pages/bar" for 127.0.0.1 at 2015-07-29 13:40:46 +0100
2506
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2507
+ Processing by HelpEngine::HelpPagesController#show as HTML
2508
+ Parameters: {"id"=>"bar"}
2509
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
2510
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (13.3ms)
2511
+ Completed 200 OK in 2184ms (Views: 1937.6ms | ActiveRecord: 6.3ms)
2512
+
2513
+
2514
+ Started GET "/assets/help_pages.self-491f3808f63dc31936b629c7956605694506b27bf86a93aaf6ce2eb431218b0f.css?body=1" for 127.0.0.1 at 2015-07-29 13:40:50 +0100
2515
+
2516
+
2517
+ Started GET "/assets/home.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for 127.0.0.1 at 2015-07-29 13:40:50 +0100
2518
+
2519
+
2520
+ Started GET "/assets/application.self-dae5c5da7223ce739ad497817a3df9ba2fa2840da302653b11558b4f7d98bfc3.css?body=1" for 127.0.0.1 at 2015-07-29 13:40:51 +0100
2521
+
2522
+
2523
+ Started GET "/assets/jquery.self-4c7649dd655c61cb850cfd2e71f937c3bbf3e3a752a3499ed8bb9884473fe1dd.js?body=1" for 127.0.0.1 at 2015-07-29 13:40:51 +0100
2524
+
2525
+
2526
+ Started GET "/assets/jquery_ujs.self-6ab23e892e77da88e18858a9137d4243a9f157d7c8457bfd489a4f931e6df840.js?body=1" for 127.0.0.1 at 2015-07-29 13:40:51 +0100
2527
+
2528
+
2529
+ Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for 127.0.0.1 at 2015-07-29 13:40:51 +0100
2530
+
2531
+
2532
+ Started GET "/assets/home.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for 127.0.0.1 at 2015-07-29 13:40:51 +0100
2533
+
2534
+
2535
+ Started DELETE "/help/pages/bar" for 127.0.0.1 at 2015-07-29 13:40:58 +0100
2536
+ Processing by HelpEngine::HelpPagesController#destroy as HTML
2537
+ Parameters: {"authenticity_token"=>"C5WhU+tsaFJ9gBgG5wTPP0NHqcpM1k9/BgDGVCMjpifn3kSWmAczQpJxo9zhMIUToah9MeXV9gqj6uN9+Ltt8Q==", "id"=>"bar"}
2538
+ HelpEngine::HelpPage Load (0.3ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "bar"]]
2539
+  (0.1ms) begin transaction
2540
+ SQL (10.7ms) DELETE FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? [["id", 3]]
2541
+  (159.9ms) commit transaction
2542
+ Redirected to http://localhost:3000/help/pages
2543
+ Completed 302 Found in 193ms (ActiveRecord: 171.0ms)
2544
+
2545
+
2546
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 13:40:58 +0100
2547
+ Processing by HelpEngine::HelpPagesController#index as HTML
2548
+ HelpEngine::HelpPage Load (3.1ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2549
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (8.8ms)
2550
+ Completed 200 OK in 125ms (Views: 121.6ms | ActiveRecord: 3.1ms)
2551
+
2552
+
2553
+ Started GET "/help/pages/foo" for 127.0.0.1 at 2015-07-29 14:16:48 +0100
2554
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
2555
+ Processing by HelpEngine::HelpPagesController#show as HTML
2556
+ Parameters: {"id"=>"foo"}
2557
+ HelpEngine::HelpPage Load (0.7ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
2558
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/show.html.erb within layouts/help_engine/application (80.7ms)
2559
+ Completed 200 OK in 1572ms (Views: 1323.4ms | ActiveRecord: 4.9ms)
2560
+
2561
+
2562
+ Started DELETE "/help/pages/foo" for 127.0.0.1 at 2015-07-29 14:16:59 +0100
2563
+ Processing by HelpEngine::HelpPagesController#destroy as HTML
2564
+ Parameters: {"authenticity_token"=>"4PW6N5UEiAkl6mvWyKUaD4PRVoBuFPVWLsmaBq7FtqgMvl/y5m/TGcob0AzOkVAjYT6Ce8cXTCOLI78vdV19fg==", "id"=>"foo"}
2565
+ HelpEngine::HelpPage Load (0.2ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."slug" = ? ORDER BY "help_engine_help_pages"."id" ASC LIMIT 1 [["slug", "foo"]]
2566
+  (0.1ms) begin transaction
2567
+ SQL (8.0ms) DELETE FROM "help_engine_help_pages" WHERE "help_engine_help_pages"."id" = ? [["id", 2]]
2568
+  (131.1ms) commit transaction
2569
+ Redirected to http://localhost:3000/help/pages
2570
+ Completed 302 Found in 155ms (ActiveRecord: 139.5ms)
2571
+
2572
+
2573
+ Started GET "/help/pages" for 127.0.0.1 at 2015-07-29 14:16:59 +0100
2574
+ Processing by HelpEngine::HelpPagesController#index as HTML
2575
+ HelpEngine::HelpPage Load (0.4ms) SELECT "help_engine_help_pages".* FROM "help_engine_help_pages"
2576
+ Rendered /home/rob/web/help_engine/app/views/help_engine/help_pages/index.html.erb within layouts/help_engine/application (17.5ms)
2577
+ Completed 200 OK in 152ms (Views: 151.4ms | ActiveRecord: 0.4ms)