rake_dashboard 0.0.0 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (217) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +8 -0
  3. data/README.md +13 -1
  4. data/Rakefile +12 -0
  5. data/app/assets/javascripts/rake_dashboard/application.js +15 -0
  6. data/app/controllers/rake_dashboard/tasks_controller.rb +18 -0
  7. data/app/views/layouts/rake_dashboard/application.html.erb +0 -1
  8. data/app/views/rake_dashboard/tasks/create.html.erb +2 -0
  9. data/app/views/rake_dashboard/tasks/index.html.erb +5 -0
  10. data/config/routes.rb +1 -0
  11. data/lib/rake_dashboard/engine.rb +8 -0
  12. data/lib/rake_dashboard/version.rb +1 -1
  13. data/lib/rake_dashboard.rb +1 -1
  14. data/rake_dashboard.gemspec +9 -0
  15. data/spec/controllers/rake_dashboard/tasks_controller_spec.rb +58 -0
  16. data/spec/dummy/README.rdoc +28 -0
  17. data/spec/dummy/Rakefile +6 -0
  18. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  19. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  20. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  21. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  22. data/spec/dummy/app/views/layouts/application.html.erb +14 -0
  23. data/spec/dummy/bin/bundle +3 -0
  24. data/spec/dummy/bin/rails +4 -0
  25. data/spec/dummy/bin/rake +4 -0
  26. data/spec/dummy/config/application.rb +29 -0
  27. data/spec/dummy/config/boot.rb +5 -0
  28. data/spec/dummy/config/database.yml +9 -0
  29. data/spec/dummy/config/environment.rb +5 -0
  30. data/spec/dummy/config/environments/development.rb +35 -0
  31. data/spec/dummy/config/environments/production.rb +80 -0
  32. data/spec/dummy/config/environments/test.rb +39 -0
  33. data/spec/dummy/config/initializers/assets.rb +1 -0
  34. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/spec/dummy/config/initializers/inflections.rb +16 -0
  38. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  39. data/spec/dummy/config/initializers/rake_dashboard.rb +2 -0
  40. data/spec/dummy/config/initializers/session_store.rb +3 -0
  41. data/spec/dummy/config/initializers/wrap_parameters.rb +9 -0
  42. data/spec/dummy/config/locales/en.yml +23 -0
  43. data/spec/dummy/config/routes.rb +4 -0
  44. data/spec/dummy/config/secrets.yml +22 -0
  45. data/spec/dummy/config.ru +4 -0
  46. data/spec/dummy/db/schema.rb +16 -0
  47. data/spec/dummy/log/development.log +1934 -0
  48. data/spec/dummy/log/test.log +1142 -0
  49. data/spec/dummy/public/404.html +67 -0
  50. data/spec/dummy/public/422.html +67 -0
  51. data/spec/dummy/public/500.html +66 -0
  52. data/spec/dummy/public/favicon.ico +0 -0
  53. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/1_uRTMF1qdhm0NfH13c44aB9C8IojJ8eDX35ZpU_xmc.cache +1 -0
  54. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/1tzYgfK3EyahT7c_wktVg_ftw1FmbvmNBjAYE0On1ms.cache +0 -0
  55. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/2mentctqRHPrTMh2ayd3pCIpaBOXEkbsLC8NWbMUcns.cache +0 -0
  56. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/3wqRoT7Y7y0ZRF-UZ_n0BsEHiZiLrlstno6OjeB7jm4.cache +1 -0
  57. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/4NC6Q__oC78YwPILhWAefTesbA-VruoXWvC89VWQxAc.cache +0 -0
  58. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/5AsV8ZpqRg_erO00OjXFzsR8VaPfS2htMfxKFj6_X2s.cache +0 -0
  59. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/5LHEU13LEDdnW1_y9Em8i6mJsLRHiPOPXs3vOYjIDsU.cache +0 -0
  60. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/5q3-mxYHRoel0-ehe-1YaNVj0c3eH9H6acyapWSF4-k.cache +1 -0
  61. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/69M7KPgxBb2l5ViiypGvL4sGCCgGscRHP83InCevn54.cache +0 -0
  62. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/7dvgF4AFR79Z-5gIIj3tnHl_aXhK4FqjNboym2RvZT4.cache +1 -0
  63. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/9CO4VOFnf3epuDMW2iGAWgfN77AL4GhpzQZhg-EA8xU.cache +2 -0
  64. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/9apsxoxyPXA4KHYSCWMkJPa0Jn1PA7sKxrl9gzYIZrw.cache +1 -0
  65. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/9i63zTmp5aIutD2dcfXTernJnkbun2_7RHyuXJDq7yg.cache +0 -0
  66. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/9o9gmbTOdtNcknjXXgxUlQ5fFnG45EQ1hVxTA5rm3gQ.cache +0 -0
  67. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/BFGxRhNvl0lvwqwEeXcYYudd9yfONffZH2SD_9JlNA0.cache +0 -0
  68. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/BS_3zbkLcpeQfRylCsQzPh55Prifwp-kht7X6JagPqE.cache +0 -0
  69. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/Cu88jy94xLELDIDHgESLEjAfbqQSDf42eRYHQ7uhae4.cache +1 -0
  70. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/DS7Arza-EKgmMDzkblX0jZmgQFacCxepksyMGepmyeU.cache +2 -0
  71. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/DWAbczNDZ606_Yvis7zgmCoVCQ-U1LyI7n9X3Oar45w.cache +0 -0
  72. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/DkJ2a2bYVxLGiKFOVAFDeZWcmh9VmP_6zaNPHJ982V0.cache +1 -0
  73. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/EWMqKCvPtPOB8pFKZDFI0mSNKdYdLyepGa-wrh212_Y.cache +0 -0
  74. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/EfR9Kc-4cqeRXfG5UWI6Fvg2ChhNo2Wt7LRrmendYAY.cache +1 -0
  75. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/Fa2DCdkKel9Xl9fakpdJeDGkTEAWdid5p6g5M1mvvB0.cache +0 -0
  76. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/Fm6txCmD2PR18cnGC5VNlrnKtW0b5RlM-Sn_5UkOCwA.cache +0 -0
  77. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/G0XC_iSBFIaifGe_zKg80z0YBAVu9rN3l98ehVRkWOY.cache +0 -0
  78. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/GLOPoCP-9TDOqRr-aUh3jVLWtzRzeorVoynRKcQtkVs.cache +0 -0
  79. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/HZ4JR3eccRe0rh_9itklrCJarbGHls0C1DrQCi7xoHQ.cache +1 -0
  80. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/I6bj_0DeAKTyfgwj-2BnLi3Nf5fQAjPeshmrW3jmDqo.cache +1 -0
  81. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/IQPcs9figw_VWp_PSwNbcchISsCafffnTqef0db4RL0.cache +0 -0
  82. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/JO-4-E7B52b1VBQMghbRZAAXu9H4m3Hz9LsgkL81qn0.cache +2 -0
  83. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/Jgb2NbKCoFDstFMEs6h-F9cVpeCwTru7TmyPQsVVeHE.cache +0 -0
  84. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/KLcBiVuopNHslcW6OJm1qQbecOGCd6SdvCzU_saj8Ok.cache +1 -0
  85. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/LWGFoez040y0w5XCBLg4fGZuYwMYxW_pffiGmrViSw8.cache +0 -0
  86. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/N0dIQR81xBm3YpUbQ-vTtsIKjVXXib0RJus9Xw4xO3c.cache +0 -0
  87. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/NeHqHolWGoz6piZ3B3avWjYCTi5sWz6E3ri3ZkTfTSY.cache +1 -0
  88. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/OC-j8KMe0yy0o0lPx8zDHjeKfCjIeIfKHuZGpwzlAJ0.cache +1 -0
  89. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/OhjdxwyRujKkDZuT681R6BheB1K8zHm5zR5QWyVpycU.cache +1 -0
  90. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/PC1fyZSBkwCMU3krlSoOqeZHUXPhJEI9DI9I39rDHgU.cache +0 -0
  91. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/PHZgerTfoqLgAKYM25o-gvEYvWlGDu6IaDaQo24y2K8.cache +0 -0
  92. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/PQYSwGO8tICbv-9J6pTJ2A04pty7dgwyT00vnT-Is3Q.cache +0 -0
  93. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/QNNRUIqJjqJ8r9yjyiiWuPt-2X2gAb3k8fsaV8_U4K0.cache +0 -0
  94. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/QXOHnOVD0vlHgFklet_ucI8mfOARKZXeOI8WGoAgA_0.cache +1 -0
  95. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/RCI3zi6Re0BwFPEZ_yIIHCDWKdKt6cB813OQVeVM1vQ.cache +1 -0
  96. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/RUt2mqwOfVHAAYJzfxzaeQtuymfLuZW9OwDy2rvDALs.cache +2 -0
  97. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/SqsUiKZIC9yRkSPE92oMGc0oKTIInBSRzcWTB8sj6aE.cache +2 -0
  98. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/T505ikyD4wYDM5-vrZbV_mFUOUJIC-xEr99n6qan_38.cache +1 -0
  99. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/UHZrZXQSFdROxPisyaS7bPUxrju7PApsoRIBW9pSJfA.cache +0 -0
  100. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/UVOGCQtmBivkNrdbw3liWQP2xnd8LYk18hgtBk3s8_g.cache +0 -0
  101. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/VaDG45LFcvjWemLKyjsdbUK_FdNgO_SVJnNXuABnCx4.cache +0 -0
  102. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/YmVUFA3cNsFPg5yoK9nV8YcShQLeBf_yqImn3axbTP4.cache +0 -0
  103. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/YypSmpGQYT7gQ7gJauS9ThYEjGQL5GOpyffVnAlG8b8.cache +0 -0
  104. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/Yz4ZnIndW0d0-itVFFAswe76UlMnAeJqhTJMJ6xAg-k.cache +1 -0
  105. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/ZSxd0OjYhrmvkkRnCDVamAsEEyq5Gkjyuh_2_CM5rIA.cache +0 -0
  106. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/_K99yM6IXlMTLolJN4PjdkioHZAqZOlsMrHvgAQF9HY.cache +2 -0
  107. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/art25l9VV5KNDIkjuxvHZAjmQBFwJ93vLaV7C8-xw8E.cache +1 -0
  108. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/b54l2cq8YL_vUQ8p_UnTyJ-XXvNqvWpPWeVIRwbJcp8.cache +2 -0
  109. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/bBNoddp81xM1RouUsrdBaY1lYSXhVkz_0n2rzybH42s.cache +1 -0
  110. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/bhuQcvbDfo8D2gAHnP7rf-pgdboitvp5jdoSYuq423c.cache +1 -0
  111. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/c1Qe4NIRvR6qrsmeweb01j2WQcZV33WFrmleOEB4dWE.cache +0 -0
  112. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/dVbsKbWUL7hzVhOLpS4fLgHpAe0cWB1Qh5eGAhkS2Yg.cache +0 -0
  113. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/dbFiXXd7FjIwT4p9qeOgulpop4xc4A1Oh8flTXpjp8U.cache +1 -0
  114. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/duNW3etH2ZRdbCtiVgUePfgScy6EYtJW6ePMm_7sASk.cache +1 -0
  115. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/eYmPvFbieaaBf6pePdOvc5FLyO-ZTZY8Mxr6ojPaVZI.cache +1 -0
  116. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/fAnowVwOC4H0Hg4Dij_qwmAY9qaLwbFObDgSIN7Ial8.cache +1 -0
  117. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/fujguFxr6MM0ugfwpguNUFa8iHMgcQKziOc9VUb0BZo.cache +1 -0
  118. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/g2WIjBmc_IDdb9a9UdVADZA6qHxaDA4agqXDbXz3Pfk.cache +0 -0
  119. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/gSIg2CgDumyQtupyBw6LckGenypBbWXWsv90P10hIPc.cache +0 -0
  120. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/hH4_wzis0JdQZ16vIil7gYVEnPkZzq3jC7ZOjmRmvEU.cache +0 -0
  121. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/jPB0OIkM8apkjpgm_AdGZPqqP6sny-qu1fUypj1z1sM.cache +1 -0
  122. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/jY_QPMjgPkzhW09D79b670gvDqZ0_guQqjU7QvJHJxo.cache +1 -0
  123. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/jjbJX3WgONpz4q0zNU-mvb9Cx8KQ6xqi1BvboUjD5hk.cache +1 -0
  124. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/k3JqUmtzWO1IdgMZL1U3Bknk6PMa5k11KYO-XfRjNI0.cache +1 -0
  125. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/kf63ntYxCA-Sz-nDgyAnmmZ2v9tnkypyxFTzXRVQh1w.cache +3 -0
  126. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/kgHURa7WJqwC3E55X7TIJFVBnJ4R0KcHoZrRgINPu_M.cache +1 -0
  127. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/kn-yLNqSzm9pErMlmm4d2mhXvirFT8YNdBuL9U75W5Q.cache +1 -0
  128. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/laNrzOJYlJr31epcg2dd42hHicZpYPrpFkCq9crbRgM.cache +2 -0
  129. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/lnR-ycD5bbpmJNAywyP-IV7cc0F8dYUpnTG-408_cd8.cache +0 -0
  130. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/o3PzIqze6hKMAqMzFXpRI60VMsfkgz3mYQrSfDI0LME.cache +0 -0
  131. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/oANhgADzh7JWi0TDinY1E1x8uLarSX2tPhVWLF_hWEk.cache +0 -0
  132. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/oTbNlyzGSlP_6wpWjuNnEF0KKB2ZP6QkR5a3yRNfpRk.cache +0 -0
  133. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/qAyCW52FLWf-spWbdN20_TjnFB-E3QHPIeZXY4YEASE.cache +1 -0
  134. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/qXzvFOSCQ3uXsdAGTLIO2ob_gFiZo3JRO6e6qtNFW1s.cache +1 -0
  135. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/qeVL4vuYT_lsVzhWJDtHJ_ZDp4tcKWUPWaGzjoL4xx8.cache +2 -0
  136. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/r1pZal6Wgtlexb9AjK77yXEZ7MOZZ0aDU2moz8puVcQ.cache +1 -0
  137. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/r2EDJk3sPqm7ni3mnuazHtAliNrEN-6_2UB0iDMW6eQ.cache +0 -0
  138. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/uXmelRFRZanaW_GtHW1SW1dbbT3ekCg4ZOleT46Ow9I.cache +0 -0
  139. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/wX5WDpT1AGkCsopuI8rGQdkfsO0cSA9HkR2qFoxkjC4.cache +0 -0
  140. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/wYTIUWOcVHoa1DPlUeZZocDA3u7a0jny9NYEswrprHk.cache +1 -0
  141. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/wn5lckq6uLlequgU4zRyZFjeOIL6pJSFtx3IZWLJxYA.cache +1 -0
  142. data/spec/dummy/tmp/cache/assets/development/sprockets/v3.0/x-I2bp6m4yXCk9LKf9G0bwV5M4sebCc11GB3xWfmmf0.cache +0 -0
  143. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/-OzdtYYdYTgp13Wl0KKdEaCoGj5IRQXJFwoCPEbSX84.cache +1 -0
  144. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/1_uRTMF1qdhm0NfH13c44aB9C8IojJ8eDX35ZpU_xmc.cache +1 -0
  145. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/1aC7nZf32CISGqB4UJVPTM1kibEFKPyVfW8s4LQSkmg.cache +0 -0
  146. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/27lFGcUvBEhwnejXOGwD8iloDJRMDimv69Zzxt5__zE.cache +0 -0
  147. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/2mentctqRHPrTMh2ayd3pCIpaBOXEkbsLC8NWbMUcns.cache +0 -0
  148. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/31MYte91XFoHCqL75hAk6wLzZdBv8DdArdJzLBo9-T0.cache +0 -0
  149. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/3CPSTeWU_Odqk1R-N4vGT7T5nd8BPOlKFVe9cmeDOJg.cache +0 -0
  150. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/7JHRC3HDItpC8ooMUzFbR-6xQVdaLgbh9N0K2FdoZmg.cache +1 -0
  151. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/8EqF0luPCaGSBmyN62d3A7dxwThVXsxrCchhU8AH1OY.cache +1 -0
  152. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/A5QhApjpZmgeCNFI5TwXz-f_XZJwSGxAVro8l-32drs.cache +0 -0
  153. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/BS_3zbkLcpeQfRylCsQzPh55Prifwp-kht7X6JagPqE.cache +0 -0
  154. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/BlZalhW1pvbVa4dLWfYTCCGKKnDHp60pMATEtcFt8Fs.cache +1 -0
  155. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Cu88jy94xLELDIDHgESLEjAfbqQSDf42eRYHQ7uhae4.cache +1 -0
  156. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/D-n5JOV8jDYrPxdc0QRYxT1hhMUiiwz6mda_wHuejHU.cache +0 -0
  157. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/DS7Arza-EKgmMDzkblX0jZmgQFacCxepksyMGepmyeU.cache +0 -0
  158. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/DdV4JI8ezxAtzGhdAxikwv5rYRZd5OtSbiHJSbVZkH0.cache +0 -0
  159. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EfR9Kc-4cqeRXfG5UWI6Fvg2ChhNo2Wt7LRrmendYAY.cache +1 -0
  160. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/EsWMRMQj1SaRL3vmBr-yvpimazVDAAIRBu-IrhOeepM.cache +1 -0
  161. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Fa2DCdkKel9Xl9fakpdJeDGkTEAWdid5p6g5M1mvvB0.cache +7 -0
  162. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Fm6txCmD2PR18cnGC5VNlrnKtW0b5RlM-Sn_5UkOCwA.cache +0 -0
  163. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/G0XC_iSBFIaifGe_zKg80z0YBAVu9rN3l98ehVRkWOY.cache +0 -0
  164. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/HBKJrVmxbXf-qDuWfGdkznhsG3Pg-ltHUBi89JGjsEs.cache +1 -0
  165. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/HZQ3gEKukYO997-udsSaVW5qYN6KLFspHgcTZLg8tmc.cache +0 -0
  166. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/JO-4-E7B52b1VBQMghbRZAAXu9H4m3Hz9LsgkL81qn0.cache +0 -0
  167. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Jgb2NbKCoFDstFMEs6h-F9cVpeCwTru7TmyPQsVVeHE.cache +0 -0
  168. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/LJbUTYtj58QbWuYRbdLxSB9fs-pi2w8fsqCyk3YhOVg.cache +0 -0
  169. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/LnaCdl4hXjKpoy4q9CmKUvre_lk0g7HgvM55fijQjLg.cache +0 -0
  170. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/NeHqHolWGoz6piZ3B3avWjYCTi5sWz6E3ri3ZkTfTSY.cache +1 -0
  171. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/PC1fyZSBkwCMU3krlSoOqeZHUXPhJEI9DI9I39rDHgU.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/RbHzLNtjxJC8l6cTpoI6lpQ4LN_zUFiy4XU9H2IzZIw.cache +0 -0
  173. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ReFoNL1U5JP23iWpBu3G0PonvI8F4J0wJS5c0E-r0hE.cache +1 -0
  174. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/TA3dIW7QhUFI6N4G0ZVobcnoPxqJDmmk_j5MDwL9IEg.cache +1 -0
  175. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/UHZrZXQSFdROxPisyaS7bPUxrju7PApsoRIBW9pSJfA.cache +0 -0
  176. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/V9Yw6J_FsBpr336KnhPqJngEgav6E4nTmCwMvwgVKEU.cache +1 -0
  177. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/VKln6qQd6IcM-IQFXHolddaICcTNnFBRKimQnYbApso.cache +1 -0
  178. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/WP0iXB5EfOpCk3KbeW1KZ0ySut04QKzO6z5u0SC02Tg.cache +0 -0
  179. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/YrfHCm6375G7xL4mLOtWhTnB8AHqN7DFX-FAjor9UrI.cache +1 -0
  180. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZLP9qFeA8WZtUdkA5iSqHvi149WpoEDQsXAAbyAptBA.cache +1 -0
  181. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ZT2HrX198ov5bTKNlkHlZn3rzfY-BKOFkI7uQdcDHus.cache +1 -0
  182. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/Zr8ZeH3MjCSRKnbkJcICOjNtuadk1LaBcWhdb3RE77o.cache +1 -0
  183. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/auFoICVr1X_tslMUVXuf391lscsgiEwMMNCzGnPCxog.cache +1 -0
  184. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/ax03VMyqyfTCfn3_HdjNfPTnxZvPAEzlhdo6uIUhzFA.cache +0 -0
  185. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/bHEGTDpfb8o_ViqYFKiDlxBpVzAqDUC-g-x8fkF7Uuw.cache +0 -0
  186. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/cMgRvqmeLxgERc8oLKBvEYITDHw0uslno4sIUJcmdJ4.cache +1 -0
  187. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/duNW3etH2ZRdbCtiVgUePfgScy6EYtJW6ePMm_7sASk.cache +1 -0
  188. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/dx1WULLWNfDJ2l05CHsxAniqWsFCsxwxveWqx-XAvtc.cache +0 -0
  189. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/eqrjQis5fJ3-NLD332pyulZZXzs3TtDFeFoWaTiZFFQ.cache +0 -0
  190. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/fujguFxr6MM0ugfwpguNUFa8iHMgcQKziOc9VUb0BZo.cache +1 -0
  191. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/h7bpo08-9Sdo8m-uN3mXTxGaKz2l-5_F_mWFx_7R7Wc.cache +1 -0
  192. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/hIDfsH9UYl36UndcSmnsAmkVBq8g-Uk_ZK2vUPBVwEI.cache +0 -0
  193. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/haFIXUWipIjRjFkTjpaP1RRa-cazsBhsBqp3Nfu-NNM.cache +1 -0
  194. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/k3JqUmtzWO1IdgMZL1U3Bknk6PMa5k11KYO-XfRjNI0.cache +1 -0
  195. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kD2gkJyt1rjxXAjw5JsQJ3a3SEFeKdRVOJtnb4URRLU.cache +0 -0
  196. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kIfC-sRQtAaDfDvJNDfrzj_iKit-mmbg0NpirDMAeLA.cache +0 -0
  197. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/kzM9WfthxwDe-mpTx3xhC5tAmyw40775CMvCG3lDjcg.cache +0 -0
  198. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/l5sJ-tblBgI00DP8GPzBzDuDPFiMy6GYVAmIHwz5smQ.cache +0 -0
  199. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/laNrzOJYlJr31epcg2dd42hHicZpYPrpFkCq9crbRgM.cache +0 -0
  200. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/mv11ATY1ENNrovRsTXYhMWPj8Wdorxg2tzYhkt9_WCI.cache +1 -0
  201. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/oTbNlyzGSlP_6wpWjuNnEF0KKB2ZP6QkR5a3yRNfpRk.cache +0 -0
  202. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/oe0CXBPOIIsPkr6Mz-Fnu-rU236GPhuM1R7tc1ZOOD8.cache +0 -0
  203. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/pkTm5URlzuAmr5hTqnkQjxfSQKfrMX_so8EqrTpR-Fs.cache +0 -0
  204. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/q5aM_tgtCIFudHlKBMFQMsqWCp_dp0u_nQOitS3ugNw.cache +0 -0
  205. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qAyCW52FLWf-spWbdN20_TjnFB-E3QHPIeZXY4YEASE.cache +1 -0
  206. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/qeVL4vuYT_lsVzhWJDtHJ_ZDp4tcKWUPWaGzjoL4xx8.cache +0 -0
  207. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/rHjybxMq5LidcOg3JhHAWGICic_QBHpnAL-42ASrSJ0.cache +1 -0
  208. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/sfXvlCAdXCA2jfrB3L8N0O6MTac5X-odD0Ape64nldU.cache +1 -0
  209. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/vG9B1ZEDDNmQxqGVFHAuAMQI77y3JHFOIRAnKO322G8.cache +1 -0
  210. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/wKz3dpi0fItxLBqt-uuU1iUhKMEs8c5QWk1PJpx6Gwg.cache +1 -0
  211. data/spec/dummy/tmp/cache/assets/test/sprockets/v3.0/yCcqAmvBR313Hf7pQV3e12lVU08CkxCSNc37FtScF8Y.cache +1 -0
  212. data/spec/features/invoke_task_spec.rb +17 -0
  213. data/spec/features/lists_tasks_spec.rb +10 -0
  214. data/spec/rake_dashboard_spec.rb +7 -0
  215. data/spec/spec_helper.rb +23 -0
  216. data/spec/views/rake_dashboard/tasks/index.html.erb_spec.rb +31 -0
  217. metadata +535 -29
@@ -0,0 +1,1142 @@
1
+ Processing by RakeDashboard::TasksController#create as HTML
2
+ Parameters: {"task"=>"secret"}
3
+ Completed 200 OK in 42ms (Views: 41.0ms)
4
+ Processing by RakeDashboard::TasksController#create as HTML
5
+ Parameters: {"task"=>"secret"}
6
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/create.html.erb within layouts/rake_dashboard/application (3.0ms)
7
+ Completed 200 OK in 40ms (Views: 39.0ms)
8
+ Processing by RakeDashboard::TasksController#index as HTML
9
+ Completed 200 OK in 9ms (Views: 9.0ms)
10
+ Processing by RakeDashboard::TasksController#index as HTML
11
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
12
+ Completed 200 OK in 42ms (Views: 41.0ms)
13
+ Processing by RakeDashboard::TasksController#index as HTML
14
+ Completed 200 OK in 7ms (Views: 7.0ms)
15
+ Processing by RakeDashboard::TasksController#create as HTML
16
+ Parameters: {"task"=>"secret"}
17
+ Completed 200 OK in 9ms (Views: 8.0ms)
18
+ Processing by RakeDashboard::TasksController#index as HTML
19
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
20
+ Completed 200 OK in 26ms (Views: 26.0ms)
21
+ Processing by RakeDashboard::TasksController#index as HTML
22
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
23
+ Completed 200 OK in 65ms (Views: 64.0ms)
24
+ Processing by RakeDashboard::TasksController#index as HTML
25
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (3.0ms)
26
+ Completed 200 OK in 64ms (Views: 64.0ms)
27
+ Processing by RakeDashboard::TasksController#index as HTML
28
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (3.0ms)
29
+ Completed 200 OK in 27ms (Views: 27.0ms)
30
+ Processing by RakeDashboard::TasksController#index as HTML
31
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (3.0ms)
32
+ Completed 200 OK in 26ms (Views: 25.0ms)
33
+ Processing by RakeDashboard::TasksController#index as HTML
34
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
35
+ Completed 200 OK in 42ms (Views: 40.0ms)
36
+ Processing by RakeDashboard::TasksController#index as HTML
37
+ Completed 200 OK in 8ms (Views: 8.0ms)
38
+ Processing by RakeDashboard::TasksController#create as HTML
39
+ Parameters: {"task"=>"secret"}
40
+ Completed 200 OK in 8ms (Views: 8.0ms)
41
+ Processing by RakeDashboard::TasksController#index as HTML
42
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
43
+ Completed 200 OK in 42ms (Views: 41.0ms)
44
+ Processing by RakeDashboard::TasksController#create as HTML
45
+ Parameters: {"task"=>"secret"}
46
+ Completed 200 OK in 12ms (Views: 12.0ms)
47
+ Processing by RakeDashboard::TasksController#create as HTML
48
+ Parameters: {"task"=>"secret"}
49
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/create.html.erb within layouts/rake_dashboard/application (3.0ms)
50
+ Completed 200 OK in 39ms (Views: 39.0ms)
51
+ Processing by RakeDashboard::TasksController#index as HTML
52
+ Completed 200 OK in 12ms (Views: 11.0ms)
53
+ Processing by RakeDashboard::TasksController#index as HTML
54
+ Completed 200 OK in 7ms (Views: 6.0ms)
55
+ Processing by RakeDashboard::TasksController#create as HTML
56
+ Parameters: {"task"=>"secret"}
57
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/create.html.erb within layouts/rake_dashboard/application (2.0ms)
58
+ Completed 200 OK in 40ms (Views: 40.0ms)
59
+ Processing by RakeDashboard::TasksController#index as HTML
60
+ Completed 200 OK in 11ms (Views: 10.0ms)
61
+ Processing by RakeDashboard::TasksController#index as HTML
62
+ Completed 200 OK in 6ms (Views: 5.0ms)
63
+ Processing by RakeDashboard::TasksController#create as HTML
64
+ Parameters: {"task"=>"secret"}
65
+ Completed 200 OK in 28ms (Views: 28.0ms)
66
+ Processing by RakeDashboard::TasksController#index as HTML
67
+ Completed 200 OK in 12ms (Views: 11.0ms)
68
+ Processing by RakeDashboard::TasksController#index as HTML
69
+ Completed 200 OK in 7ms (Views: 7.0ms)
70
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (5.0ms)
71
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (5.0ms)
72
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (4.0ms)
73
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (6.0ms)
74
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (6.0ms)
75
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (7.0ms)
76
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (5.0ms)
77
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (31.0ms)
78
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (45.0ms)
79
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (44.0ms)
80
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (55.0ms)
81
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (44.0ms)
82
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (47.0ms)
83
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (44.0ms)
84
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (254.0ms)
85
+ Processing by RakeDashboard::TasksController#index as HTML
86
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
87
+ Completed 200 OK in 40ms (Views: 38.0ms)
88
+ Processing by RakeDashboard::TasksController#index as HTML
89
+ Completed 200 OK in 8ms (Views: 7.0ms)
90
+ Processing by RakeDashboard::TasksController#create as HTML
91
+ Parameters: {"task"=>"secret"}
92
+ Completed 200 OK in 9ms (Views: 7.0ms)
93
+ Processing by RakeDashboard::TasksController#create as HTML
94
+ Parameters: {"task"=>"secret"}
95
+ Completed 200 OK in 5ms (Views: 5.0ms)
96
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (142.0ms)
97
+ Processing by RakeDashboard::TasksController#create as HTML
98
+ Parameters: {"task"=>"secret"}
99
+ Completed 200 OK in 11ms (Views: 10.0ms)
100
+ Processing by RakeDashboard::TasksController#create as HTML
101
+ Parameters: {"task"=>"secret"}
102
+ Completed 200 OK in 5ms (Views: 5.0ms)
103
+ Processing by RakeDashboard::TasksController#index as HTML
104
+ Completed 200 OK in 11ms (Views: 10.0ms)
105
+ Processing by RakeDashboard::TasksController#index as HTML
106
+ Completed 200 OK in 4ms (Views: 4.0ms)
107
+ Processing by RakeDashboard::TasksController#create as HTML
108
+ Parameters: {"task"=>"secret"}
109
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/create.html.erb within layouts/rake_dashboard/application (2.0ms)
110
+ Completed 200 OK in 26ms (Views: 23.0ms)
111
+ Processing by RakeDashboard::TasksController#create as HTML
112
+ Parameters: {"task"=>"secret"}
113
+ Completed 200 OK in 8ms (Views: 7.0ms)
114
+ Processing by RakeDashboard::TasksController#create as HTML
115
+ Parameters: {"task"=>"secret"}
116
+ Completed 200 OK in 6ms (Views: 5.0ms)
117
+ Processing by RakeDashboard::TasksController#index as HTML
118
+ Completed 200 OK in 8ms (Views: 7.0ms)
119
+ Processing by RakeDashboard::TasksController#index as HTML
120
+ Completed 200 OK in 7ms (Views: 6.0ms)
121
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (114.0ms)
122
+ Processing by RakeDashboard::TasksController#create as HTML
123
+ Parameters: {"task"=>"secret"}
124
+ Completed 200 OK in 15ms (Views: 3.0ms)
125
+ Processing by RakeDashboard::TasksController#create as HTML
126
+ Parameters: {"task"=>"secret"}
127
+ Completed 200 OK in 4ms (Views: 1.0ms)
128
+ Processing by RakeDashboard::TasksController#create as HTML
129
+ Parameters: {"task"=>"secret"}
130
+ Completed 200 OK in 4ms (Views: 1.0ms)
131
+ Processing by RakeDashboard::TasksController#index as HTML
132
+ Completed 200 OK in 10ms (Views: 10.0ms)
133
+ Processing by RakeDashboard::TasksController#index as HTML
134
+ Completed 200 OK in 6ms (Views: 5.0ms)
135
+ Processing by RakeDashboard::TasksController#create as HTML
136
+ Parameters: {"task"=>"secret"}
137
+ Rendered text template (0.0ms)
138
+ Completed 200 OK in 19ms (Views: 12.0ms)
139
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (109.0ms)
140
+ Processing by RakeDashboard::TasksController#create as HTML
141
+ Parameters: {"task"=>"secret"}
142
+ Completed 200 OK in 16ms (Views: 3.0ms)
143
+ Processing by RakeDashboard::TasksController#create as HTML
144
+ Parameters: {"task"=>"secret"}
145
+ Completed 200 OK in 3ms (Views: 1.0ms)
146
+ Processing by RakeDashboard::TasksController#create as HTML
147
+ Parameters: {"task"=>"secret"}
148
+ Completed 200 OK in 4ms (Views: 1.0ms)
149
+ Processing by RakeDashboard::TasksController#index as HTML
150
+ Completed 200 OK in 11ms (Views: 10.0ms)
151
+ Processing by RakeDashboard::TasksController#index as HTML
152
+ Completed 200 OK in 7ms (Views: 5.0ms)
153
+ Processing by RakeDashboard::TasksController#index as HTML
154
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (2.0ms)
155
+ Completed 200 OK in 25ms (Views: 25.0ms)
156
+ Processing by RakeDashboard::TasksController#index as HTML
157
+ Completed 200 OK in 7ms (Views: 7.0ms)
158
+ Processing by RakeDashboard::TasksController#create as HTML
159
+ Parameters: {"task"=>"secret"}
160
+ Completed 200 OK in 9ms (Views: 3.0ms)
161
+ Processing by RakeDashboard::TasksController#create as HTML
162
+ Parameters: {"task"=>"secret"}
163
+ Completed 200 OK in 4ms (Views: 1.0ms)
164
+ Processing by RakeDashboard::TasksController#create as HTML
165
+ Parameters: {"task"=>"secret"}
166
+ Completed 200 OK in 5ms (Views: 1.0ms)
167
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-07 15:40:38 -0700
168
+ Processing by RakeDashboard::TasksController#index as HTML
169
+ Completed 200 OK in 106ms (Views: 105.0ms)
170
+  (0.2ms) begin transaction
171
+  (0.0ms) rollback transaction
172
+  (0.1ms) begin transaction
173
+ Processing by RakeDashboard::TasksController#index as HTML
174
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (0.3ms)
175
+ Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.0ms)
176
+  (0.1ms) rollback transaction
177
+  (0.0ms) begin transaction
178
+ Processing by RakeDashboard::TasksController#index as HTML
179
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
180
+  (0.1ms) rollback transaction
181
+  (0.1ms) begin transaction
182
+ Processing by RakeDashboard::TasksController#create as HTML
183
+ Parameters: {"task"=>"secret"}
184
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.0ms)
185
+  (0.1ms) rollback transaction
186
+  (0.0ms) begin transaction
187
+ Processing by RakeDashboard::TasksController#create as HTML
188
+ Parameters: {"task"=>"secret"}
189
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
190
+  (0.1ms) rollback transaction
191
+  (0.0ms) begin transaction
192
+ Processing by RakeDashboard::TasksController#create as HTML
193
+ Parameters: {"task"=>"secret"}
194
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
195
+  (0.1ms) rollback transaction
196
+  (0.0ms) begin transaction
197
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-07 16:01:26 -0700
198
+ Processing by RakeDashboard::TasksController#index as HTML
199
+ Completed 200 OK in 17ms (Views: 16.4ms | ActiveRecord: 0.0ms)
200
+  (0.1ms) rollback transaction
201
+  (0.1ms) begin transaction
202
+  (0.1ms) rollback transaction
203
+  (0.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
204
+  (0.1ms) select sqlite_version(*)
205
+  (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
206
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
207
+  (0.1ms) select sqlite_version(*)
208
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
209
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
210
+  (0.2ms) begin transaction
211
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (20.8ms)
212
+  (0.1ms) rollback transaction
213
+  (0.0ms) begin transaction
214
+  (0.0ms) rollback transaction
215
+  (0.1ms) begin transaction
216
+ Processing by RakeDashboard::TasksController#index as HTML
217
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
218
+  (0.1ms) rollback transaction
219
+  (0.0ms) begin transaction
220
+ Processing by RakeDashboard::TasksController#index as HTML
221
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
222
+  (0.1ms) rollback transaction
223
+  (0.0ms) begin transaction
224
+ Processing by RakeDashboard::TasksController#create as HTML
225
+ Parameters: {"task"=>"secret"}
226
+ Completed 200 OK in 3ms (Views: 1.3ms | ActiveRecord: 0.0ms)
227
+  (0.1ms) rollback transaction
228
+  (0.0ms) begin transaction
229
+ Processing by RakeDashboard::TasksController#create as HTML
230
+ Parameters: {"task"=>"secret"}
231
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
232
+  (0.1ms) rollback transaction
233
+  (0.1ms) begin transaction
234
+ Processing by RakeDashboard::TasksController#create as HTML
235
+ Parameters: {"task"=>"secret"}
236
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
237
+  (0.1ms) rollback transaction
238
+  (0.1ms) begin transaction
239
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 10:59:15 -0700
240
+ Processing by RakeDashboard::TasksController#index as HTML
241
+ Completed 200 OK in 280ms (Views: 279.9ms | ActiveRecord: 0.0ms)
242
+  (0.1ms) rollback transaction
243
+  (0.0ms) begin transaction
244
+  (0.1ms) rollback transaction
245
+  (0.2ms) begin transaction
246
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 10:59:29 -0700
247
+ Processing by RakeDashboard::TasksController#index as HTML
248
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (19.2ms)
249
+ Completed 200 OK in 158ms (Views: 157.5ms | ActiveRecord: 0.0ms)
250
+  (0.1ms) rollback transaction
251
+  (0.0ms) begin transaction
252
+ Processing by RakeDashboard::TasksController#create as HTML
253
+ Parameters: {"task"=>"secret"}
254
+ Rendered text template (0.0ms)
255
+ Completed 200 OK in 8ms (Views: 1.2ms | ActiveRecord: 0.0ms)
256
+  (0.1ms) rollback transaction
257
+  (0.1ms) begin transaction
258
+ Processing by RakeDashboard::TasksController#create as HTML
259
+ Parameters: {"task"=>"secret"}
260
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
261
+  (0.1ms) rollback transaction
262
+  (0.1ms) begin transaction
263
+ Processing by RakeDashboard::TasksController#create as HTML
264
+ Parameters: {"task"=>"secret"}
265
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
266
+  (0.1ms) rollback transaction
267
+  (0.0ms) begin transaction
268
+ Processing by RakeDashboard::TasksController#index as HTML
269
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
270
+  (0.1ms) rollback transaction
271
+  (0.0ms) begin transaction
272
+ Processing by RakeDashboard::TasksController#index as HTML
273
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
274
+  (0.1ms) rollback transaction
275
+  (0.0ms) begin transaction
276
+  (0.0ms) rollback transaction
277
+  (0.0ms) begin transaction
278
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 10:59:29 -0700
279
+ Processing by RakeDashboard::TasksController#index as HTML
280
+ Completed 200 OK in 34ms (Views: 33.6ms | ActiveRecord: 0.0ms)
281
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 10:59:29 -0700
282
+ Processing by RakeDashboard::TasksController#create as HTML
283
+ Parameters: {"task"=>"secret"}
284
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
285
+ Started GET "/" for 127.0.0.1 at 2015-05-11 11:06:06 -0700
286
+ Started GET "/" for 127.0.0.1 at 2015-05-11 11:06:09 -0700
287
+ Started GET "/index.html" for 127.0.0.1 at 2015-05-11 11:06:15 -0700
288
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:06:25 -0700
289
+ Processing by RakeDashboard::TasksController#index as HTML
290
+ Completed 200 OK in 21ms (Views: 20.6ms | ActiveRecord: 0.0ms)
291
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:09:50 -0700
292
+ Processing by RakeDashboard::TasksController#create as HTML
293
+ Parameters: {"task"=>"secret"}
294
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.0ms)
295
+  (0.1ms) rollback transaction
296
+  (0.1ms) begin transaction
297
+  (0.1ms) rollback transaction
298
+  (0.2ms) begin transaction
299
+  (0.0ms) rollback transaction
300
+  (0.0ms) begin transaction
301
+ Processing by RakeDashboard::TasksController#create as HTML
302
+ Parameters: {"task"=>"secret"}
303
+ Rendered inline template (8.6ms)
304
+ Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms)
305
+  (0.1ms) rollback transaction
306
+  (0.0ms) begin transaction
307
+ Processing by RakeDashboard::TasksController#create as HTML
308
+ Parameters: {"task"=>"secret"}
309
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
310
+  (0.1ms) rollback transaction
311
+  (0.0ms) begin transaction
312
+ Processing by RakeDashboard::TasksController#create as HTML
313
+ Parameters: {"task"=>"secret"}
314
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
315
+  (0.1ms) rollback transaction
316
+  (0.0ms) begin transaction
317
+ Processing by RakeDashboard::TasksController#index as HTML
318
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
319
+  (0.1ms) rollback transaction
320
+  (0.0ms) begin transaction
321
+ Processing by RakeDashboard::TasksController#index as HTML
322
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
323
+  (0.1ms) rollback transaction
324
+  (0.1ms) begin transaction
325
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:13:07 -0700
326
+ Processing by RakeDashboard::TasksController#index as HTML
327
+ Completed 200 OK in 138ms (Views: 137.6ms | ActiveRecord: 0.0ms)
328
+  (0.1ms) rollback transaction
329
+  (0.1ms) begin transaction
330
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:13:07 -0700
331
+ Processing by RakeDashboard::TasksController#index as HTML
332
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
333
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:13:07 -0700
334
+ Processing by RakeDashboard::TasksController#create as HTML
335
+ Parameters: {"task"=>"secret"}
336
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
337
+  (0.1ms) rollback transaction
338
+  (0.0ms) begin transaction
339
+  (0.1ms) rollback transaction
340
+  (0.2ms) begin transaction
341
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:13:29 -0700
342
+ Processing by RakeDashboard::TasksController#index as HTML
343
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (15.6ms)
344
+ Completed 200 OK in 143ms (Views: 142.8ms | ActiveRecord: 0.0ms)
345
+  (0.1ms) rollback transaction
346
+  (0.0ms) begin transaction
347
+  (0.0ms) rollback transaction
348
+  (0.0ms) begin transaction
349
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:13:29 -0700
350
+ Processing by RakeDashboard::TasksController#index as HTML
351
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (13.5ms)
352
+ Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
353
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:13:29 -0700
354
+ Processing by RakeDashboard::TasksController#create as HTML
355
+ Parameters: {"task"=>"secret"}
356
+ Rendered inline template (0.3ms)
357
+ Completed 200 OK in 7ms (Views: 0.6ms | ActiveRecord: 0.0ms)
358
+  (0.1ms) rollback transaction
359
+  (0.0ms) begin transaction
360
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (18.3ms)
361
+  (0.1ms) rollback transaction
362
+  (0.0ms) begin transaction
363
+ Processing by RakeDashboard::TasksController#create as HTML
364
+ Parameters: {"task"=>"secret"}
365
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
366
+  (0.1ms) rollback transaction
367
+  (0.0ms) begin transaction
368
+ Processing by RakeDashboard::TasksController#create as HTML
369
+ Parameters: {"task"=>"secret"}
370
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
371
+  (0.1ms) rollback transaction
372
+  (0.0ms) begin transaction
373
+ Processing by RakeDashboard::TasksController#create as HTML
374
+ Parameters: {"task"=>"secret"}
375
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
376
+  (0.1ms) rollback transaction
377
+  (0.0ms) begin transaction
378
+ Processing by RakeDashboard::TasksController#index as HTML
379
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
380
+  (0.1ms) rollback transaction
381
+  (0.0ms) begin transaction
382
+ Processing by RakeDashboard::TasksController#index as HTML
383
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
384
+  (0.1ms) rollback transaction
385
+  (0.2ms) begin transaction
386
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (21.6ms)
387
+  (0.1ms) rollback transaction
388
+  (0.1ms) begin transaction
389
+ Processing by RakeDashboard::TasksController#index as HTML
390
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
391
+  (0.2ms) rollback transaction
392
+  (0.0ms) begin transaction
393
+ Processing by RakeDashboard::TasksController#index as HTML
394
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
395
+  (0.1ms) rollback transaction
396
+  (0.0ms) begin transaction
397
+ Processing by RakeDashboard::TasksController#create as HTML
398
+ Parameters: {"task"=>"secret"}
399
+ Completed 200 OK in 8ms (Views: 0.8ms | ActiveRecord: 0.0ms)
400
+  (0.1ms) rollback transaction
401
+  (0.0ms) begin transaction
402
+ Processing by RakeDashboard::TasksController#create as HTML
403
+ Parameters: {"task"=>"secret"}
404
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
405
+  (0.1ms) rollback transaction
406
+  (0.0ms) begin transaction
407
+ Processing by RakeDashboard::TasksController#create as HTML
408
+ Parameters: {"task"=>"secret"}
409
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
410
+  (0.1ms) rollback transaction
411
+  (0.0ms) begin transaction
412
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:17:04 -0700
413
+ Processing by RakeDashboard::TasksController#index as HTML
414
+ Completed 200 OK in 179ms (Views: 178.7ms | ActiveRecord: 0.0ms)
415
+  (0.1ms) rollback transaction
416
+  (0.1ms) begin transaction
417
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:17:04 -0700
418
+ Processing by RakeDashboard::TasksController#index as HTML
419
+ Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms)
420
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:17:04 -0700
421
+ Processing by RakeDashboard::TasksController#create as HTML
422
+ Parameters: {"task"=>"secret"}
423
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
424
+  (0.1ms) rollback transaction
425
+  (0.0ms) begin transaction
426
+  (0.0ms) rollback transaction
427
+  (0.2ms) begin transaction
428
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:20:29 -0700
429
+ Processing by RakeDashboard::TasksController#index as HTML
430
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (15.9ms)
431
+ Completed 200 OK in 150ms (Views: 150.3ms | ActiveRecord: 0.0ms)
432
+  (0.1ms) rollback transaction
433
+  (0.0ms) begin transaction
434
+ Processing by RakeDashboard::TasksController#index as HTML
435
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (0.2ms)
436
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
437
+  (0.1ms) rollback transaction
438
+  (0.0ms) begin transaction
439
+ Processing by RakeDashboard::TasksController#index as HTML
440
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
441
+  (0.1ms) rollback transaction
442
+  (0.0ms) begin transaction
443
+ Processing by RakeDashboard::TasksController#create as HTML
444
+ Parameters: {"task"=>"secret"}
445
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
446
+  (0.1ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+ Processing by RakeDashboard::TasksController#create as HTML
449
+ Parameters: {"task"=>"secret"}
450
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
451
+  (0.1ms) rollback transaction
452
+  (0.0ms) begin transaction
453
+ Processing by RakeDashboard::TasksController#create as HTML
454
+ Parameters: {"task"=>"secret"}
455
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
456
+  (0.1ms) rollback transaction
457
+  (0.0ms) begin transaction
458
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:20:29 -0700
459
+ Processing by RakeDashboard::TasksController#index as HTML
460
+ Completed 200 OK in 35ms (Views: 35.1ms | ActiveRecord: 0.0ms)
461
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:20:29 -0700
462
+ Processing by RakeDashboard::TasksController#create as HTML
463
+ Parameters: {"task"=>"secret"}
464
+ Completed 200 OK in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
465
+  (0.1ms) rollback transaction
466
+  (0.0ms) begin transaction
467
+  (0.1ms) rollback transaction
468
+  (0.0ms) begin transaction
469
+  (0.0ms) rollback transaction
470
+  (0.2ms) begin transaction
471
+  (0.0ms) rollback transaction
472
+  (0.0ms) begin transaction
473
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:20:46 -0700
474
+ Processing by RakeDashboard::TasksController#index as HTML
475
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (14.8ms)
476
+ Completed 200 OK in 139ms (Views: 138.5ms | ActiveRecord: 0.0ms)
477
+  (0.1ms) rollback transaction
478
+  (0.0ms) begin transaction
479
+ Processing by RakeDashboard::TasksController#index as HTML
480
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (0.2ms)
481
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
482
+  (0.1ms) rollback transaction
483
+  (0.0ms) begin transaction
484
+ Processing by RakeDashboard::TasksController#index as HTML
485
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
486
+  (0.1ms) rollback transaction
487
+  (0.1ms) begin transaction
488
+ Processing by RakeDashboard::TasksController#create as HTML
489
+ Parameters: {"task"=>"secret"}
490
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
491
+  (0.1ms) rollback transaction
492
+  (0.0ms) begin transaction
493
+ Processing by RakeDashboard::TasksController#create as HTML
494
+ Parameters: {"task"=>"secret"}
495
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
496
+  (0.1ms) rollback transaction
497
+  (0.1ms) begin transaction
498
+ Processing by RakeDashboard::TasksController#create as HTML
499
+ Parameters: {"task"=>"secret"}
500
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
501
+  (0.1ms) rollback transaction
502
+  (0.1ms) begin transaction
503
+  (0.1ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:20:47 -0700
506
+ Processing by RakeDashboard::TasksController#index as HTML
507
+ Completed 200 OK in 33ms (Views: 33.2ms | ActiveRecord: 0.0ms)
508
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:20:47 -0700
509
+ Processing by RakeDashboard::TasksController#create as HTML
510
+ Parameters: {"task"=>"secret"}
511
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
512
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:21:18 -0700
513
+ Processing by RakeDashboard::TasksController#index as HTML
514
+ Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
515
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:21:23 -0700
516
+ Processing by RakeDashboard::TasksController#create as HTML
517
+ Parameters: {"task"=>"secret"}
518
+ Completed 200 OK in 2ms (Views: 0.5ms | ActiveRecord: 0.0ms)
519
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:21:30 -0700
520
+ Processing by RakeDashboard::TasksController#index as HTML
521
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
522
+ Started POST "/rake_dashboard/tasks?task=db%3Amigrate" for 127.0.0.1 at 2015-05-11 11:21:37 -0700
523
+ Processing by RakeDashboard::TasksController#create as HTML
524
+ Parameters: {"task"=>"db:migrate"}
525
+  (0.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
526
+  (0.1ms) select sqlite_version(*)
527
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
528
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
529
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
530
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
531
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
532
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
533
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
534
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
535
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
536
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
537
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
538
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
539
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
540
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
541
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
542
+ CACHE (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
543
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
544
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
545
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
546
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
547
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
548
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
549
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
550
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
551
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
552
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
553
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
554
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
555
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
556
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
557
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
558
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
559
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
560
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
561
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
562
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
563
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
564
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
565
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
566
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
567
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
568
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
569
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
570
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
571
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
572
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
573
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
574
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
575
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
576
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
577
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
578
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
579
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
580
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
581
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
582
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
583
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
584
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
585
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
586
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
587
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
588
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
589
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
590
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
591
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
592
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
593
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
594
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
595
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
596
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
597
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
598
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
599
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
600
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
601
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
602
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
603
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
604
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
605
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
606
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
607
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
608
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
609
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
610
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
611
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
612
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
613
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
614
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
615
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
616
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
617
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
618
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
619
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
620
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
621
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
622
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
623
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
624
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
625
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
626
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
627
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
628
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
629
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
630
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
631
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
632
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
633
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
634
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
635
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
636
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
637
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
638
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
639
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
640
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
641
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
642
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
643
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
644
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
645
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
646
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
647
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
648
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
649
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
650
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
651
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
652
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
653
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
654
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
655
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
656
+ CACHE (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
657
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
658
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
659
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
660
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
661
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
662
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
663
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
664
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
665
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
666
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
667
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
668
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
669
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
670
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
671
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
672
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
673
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
674
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
675
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
676
+ CACHE (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
677
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
678
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
679
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
680
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
681
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
682
+ CACHE (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
683
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
684
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
685
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
686
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
687
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
688
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
689
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
690
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
691
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
692
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
693
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
694
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
695
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
696
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
697
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
698
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
699
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
700
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
701
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
702
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
703
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
704
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
705
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
706
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
707
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
708
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
709
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
710
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
711
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
712
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
713
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
714
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
715
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
716
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
717
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
718
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
719
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
720
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
721
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
722
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
723
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
724
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
725
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
726
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
727
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
728
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
729
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
730
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
731
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
732
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
733
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
734
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
735
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
736
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
737
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
738
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
739
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
740
+ CACHE (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
741
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
742
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
743
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
744
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
745
+ CACHE (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
746
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
747
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
748
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
749
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
750
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
751
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
752
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
753
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
754
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
755
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
756
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
757
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
758
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
759
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
760
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
761
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
762
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
763
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
764
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
765
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
766
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
767
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
768
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
769
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
770
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
771
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
772
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
773
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
774
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
775
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
776
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
777
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
778
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
779
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
780
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
781
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
782
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
783
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
784
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
785
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
786
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
787
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
788
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
789
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
790
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
791
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
792
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
793
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
794
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
795
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
796
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
797
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
798
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
799
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
800
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
801
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
802
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
803
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
804
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
805
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
806
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
807
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
808
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
809
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
810
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
811
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
812
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
813
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
814
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
815
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
816
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
817
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
818
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
819
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
820
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
821
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
822
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
823
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
824
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
825
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
826
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
827
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
828
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
829
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
830
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
831
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
832
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
833
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
834
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
835
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
836
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
837
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
838
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
839
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
840
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
841
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
842
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
843
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
844
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
845
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
846
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
847
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
848
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
849
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
850
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
851
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
852
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
853
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
854
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
855
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
856
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
857
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
858
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
859
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
860
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
861
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
862
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
863
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
864
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
865
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
866
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
867
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
868
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
869
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
870
+ CACHE (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
871
+ Completed 200 OK in 298ms (Views: 0.5ms | ActiveRecord: 53.2ms)
872
+  (0.4ms) rollback transaction
873
+  (0.2ms) begin transaction
874
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:22:06 -0700
875
+ Processing by RakeDashboard::TasksController#index as HTML
876
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (16.0ms)
877
+ Completed 200 OK in 136ms (Views: 136.3ms | ActiveRecord: 0.0ms)
878
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:22:06 -0700
879
+ Processing by RakeDashboard::TasksController#create as HTML
880
+ Parameters: {"task"=>"secret"}
881
+ Rendered inline template (0.5ms)
882
+ Completed 200 OK in 5926ms (Views: 1.1ms | ActiveRecord: 0.0ms)
883
+  (0.1ms) rollback transaction
884
+  (0.1ms) begin transaction
885
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (45.0ms)
886
+  (0.1ms) rollback transaction
887
+  (0.0ms) begin transaction
888
+  (0.1ms) rollback transaction
889
+  (0.0ms) begin transaction
890
+ Processing by RakeDashboard::TasksController#create as HTML
891
+ Parameters: {"task"=>"secret"}
892
+ Completed 200 OK in 5576ms (Views: 1.0ms | ActiveRecord: 0.0ms)
893
+  (0.1ms) rollback transaction
894
+  (0.1ms) begin transaction
895
+ Processing by RakeDashboard::TasksController#create as HTML
896
+ Parameters: {"task"=>"secret"}
897
+ Completed 500 Internal Server Error in 17651ms (ActiveRecord: 0.0ms)
898
+  (0.1ms) rollback transaction
899
+  (0.5ms) begin transaction
900
+ Processing by RakeDashboard::TasksController#create as HTML
901
+ Parameters: {"task"=>"secret"}
902
+ Completed 500 Internal Server Error in 7008ms (ActiveRecord: 0.0ms)
903
+  (0.1ms) rollback transaction
904
+  (0.1ms) begin transaction
905
+ Processing by RakeDashboard::TasksController#index as HTML
906
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
907
+  (0.1ms) rollback transaction
908
+  (0.0ms) begin transaction
909
+ Processing by RakeDashboard::TasksController#index as HTML
910
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
911
+  (0.1ms) rollback transaction
912
+  (0.0ms) begin transaction
913
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:22:43 -0700
914
+ Processing by RakeDashboard::TasksController#index as HTML
915
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
916
+  (0.1ms) rollback transaction
917
+  (0.2ms) begin transaction
918
+ Processing by RakeDashboard::TasksController#index as HTML
919
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (0.2ms)
920
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
921
+  (0.1ms) rollback transaction
922
+  (0.0ms) begin transaction
923
+ Processing by RakeDashboard::TasksController#index as HTML
924
+ Completed 200 OK in 1ms (Views: 0.9ms | ActiveRecord: 0.0ms)
925
+  (0.1ms) rollback transaction
926
+  (0.1ms) begin transaction
927
+ Processing by RakeDashboard::TasksController#create as HTML
928
+ Parameters: {"task"=>"secret"}
929
+ Completed 200 OK in 8ms (Views: 1.4ms | ActiveRecord: 0.0ms)
930
+  (0.1ms) rollback transaction
931
+  (0.0ms) begin transaction
932
+ Processing by RakeDashboard::TasksController#create as HTML
933
+ Parameters: {"task"=>"secret"}
934
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
935
+  (0.1ms) rollback transaction
936
+  (0.1ms) begin transaction
937
+ Processing by RakeDashboard::TasksController#create as HTML
938
+ Parameters: {"task"=>"secret"}
939
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.0ms)
940
+  (0.1ms) rollback transaction
941
+  (0.1ms) begin transaction
942
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:23:55 -0700
943
+ Processing by RakeDashboard::TasksController#index as HTML
944
+ Completed 200 OK in 172ms (Views: 171.5ms | ActiveRecord: 0.0ms)
945
+  (0.1ms) rollback transaction
946
+  (0.1ms) begin transaction
947
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:23:55 -0700
948
+ Processing by RakeDashboard::TasksController#index as HTML
949
+ Completed 200 OK in 15ms (Views: 14.9ms | ActiveRecord: 0.0ms)
950
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:23:55 -0700
951
+ Processing by RakeDashboard::TasksController#create as HTML
952
+ Parameters: {"task"=>"secret"}
953
+ Completed 200 OK in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
954
+  (0.1ms) rollback transaction
955
+  (0.1ms) begin transaction
956
+  (0.1ms) rollback transaction
957
+  (0.1ms) begin transaction
958
+  (0.1ms) rollback transaction
959
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:49:37 -0700
960
+ Processing by RakeDashboard::TasksController#index as HTML
961
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (196.0ms)
962
+ Completed 200 OK in 824ms (Views: 823.0ms | ActiveRecord: 0.0ms)
963
+ Processing by RakeDashboard::TasksController#index as HTML
964
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (1.0ms)
965
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.0ms)
966
+ Processing by RakeDashboard::TasksController#index as HTML
967
+ Completed 200 OK in 7ms (Views: 5.0ms | ActiveRecord: 0.0ms)
968
+ Processing by RakeDashboard::TasksController#create as HTML
969
+ Parameters: {"task"=>"secret"}
970
+ Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 0.0ms)
971
+ Processing by RakeDashboard::TasksController#create as HTML
972
+ Parameters: {"task"=>"secret"}
973
+ Completed 200 OK in 7ms (Views: 3.0ms | ActiveRecord: 0.0ms)
974
+ Processing by RakeDashboard::TasksController#create as HTML
975
+ Parameters: {"task"=>"secret"}
976
+ Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.0ms)
977
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-11 11:49:39 -0700
978
+ Processing by RakeDashboard::TasksController#index as HTML
979
+ Completed 200 OK in 80ms (Views: 80.0ms | ActiveRecord: 0.0ms)
980
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-11 11:49:39 -0700
981
+ Processing by RakeDashboard::TasksController#create as HTML
982
+ Parameters: {"task"=>"secret"}
983
+ Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.0ms)
984
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 11:26:47 -0700
985
+ Processing by RakeDashboard::TasksController#index as HTML
986
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (176.0ms)
987
+ Completed 200 OK in 462ms (Views: 461.0ms | ActiveRecord: 0.0ms)
988
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-12 11:26:48 -0700
989
+ Processing by RakeDashboard::TasksController#create as HTML
990
+ Parameters: {"task"=>"secret"}
991
+ Rendered inline template (1.0ms)
992
+ Completed 200 OK in 11ms (Views: 3.0ms | ActiveRecord: 0.0ms)
993
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (120.0ms)
994
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 11:26:56 -0700
995
+ Processing by RakeDashboard::TasksController#index as HTML
996
+ Completed 200 OK in 104ms (Views: 103.0ms | ActiveRecord: 0.0ms)
997
+ Processing by RakeDashboard::TasksController#create as HTML
998
+ Parameters: {"task"=>"secret"}
999
+ Completed 200 OK in 7ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1000
+ Processing by RakeDashboard::TasksController#create as HTML
1001
+ Parameters: {"task"=>"secret"}
1002
+ Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1003
+ Processing by RakeDashboard::TasksController#create as HTML
1004
+ Parameters: {"task"=>"secret"}
1005
+ Completed 200 OK in 7ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1006
+ Processing by RakeDashboard::TasksController#index as HTML
1007
+ Completed 200 OK in 16ms (Views: 12.0ms | ActiveRecord: 0.0ms)
1008
+ Processing by RakeDashboard::TasksController#index as HTML
1009
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1010
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 12:08:24 -0700
1011
+ Processing by RakeDashboard::TasksController#index as HTML
1012
+ Rendered inline template (9.0ms)
1013
+ Completed 200 OK in 31ms (Views: 26.0ms | ActiveRecord: 0.0ms)
1014
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 12:08:24 -0700
1015
+ Processing by RakeDashboard::TasksController#index as HTML
1016
+ Rendered inline template (3.0ms)
1017
+ Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1018
+ Processing by RakeDashboard::TasksController#create as HTML
1019
+ Parameters: {"task"=>"secret"}
1020
+ Rendered inline template (4.0ms)
1021
+ Completed 200 OK in 19ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1022
+ Processing by RakeDashboard::TasksController#create as HTML
1023
+ Parameters: {"task"=>"secret"}
1024
+ Completed 200 OK in 12ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1025
+ Processing by RakeDashboard::TasksController#create as HTML
1026
+ Parameters: {"task"=>"secret"}
1027
+ Completed 200 OK in 7ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1028
+ Processing by RakeDashboard::TasksController#index as HTML
1029
+ Completed 200 OK in 10ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1030
+ Processing by RakeDashboard::TasksController#index as HTML
1031
+ Completed 200 OK in 9ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1032
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 12:14:25 -0700
1033
+ Processing by RakeDashboard::TasksController#index as HTML
1034
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 12:17:00 -0700
1035
+ Processing by RakeDashboard::TasksController#index as HTML
1036
+ Completed 500 Internal Server Error in 154927ms (ActiveRecord: 0.0ms)
1037
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (686.0ms)
1038
+ Processing by RakeDashboard::TasksController#create as HTML
1039
+ Parameters: {"task"=>"secret"}
1040
+ Completed 200 OK in 31ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1041
+ Processing by RakeDashboard::TasksController#create as HTML
1042
+ Parameters: {"task"=>"secret"}
1043
+ Completed 200 OK in 10ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1044
+ Processing by RakeDashboard::TasksController#create as HTML
1045
+ Parameters: {"task"=>"secret"}
1046
+ Completed 200 OK in 7ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1047
+ Processing by RakeDashboard::TasksController#index as HTML
1048
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 14:12:29 -0700
1049
+ Processing by RakeDashboard::TasksController#index as HTML
1050
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (218.0ms)
1051
+ Completed 200 OK in 888ms (Views: 886.0ms | ActiveRecord: 0.0ms)
1052
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-12 14:12:31 -0700
1053
+ Processing by RakeDashboard::TasksController#index as HTML
1054
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (96.0ms)
1055
+ Completed 200 OK in 108ms (Views: 108.0ms | ActiveRecord: 0.0ms)
1056
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-12 14:12:31 -0700
1057
+ Processing by RakeDashboard::TasksController#create as HTML
1058
+ Parameters: {"task"=>"secret"}
1059
+ Rendered inline template (3.0ms)
1060
+ Completed 200 OK in 15ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1061
+ Processing by RakeDashboard::TasksController#create as HTML
1062
+ Parameters: {"task"=>"secret"}
1063
+ Rendered inline template (2.0ms)
1064
+ Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1065
+ Processing by RakeDashboard::TasksController#create as HTML
1066
+ Parameters: {"task"=>"secret"}
1067
+ Completed 200 OK in 7ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1068
+ Processing by RakeDashboard::TasksController#create as HTML
1069
+ Parameters: {"task"=>"secret"}
1070
+ Completed 200 OK in 9ms (Views: 5.0ms | ActiveRecord: 0.0ms)
1071
+ Processing by RakeDashboard::TasksController#index as HTML
1072
+ Completed 200 OK in 7ms (Views: 6.0ms | ActiveRecord: 0.0ms)
1073
+ Processing by RakeDashboard::TasksController#index as HTML
1074
+ Completed 200 OK in 8ms (Views: 8.0ms | ActiveRecord: 0.0ms)
1075
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (167.0ms)
1076
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-14 10:15:20 -0700
1077
+ Processing by RakeDashboard::TasksController#index as HTML
1078
+ Completed 200 OK in 256ms (Views: 255.0ms | ActiveRecord: 0.0ms)
1079
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-14 10:15:21 -0700
1080
+ Processing by RakeDashboard::TasksController#create as HTML
1081
+ Parameters: {"task"=>"secret"}
1082
+ Completed 200 OK in 9ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1083
+ Processing by RakeDashboard::TasksController#create as HTML
1084
+ Parameters: {"task"=>"secret"}
1085
+ Completed 200 OK in 5ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1086
+ Processing by RakeDashboard::TasksController#create as HTML
1087
+ Parameters: {"task"=>"secret"}
1088
+ Completed 200 OK in 5ms (Views: 2.0ms | ActiveRecord: 0.0ms)
1089
+ Processing by RakeDashboard::TasksController#create as HTML
1090
+ Parameters: {"task"=>"secret"}
1091
+ Completed 200 OK in 6ms (Views: 3.0ms | ActiveRecord: 0.0ms)
1092
+ Processing by RakeDashboard::TasksController#index as HTML
1093
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1094
+ Processing by RakeDashboard::TasksController#index as HTML
1095
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
1096
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-14 10:15:21 -0700
1097
+ Processing by RakeDashboard::TasksController#index as HTML
1098
+ Completed 200 OK in 76ms (Views: 75.0ms | ActiveRecord: 0.0ms)
1099
+  (0.3ms) begin transaction
1100
+  (0.0ms) rollback transaction
1101
+  (0.1ms) begin transaction
1102
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-14 10:15:59 -0700
1103
+ Processing by RakeDashboard::TasksController#index as HTML
1104
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb within layouts/rake_dashboard/application (15.9ms)
1105
+ Completed 200 OK in 247ms (Views: 246.6ms | ActiveRecord: 0.0ms)
1106
+ Started POST "/rake_dashboard/tasks?task=secret" for 127.0.0.1 at 2015-05-14 10:15:59 -0700
1107
+ Processing by RakeDashboard::TasksController#create as HTML
1108
+ Parameters: {"task"=>"secret"}
1109
+ Rendered inline template (0.3ms)
1110
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
1111
+  (0.1ms) rollback transaction
1112
+  (0.0ms) begin transaction
1113
+ Rendered /Users/cbuxton/Perforce/cbuxton_mac-cbuxton-1_7656/MyService/main/myservice/rake_dashboard/app/views/rake_dashboard/tasks/index.html.erb (24.8ms)
1114
+  (0.1ms) rollback transaction
1115
+  (0.1ms) begin transaction
1116
+ Started GET "/rake_dashboard/tasks" for 127.0.0.1 at 2015-05-14 10:16:00 -0700
1117
+ Processing by RakeDashboard::TasksController#index as HTML
1118
+ Completed 200 OK in 40ms (Views: 39.6ms | ActiveRecord: 0.0ms)
1119
+  (0.1ms) rollback transaction
1120
+  (0.1ms) begin transaction
1121
+ Processing by RakeDashboard::TasksController#create as HTML
1122
+ Parameters: {"task"=>"secret"}
1123
+ Completed 200 OK in 2ms (Views: 0.9ms | ActiveRecord: 0.0ms)
1124
+  (0.1ms) rollback transaction
1125
+  (0.0ms) begin transaction
1126
+ Processing by RakeDashboard::TasksController#create as HTML
1127
+ Parameters: {"task"=>"secret"}
1128
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1129
+  (0.1ms) rollback transaction
1130
+  (0.0ms) begin transaction
1131
+ Processing by RakeDashboard::TasksController#create as HTML
1132
+ Parameters: {"task"=>"secret"}
1133
+ Completed 200 OK in 2ms (Views: 0.6ms | ActiveRecord: 0.0ms)
1134
+  (0.1ms) rollback transaction
1135
+  (0.1ms) begin transaction
1136
+ Processing by RakeDashboard::TasksController#index as HTML
1137
+ Completed 200 OK in 1ms (Views: 0.8ms | ActiveRecord: 0.0ms)
1138
+  (0.1ms) rollback transaction
1139
+  (0.0ms) begin transaction
1140
+ Processing by RakeDashboard::TasksController#index as HTML
1141
+ Completed 200 OK in 1ms (Views: 0.7ms | ActiveRecord: 0.0ms)
1142
+  (0.1ms) rollback transaction