revelry_content 0.0.1.2 → 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (267) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +21 -84
  3. data/Rakefile +1 -1
  4. data/app/assets/javascripts/revelry_content.js.coffee +3 -15
  5. data/app/assets/javascripts/revelry_content/components/Admin.js.cjsx +82 -78
  6. data/app/assets/javascripts/revelry_content/components/EditModeButton.js.cjsx +14 -15
  7. data/app/assets/javascripts/revelry_content/components/Loader.js.cjsx +9 -10
  8. data/app/assets/javascripts/revelry_content/components/Time.js.cjsx +13 -14
  9. data/app/assets/javascripts/revelry_content/components/TopBar.js.cjsx +15 -16
  10. data/app/assets/javascripts/revelry_content/components/editor.js.coffee +319 -287
  11. data/app/assets/javascripts/revelry_content/components/versions.js.coffee +154 -155
  12. data/app/assets/javascripts/revelry_content/config.js.coffee.erb +2 -2
  13. data/app/assets/javascripts/revelry_content/mixins/EditModeListener.coffee +3 -3
  14. data/app/assets/javascripts/revelry_content/models/Content.js.coffee +4 -4
  15. data/app/assets/javascripts/revelry_content/models/Version.js.coffee +5 -5
  16. data/app/assets/javascripts/revelry_content/setup.js +1 -0
  17. data/app/assets/stylesheets/revelry_content/components/buttons.scss +1 -1
  18. data/app/assets/stylesheets/revelry_content/components/loader.scss +1 -1
  19. data/app/controllers/{revelry_content → revelry/content}/application_controller.rb +1 -1
  20. data/app/controllers/{revelry_content → revelry/content}/contents_controller.rb +17 -12
  21. data/app/controllers/revelry/content/pages_controller.rb +30 -0
  22. data/app/controllers/{revelry_content → revelry/content}/versions_controller.rb +14 -6
  23. data/app/models/{revelry_content → revelry/content}/content.rb +25 -9
  24. data/app/models/{revelry_content → revelry/content}/content_version.rb +1 -1
  25. data/app/models/revelry/content/page.rb +6 -0
  26. data/app/views/layouts/revelry_content/application.html.erb +2 -2
  27. data/app/views/revelry_content/contents/_menus.html.erb +2 -2
  28. data/app/views/revelry_content/contents/index.html.erb +1 -1
  29. data/config/routes.rb +1 -1
  30. data/lib/generators/revelry/content/css_generator.rb +51 -0
  31. data/lib/generators/revelry/content/initializer_generator.rb +13 -0
  32. data/lib/generators/revelry/content/install_generator.rb +40 -0
  33. data/lib/generators/revelry/content/js_generator.rb +45 -0
  34. data/lib/generators/revelry/content/migrations_generator.rb +28 -0
  35. data/lib/generators/{revelry_content → revelry/content}/templates/create_revelry_content_contents.rb +0 -0
  36. data/lib/generators/revelry/content/templates/create_revelry_content_pages.rb +17 -0
  37. data/lib/generators/{revelry_content → revelry/content}/templates/create_versions.rb +0 -0
  38. data/lib/generators/revelry/content/templates/initializer.rb +13 -0
  39. data/lib/revelry/content/admin_concern.rb +13 -0
  40. data/lib/{revelry_content → revelry/content}/configuration.rb +2 -2
  41. data/lib/revelry/content/content_concern.rb +18 -0
  42. data/{app/helpers/revelry_content → lib/revelry/content}/contents_helper.rb +5 -5
  43. data/lib/{revelry_content → revelry/content}/engine.rb +5 -3
  44. data/lib/{revelry_content → revelry/content}/js_exporter.rb +4 -4
  45. data/lib/{revelry_content → revelry/content}/railtie.rb +2 -2
  46. data/lib/revelry/content/version.rb +5 -0
  47. data/lib/revelry_content.rb +25 -18
  48. data/lib/tasks/revelry_content_tasks.rake +1 -1
  49. data/test/controllers/revelry_content/contents_controller_test.rb +1 -1
  50. data/test/controllers/revelry_content/revelry_content/pages_controller_test.rb +9 -0
  51. data/test/dummy/app/controllers/home_controller.rb +1 -1
  52. data/test/dummy/config/initializers/content.rb +1 -1
  53. data/test/dummy/config/initializers/revelry_content.rb +1 -1
  54. data/test/dummy/config/routes.rb +1 -1
  55. data/test/dummy/db/development.sqlite3 +0 -0
  56. data/test/dummy/log/development.log +0 -2990
  57. data/test/dummy/log/test.log +0 -0
  58. data/test/fixtures/revelry_content/pages.yml +11 -0
  59. data/test/helpers/rev_content/contents_helper_test.rb +1 -1
  60. data/test/models/rev_content/content_test.rb +1 -1
  61. data/test/models/revelry_content/page_test.rb +9 -0
  62. data/test/revelry_content_test.rb +1 -1
  63. metadata +50 -438
  64. data/app/assets/javascripts/revelry_content/server_side.js.coffee +0 -10
  65. data/app/assets/javascripts/revelry_content/utilities.js +0 -69
  66. data/app/assets/javascripts/vendor/react_ujs.js +0 -64
  67. data/app/helpers/revelry_content/application_helper.rb +0 -4
  68. data/lib/generators/revelry_content/css_generator.rb +0 -47
  69. data/lib/generators/revelry_content/initializer_generator.rb +0 -11
  70. data/lib/generators/revelry_content/install_generator.rb +0 -38
  71. data/lib/generators/revelry_content/js_generator.rb +0 -43
  72. data/lib/generators/revelry_content/migrations_generator.rb +0 -25
  73. data/lib/generators/revelry_content/templates/initializer.rb +0 -13
  74. data/lib/revelry_content/controller_concern.rb +0 -11
  75. data/lib/revelry_content/model_concern.rb +0 -11
  76. data/lib/revelry_content/version.rb +0 -3
  77. data/test/dummy/public/uploads/revelry_content/content/src/3/Screen_Shot_2015-05-04_at_9.50.48_AM.png +0 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-I_fh6Ob3TV3ynXTvv2TsuKA8cQq62L1tKIrIuNXWjA.cache +0 -1
  79. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-YnOULGJdPpgh539S1Ms1ELd5--WkKXQZL4yYylOy-0.cache +0 -1
  80. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/01i3BQNbZnC6BxmgguLy4xMYU2RnsNjDy_lEOEdzhxY.cache +0 -1
  81. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0CsApXQBjT34U567rgWiQGYOFwIpgM1ZcV3ZvrXPAXg.cache +0 -1
  82. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0LnMwfkPx0KckDudP0t_qfcIfrUx2JEt9_W28i5ota8.cache +0 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0Soh65Z50qGQ79OzRV5ywJzksbLPZ9Y7Xukmqyr6k5E.cache +0 -1
  84. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0XbuhYD4hx4ktBwomnPqrp-8ofGrK18w0XFrKr9A0TQ.cache +0 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1aGcEQlzCZqj47bR8b18bidGhSM2TCoUF8PH47DmsLU.cache +0 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1k4qrvfTSqyZpqJotrEJvryNYKwAYhcPYDr762tOceA.cache +0 -1
  87. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1qAjZK81hSd2VjC4whKNDW4X7SdJpLItpFtUW5R2vUU.cache +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1tgQBRMWbVAGLWkDo0fO1_ePFLz60fDuTdCKwp-LIJU.cache +0 -1
  89. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/22e58P_cEp6-Pu5wgZqEMEpiJGooGJ2dI6gfNXacBaw.cache +0 -1
  90. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2ZbqEyDxBgh2_LtnR16sYKThwIziSqlASeCjQjkwL7Q.cache +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2t8ZjvFIs5Qg2owTTr20k8NqE0dCrbY5mHTjJGQd2To.cache +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4cBcXkgJSg0A9kNtcagSpP-C7RpYMO7GIYMiIdC0K48.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4eWrs3PFkK1uDMlHgGflFhNtKLF63kY4nMqArSbZBpY.cache +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5-_j0ZY9kq3RzZvSq8dpYirIlmqsRJUSBNkE97ZcqWY.cache +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/55ea_CKRYg4qGN5pyZy2H1oKxEnbQuJzgGyrVQ1ZE-k.cache +0 -1
  96. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5PZzqc1OeigG9XRqgCM3SCT9fLVn6wTm6awQx74XAD0.cache +0 -1
  97. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5WUZd0B2PMhhtp-V7XsX5zFLOPXl9z2WpIVdT8rW5AE.cache +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5cWdZIkyqWp1hyfiXzGiMnuqZ_4SlHG0DmWpUkQYuS8.cache +0 -1
  99. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5wFIFg4lQ-rd1ZWBhlRi9J56-EqjP61WWYq0jOA7bek.cache +0 -1
  100. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6COX4oqZCCZnmoes6ehqGZqIr2xtXv5HVYqJzRnccnU.cache +0 -2
  101. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6Ck5oeyDTZNctS2vkmtYRv6UU5SCv8DW_cqAumQHEW4.cache +0 -1
  102. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6W7Zp0ylWiCA_3Z-Hese0EPiWLITfAv2OViiC3GHvzU.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6ajykKpm3QojPPBBJIx6vRImRgKpc_V_zX68dF-yV1Q.cache +0 -1
  104. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/75Qu5KXpoOg--ZIa5yMWG0sQS_OoZiF0og8GEfCKodI.cache +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/78FVepsCcIAm-tqmhFYO4eaDkF1BHiAwzZjoc1W6XrI.cache +0 -1
  106. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7OzH_p-6ZYmSIl-UNVwWQfD6PJHalPe5Y01jCP_MF1w.cache +0 -1
  107. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/856F5ONTmAq3bpS5lqrZAzppRy4gwhAkugo9inM3EEU.cache +0 -1
  108. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8AVC27x21kixmECkHeOm4sR-mSbzhJO320NRwrW6B38.cache +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8KCGLeeBgsHpq-GGsxAKvONGThHONpkBhLmQv5x-5i8.cache +0 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8cyMCW5yogfK5gPFpci4rPtVb8pVIiZmF5DpOH8F07Y.cache +0 -1
  111. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9EThCCo9tuqXzBz-afDke-GvEyM_NG0dxw7dSdkzINw.cache +0 -2
  112. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9NoeClumq19p-VmRk5PPOHLvDXN_Jr6BCYnczJWWfv4.cache +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9YD7CWCBCkOdAYp-yB8nGhaNDiiUWsP7fzRWPmHbzKI.cache +0 -2
  114. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AY9mbclr0zMOzxzP4BYRTYyvBOlpLFHHQAimzs6dSDI.cache +0 -38
  115. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AqkMYZH-ERTqi-15YvdhRVtysLKqim5CV7-GILZNras.cache +0 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Au8GVVKkzmp8TySAWMgFJQObozIt4Mr-RW5BolO8J2k.cache +0 -2
  117. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BBPtOTznDSAhX5tIqbw_JRw9Cppz2SVtSFsJ1CpC37k.cache +0 -2
  118. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CC0dQuHqBjWqdKsRp2Ntw6nn3M1nC5lUY-dd8lMzJ6Y.cache +0 -1
  119. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CWYN7KxLVsU-N9FbSIrHgO979x5b6AeyckCfZ892Y7k.cache +0 -2
  120. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/C_Sjupfz09XcSquDwczKxSTxWrEUrjaf49VmA5x68CQ.cache +0 -1
  121. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CcJCtip5hherUpH0eiHdJI5Stl08Txl1AU8NxDLKtro.cache +0 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Clf7dMHxXwzeU3tZ2yxP8d3xr0HRWHFMdqjBuSceJZ0.cache +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Cnkk4N8ysSWHH6ujQDBGzEiLuGa0dVNDL5Zq53tJq-M.cache +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/D0USxWIEUAxLvX9bhYdtB_SXMXAJ9nQr9vewnyqrk5k.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Dy0AC2wVM0afv2MB-u7UGGLsb_2ExNZ8S6w7SGE-djg.cache +0 -1
  126. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ee1BFKugxHkzKUuAsIqQc60hV47E4VSUMZwBOThvSeY.cache +0 -1
  127. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EghXS1aAsnoopkxb4Fv0S21wqJGL59ryH5HV9-30KI8.cache +0 -2
  128. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Eq8I8ukRZZ9BZ2SQxzSNc8mOoyKksxtzwtDh2FRZ1FE.cache +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Eu26_D_tZu1dr7mVRA4F2--NUZ2UMM4QRXv9JcqO2TY.cache +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FEfkZdxv5MUSvLMUUWoC3lif13VZBbiaUYPNv8uizgM.cache +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FF9LKRGOPVZl03UeeMXbHRXBFwG4SkAdOfcDClwXXx8.cache +0 -1
  132. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/F_NOlk6iL-Gonygn5tsU_AaDA69HBxeExwCiAa6Ezi4.cache +0 -2
  133. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FuMG_mCkNUt0OV_qrahX3ne-LN8Y3J-17T-I5BwYT_U.cache +0 -2
  134. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FzIl4k5FDcnN8SbzckzMXWXsj2DwBv_tGvZZky8_cvk.cache +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GBe9GA2qATaLqF7GTbxcZ8sWcPJ2zWeT8PFE8Cynb4U.cache +0 -1
  136. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GUcaNDg0KOqTIS7ltde6vWEZy4eTkdPuecVr52xaqY4.cache +0 -4
  137. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GWveyzQul11IW7JP-MFTH1p2O-FAiSldGQCixPtBWZc.cache +0 -1
  138. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/H8Py9_cLtmjiNd1zVjVpr-60bPm8OKt1NzBdYpuRoSg.cache +0 -2
  139. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HIOnKEwfKW9leZhYm8hw2zTPcTC7Lhr9QO3pGkpVUC0.cache +0 -1
  140. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IUOCPt0S05lp6-q_7CuqTJjuySoP7ZTTe1srP_Sgdag.cache +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IlxQ_nfFkpBhgHXJ9EL7TgHKTrQYX_1ockXtSOHH_1Q.cache +0 -1
  142. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Intu4bn50Zl1tGpuw8N2VhNjvLeG367yEoPjIxYkYxA.cache +0 -49
  143. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J3EzfF5t_RDdiaU-svpP2DBjb8gnlHHHCQjjpPvzvpk.cache +0 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J5rhZ_6c58sjOvHqDBBBBTvsLDbUGfHatkjiF1M-Fys.cache +0 -1
  145. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JP9pt25R98BIDqvwjp_DgmdNj4U1wLrVUhOnoDtekS8.cache +0 -1
  146. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/K2yr6YhOBxRdaqrHViPlAYUKVTWMlI24INQctCW0rWQ.cache +0 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LT9baTsZAaEEgS5raUZGGsP2vTnlzW9LzvyCfQgqLLs.cache +0 -2
  148. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LW03HTHDvMz6l4ReQ29sJeZqRg3QLrcVdAutCg9ROyU.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LcZdIStJUZnaKHh7vs-yLld_jzO3MSU4gCJaORFrjYk.cache +0 -7
  150. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LruVN3C21yeFX4pfE6ZQw7z2CzkYXY5b8PXOTfz2o1E.cache +0 -1
  151. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M2tXWSvBjMhGoQLT8CaoVYULKWDVirToNVLYqstyW-g.cache +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MJxRV2KlWMJ5KrraeWvC4yp7N4-aMpktlzqBpoLhft8.cache +0 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NGgP2dkovkWF23p4ypqAUEO3kldLkAA7E9hERHoxJ_M.cache +0 -2
  154. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NX-xwAHuCC7QChZD4MSpX9fgCXgl532SBhXfSsIxG4k.cache +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OQdV6HhyTI5Otzo9cwR6IY-8eX0eip8x561B8hXKikY.cache +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OSmr2Sj9749HFHCMkGsJP2YGkQxIztofCliXs0urGE8.cache +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P73ImcSy1BYWt27ZGM-JKdkbzyIm2063NZr-dn-ygPE.cache +0 -1
  158. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PVxgcRUvLL0uRj6ScbeM7YyccWyjP2O2kvs2640MHck.cache +0 -1
  159. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PmcUgH3Y4bLndb9k4NAJlxdFPTXl3T8-jEskNYv7T9M.cache +0 -15
  160. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PmrPSezdyM_8N-tzxdbn62XyY_l-YJPz7Tm7Qi1z2_M.cache +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QAr8mslUFMN0vPkEEQAZEbAUGes7lnpEtfFtKSK8lCc.cache +0 -1
  162. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QFioo2rOp-ljy1-PIoxzqOTmxmc6HFAft-qNbbQvfkQ.cache +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QPGkAA8L-cs-AO80ws0mqld73EIG2HCd8hzkga35Ydc.cache +0 -1
  164. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QaJhvzKs8vkSfWT534wn8jNcxfcnMDp4i8cDbwWESbs.cache +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RICRLw8IGgYZrEFYgyA-MY8-o_kXcmcY1gCavTvwW64.cache +0 -2
  166. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RgyohxMtV3OKNhuwrAaDjfXMV7SsjprKrEVgZ6NhwzE.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RsbxexS-d0Msc_BIthGWINzE8v7aFHiWQVqTbifUHp4.cache +0 -1
  168. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SZlNp_5FFT99-2Qs5TFLbTZ4ZOG2UFO6sExA-aa-9Xc.cache +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T5Z3oNqbaal-reBCFzxyo8yxV-drGVwQjIC1O_pkHNI.cache +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T6Ft0zMwwCntps471lA0_0aXo1KaOp-ZFeptSt9SRks.cache +0 -2
  171. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TQ7i9C1sBaWIfDFYnQo4TqjBOMYbOVxm6f4Qhl0Uf6M.cache +0 -1
  172. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TR10mW2AT2rabnCmUhSF2tBx-ZpQJZfpoezdescBWxg.cache +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TSR9oCO5WIJZHL855zPdgj-pvzkWlz0vlnIPSMRudy4.cache +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/V9W2dbEVRrR0tD27e8bft0flt50g1HHugzTd7lFVoMY.cache +0 -2
  175. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VHnCzqYhXqo4PNpfO5rhh1rxxllOWMQWrJ_1an8CxJ8.cache +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Vs4mCFlsskLe0HvAg_ODhYRP8lNofUxZ45d6sOzUfC0.cache +0 -1
  177. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VsHDpo2bcpN87OPpULfpEIuC7ArNRDa4RgDTqYSgbbc.cache +0 -1
  178. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/W1XNy0_UmGwk7xmb-0QiIdkD_gx_tjV351xE8X5LCPY.cache +0 -1
  179. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WEPPUYRJVm2CgPjW9cTdBuuFhadPuO7qPEqvqecfKjg.cache +0 -1
  180. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WIwRcAEBsLT7LSFw8071ukLJbJlwFoX_JaHD9w7fEAc.cache +0 -16
  181. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WSR5PdIRaA9ix0LLhrUegJL8ztgPoIgZHdaq1d3Jm7k.cache +0 -2
  182. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WxVFbgL4Oty9vrd1AD37P2KqOGjwvcH5o_LSGrMI_do.cache +0 -1
  183. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XSXbBZ-YPcBvmUp0fzcIUcTwqNvYHvUU7xfLa38qYvg.cache +0 -1
  184. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YB9oCB5SEQMC6OwASUsvmD1GE90Ul31VfE2ZRo1Hd2k.cache +0 -1
  185. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Yf6ZOsV9gRVVFTsRNcQPGxKgCQ63L3JprFkpZMD0slI.cache +0 -1
  186. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YjXlZUeBr9ONZpMKis8Beab3ld-NdnlSKXm2oZOsysc.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZBbRPnK9QPeL_bLmZNttUrL0MMH6DtrYDpD4f1DbYtc.cache +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_7w_iwIfp6xsakWz0Ww-HrRNserrl5q6WzSq1iYZGaQ.cache +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_k6iDcm-RS6SK8ChV7hlp56ZM2bVtgzaDCrpSHIDFZ4.cache +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_tne4TjP6WhsfK-a0TBVts5lr-lr-sDxyQiKIugRPhM.cache +0 -1
  191. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_zOYmE_ymvMvcRhHFdH2JutNJimhiytkMAhh4Oq6mkk.cache +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aDjgtkQ97t1Rcjxv5nZUTSSYXea5orrfkCeCNrlNNao.cache +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aKAjc-eEaECxCE89czdDC52Kqkw11EBSF9vk7QorxPA.cache +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/auLKIVQfT6ZcV9nSxkDD4xMrcIRtB_1-hO1qKXOcwxo.cache +0 -2
  195. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/axJrczuMPd6m4cWaLl9wfSWgg5SWjyHvv1N0d8e7cas.cache +0 -1
  196. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cWuWB7O6uRomqwh3IemLWVclp4_ioPR7TBAF7yrPpV0.cache +0 -1
  197. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ciEBvpxWzLqer60DBJkr319p1iKyYHZxfCm3tIPMqcI.cache +0 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ct5UmPAxknsInqDq17r9u_NbuFw8F6w4ZLKNU05xZ_Q.cache +0 -1
  199. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cxW0sGi1l_Lc7eCBF8kxQo4kNtHw27K5H-Ngpiixm2A.cache +0 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/d7lXJjCfvSvwTWSI3x4kn3TQzzYG0DGvqTOJL3avl6Y.cache +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dW3LJvt2E0gKdWoqZTSTWtntGqxhTENv8_-mbT_kfn0.cache +0 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dfT6vHCtyIBci9lpNUVgyqepSYt55BCo8MDzrPXxUEw.cache +0 -2
  203. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/e7OkNhH6RmnQjEY0ZEO597J545crZH0qZdVDYz71KT4.cache +0 -2
  204. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ea-3NiBlut0EOdCVqVGn-RwNm0CiwA8YVBRqfRqhgLg.cache +0 -1
  205. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eqpR2RCSOj4T0wmrPGJDb_td3gtOdiyLwD02BpzuBkg.cache +0 -1
  206. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eqrwo9jjG9uZiNQCUMkdkvT40JGz2uvrufAv-l00X1k.cache +0 -2
  207. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fG1WmTPapxY9EMQ5D8HQw8E2MpudT32v--jD6VgazTU.cache +0 -2
  208. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fLosOyYOiUc-ZJIEAtgmz68UfDVlAVCVMAxtAlML-nQ.cache +0 -1
  209. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/faEE1R7Sb00wgGFfL9FC9IqAGSkEHNY7rLPURjZVFv0.cache +0 -1
  210. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fgmBwPUcbsTKyMd7bxMbzh9YFF7GkD269KSZbCOpe54.cache +0 -1
  211. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/g4m06tmSxrOnDxGpUyYkIEY8hi0ymUoUzYMAh06YkGc.cache +0 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gP9Pm0rpnz4IvvhguI8VxK8xhDKU8WisGwfm5ox97RY.cache +0 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gtka4cvnxw2bm_SnkE-5LxtRYKxD-MvM_T7lYxdLAug.cache +0 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hQFzaNvvDOyvg2U4FZcg-xUjctMTLEdb7tK-RYIziz8.cache +0 -0
  215. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hcS2HARtyE_tpJmmwUqYO-9e-Tshg3TF6W6XL29_cwM.cache +0 -1
  216. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hdMwJqicGzH0qHgBqMVfxHB8u3-zdirRgb1zpnRfb6w.cache +0 -2
  217. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hfIPOqDhaIk7vhQa4hLyWEIQasPwJSn3H-i2egLuFvQ.cache +0 -2
  218. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/i3Mr4BCaCS865aFe9brU973ERtfoSONrUQhX5FW509w.cache +0 -0
  219. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jBOiy_uvOKOoBovFao2qEf6xVkGYRFmw-CR_I756N5g.cache +0 -1
  220. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jZZQUkAYSpxGGWp7Vb_vs2S3Clde8_XKFWwjwHaBmU0.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jiUvf7zJxbsJ9a9IiZOy06PqL6dOOfprzyXci5p8vMM.cache +0 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kd10Jyu0ZXLelGbmQo03cFEKpR0qQRw-QyPPMlnY-FQ.cache +0 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ksZL57FCLWVpXdOSIHVytq_XIsGz78TdArP4aWt7uQA.cache +0 -1
  224. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l4Mb7Zqpi9HWWa67ftgd_ZkPTvGuhxm--tpHlgu4Eyc.cache +0 -0
  225. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/m3gQ2mqyaWT0r9UVJriOzT0qkFiL4aZ5mhMgbbyLmyw.cache +0 -1
  226. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/n6NcZJQK0j-WDDTq_7wksLUZBBYhGRPaW38Cua19t4E.cache +0 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nKs1V_XYWUW2uG9E7WQPaiVIvYx2I5ttwdMZ9bRsUVY.cache +0 -2
  228. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oB34rjWhV_SBgt62MMSw20hEYuiVTjLMILeSBjagbDo.cache +0 -0
  229. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oydOGeF22N2dttfBS68MA5PK4ofniHzd-LgBwVmJvI4.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pA1evykc28UE2mszGRw015uHbbmBCU9gFZIcU8Hrwls.cache +0 -1
  231. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pBYZnqSsUmggXeAPQXcQrZSfrScDOEsZQdeXOIqfHaA.cache +0 -1
  232. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pENTpYJeZrQ-P80SXbbHVaXcEd7kaOm1bZRItPVK7OE.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pYKIN2HEVMsGLDogjm8iDQ_4W8iGEq98NsJbOdA822o.cache +0 -1
  234. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pb5zODtFDJpqFTtbh09cOhwG1mZowQW1EZ-54eauNTc.cache +0 -1
  235. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pnDWkMT2Wf6v8kCepJzn9oEGWrxNOY-H9MlCq85zTlU.cache +0 -0
  236. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qJ6pwEWoy3oUs_aPayRv5D5d_F7oEyNIzxrJCaEpcpM.cache +0 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rJ88KtO5aBXvyE9sef5emc-MsAJaTna76vG5TNayYa4.cache +0 -0
  238. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rPyv5XauOpu-aOgB95w5ZSl6jCFUGvS8YE1h1eZZID0.cache +0 -2
  239. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rcp1tSuAgctt1BdAdUoGgD_UtZeD7w3rLuANXg8YU58.cache +0 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rfYNZtDWV3PCq5a57xTyj0-_iC1Psq1TaxWG86fXR2A.cache +0 -1
  241. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/smmkAgu4NNfatz7vllczgMFH_tckzDUAmeV3WvmmsRE.cache +0 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/szDR2M9t_osfhsE_agd1lcIjKrl5nwRmORMlyoWxTus.cache +0 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t4fruk986h623vtFPEW2sALWc3kl3ayPfBbgOzRm6Cs.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tJDIhl16K_HokIK8UZx1y9hy-Ne6lk9ie2kMbsHVxdY.cache +0 -1
  245. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tSDhvZZY2gcpUHWppbAMQYQL0iNPOc3Vo2HHrnqKlDw.cache +0 -1
  246. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tYYAXLHGMIYQ1Ls-jw8thSBIzdixEpeQC2kg6irmEy0.cache +0 -0
  247. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tgFK--mLRPBU9bZUb6lc4kt6Qq9-Ux6AAfG7mDQBpu8.cache +0 -1
  248. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tpBLVkgP9PSqHqSHfPf9ZLar0vHGOTCOUl0FKOqGN54.cache +0 -1
  249. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/u0B5U9yc20iANkRJi6-SiyL9U5RMrThVGmgnWSR2Rew.cache +0 -1
  250. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vtTvV-oGMOMD-l4YDTQRNHPiFRebBjqEfL9IoavTSGE.cache +0 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/w3rjuVGSs9xUdab61H5KOFtoRsLH5abeNs9uloC2b94.cache +0 -0
  252. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/w9RM9nORoFIx66Xb5PwygnSIR3922sjAkZkXvyeykgE.cache +0 -1
  253. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wK-n2sVphfsiv5g-IV404qJkdw6Skfo5wk55Yf8IHfs.cache +0 -0
  254. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wbSRRkjts6z6OP0o88ZwLIz6Za9iMMeF8F1FMAubBxc.cache +0 -1
  255. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xE9HS1AxUe2VZv8zzVYALc75Yhv53_LPpQNxurm0oSI.cache +0 -1
  256. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xX3QhVOxSxG9HjrdSvjeQoK1iBpYJX3Kw-yjea2vSuo.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xa4ZU0nFS4WqDtDriIXMlwNURqkpUm_djZVqiz0ZynA.cache +0 -2
  258. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xzsnr6Bgr0MP4j4FZVUcYBADfkQCUHoShH_9hGp0ckk.cache +0 -0
  259. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y6xgU0dR6b-1_hjgAZAhFFq1T9zGZ8yjUQzOefGpcu8.cache +0 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJ9qoQ6ZeEPmm4ttulT9hdYPemgTF4VUSdmFjmr9Vpw.cache +0 -0
  261. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJuZz8Lopwyvmy-rto8ycJ0nOLWeWSobCY8z-421Bec.cache +0 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yLZAaEFOlOcJfmo3pRpRpTiQMzBcqSRTrZYb_pJpTBs.cache +0 -2
  263. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yV9yGvP4CDMeEbb4ff4n_Hzu-GuBbM-S39cIE1WQy6Y.cache +0 -1
  264. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y_4IIBYH_ItxQoEeXjWm9Igwn6hAkl669CNtYfo0fyI.cache +0 -1
  265. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zF_lfa7oUNjRgtepm9Ufi0DCzN_IXCJTDHRrH-JHu7Q.cache +0 -2
  266. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zeqXKQA7lKQnvEaJsDO404ZaYCV0dk57z-SXUkfmz24.cache +0 -1
  267. data/test/dummy/vendor/assets/javascripts/revelry_content/content.js +0 -4
@@ -1,4 +1,4 @@
1
- module RevelryContent::ContentsHelper
1
+ module Revelry::Content::ContentsHelper
2
2
 
3
3
  def revelry_content_text(key, default: "")
4
4
  lookup = @revelry_content_contents
@@ -16,10 +16,10 @@ module RevelryContent::ContentsHelper
16
16
 
17
17
  props = {
18
18
  content: content,
19
- canEdit: RevelryContent.config.authorize(controller)
19
+ canEdit: Revelry::Content.config.authorize(controller)
20
20
  }.to_json
21
21
 
22
- content_tag :span, 'data-react-class' => 'RevelryContent.EditableText', 'data-react-props' => props do
22
+ content_tag :span, 'data-react-class' => 'Rev.Content.EditableText', 'data-react-props' => props do
23
23
  content[:html_content].html_safe
24
24
  end
25
25
  end
@@ -37,13 +37,13 @@ module RevelryContent::ContentsHelper
37
37
  end
38
38
  content = HashWithIndifferentAccess.new(content)
39
39
 
40
- if RevelryContent.config.authorize(controller)
40
+ if Revelry::Content.config.authorize(controller)
41
41
  props = {
42
42
  content: content,
43
43
  canEdit: true
44
44
  }.to_json
45
45
 
46
- content_tag :span, 'data-react-class' => 'RevelryContent.EditableImage', 'data-react-props' => props do
46
+ content_tag :span, 'data-react-class' => 'Rev.Content.EditableImage', 'data-react-props' => props do
47
47
  image_tag content["src"]
48
48
  end
49
49
  else
@@ -1,9 +1,11 @@
1
- module RevelryContent
1
+ module Revelry::Content
2
2
  class Engine < ::Rails::Engine
3
3
  engine_name 'revelry_content'
4
- isolate_namespace RevelryContent
4
+ isolate_namespace Revelry::Content
5
5
 
6
- config.autoload_paths << File.expand_path('../../', __FILE__)
6
+ initializer 'revelry.content_autoload_path', before: :set_autoload_paths do
7
+ config.autoload_paths << File.expand_path('../../', __FILE__)
8
+ end
7
9
 
8
10
  CONFIG_ASSET = 'revelry_content/config'
9
11
 
@@ -1,14 +1,14 @@
1
- class RevelryContent::JsExporter
1
+ class Revelry::Content::JsExporter
2
2
  def self.write_export
3
3
  directory = Rails.root.join('vendor', 'assets', 'javascripts', 'revelry_content')
4
4
  FileUtils.mkdir_p(directory)
5
5
 
6
6
  File.open File.join(directory, 'content.js'), 'w' do |f|
7
7
  f.write <<-JS
8
- if(typeof RevelryContent === 'undefined') {
9
- var RevelryContent = {};
8
+ if(typeof Rev.Content === 'undefined') {
9
+ var Rev.Content = {};
10
10
  }
11
- RevelryContent.Contents = #{ RevelryContent::Content.as_lookup_table.to_json };
11
+ Rev.Content.Contents = #{ Revelry::Content::Content.as_lookup_table.to_json };
12
12
  JS
13
13
  end
14
14
  end
@@ -1,7 +1,7 @@
1
- class RevelryContent::Railtie < ::Rails::Railtie
1
+ class Revelry::Content::Railtie < ::Rails::Railtie
2
2
  initializer "revelry_content.setup_view_helpers" do |app|
3
3
  ActiveSupport.on_load(:action_view) do
4
- include ::RevelryContent::ContentsHelper
4
+ include ::Revelry::Content::ContentsHelper
5
5
  end
6
6
  end
7
7
  end
@@ -0,0 +1,5 @@
1
+ module Revelry
2
+ module Content
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
@@ -1,4 +1,5 @@
1
1
  require 'jbuilder'
2
+ require 'ancestry'
2
3
  require 'carrierwave'
3
4
  require 'data_uri'
4
5
  require 'open-uri'
@@ -10,29 +11,35 @@ require 'sprockets'
10
11
  require 'sprockets/coffee-react'
11
12
  require 'sprockets/coffee-react-script'
12
13
  require 'sprockets/coffee-react/engine'
13
- require 'jquery-rails'
14
- require 'underscore-rails'
15
- require 'backbone-rails'
16
14
  require 'momentjs-rails'
17
15
  require 'moment_timezone/rails'
18
- require 'revelry_content/engine'
19
- require 'revelry_content/configuration'
20
- require 'revelry_content/model_concern'
21
- require 'revelry_content/controller_concern'
22
- require 'revelry_content/railtie'
16
+ require 'responders'
17
+ require 'revelry/content/engine'
18
+ require 'revelry/content/configuration'
19
+ require 'revelry/content/content_concern'
20
+ require 'revelry/content/admin_concern'
21
+ require 'revelry/content/contents_helper'
22
+ require 'revelry/content/railtie'
23
+ require 'generators/revelry/content/css_generator'
24
+ require 'generators/revelry/content/initializer_generator'
25
+ require 'generators/revelry/content/install_generator'
26
+ require 'generators/revelry/content/js_generator'
27
+ require 'generators/revelry/content/migrations_generator'
23
28
 
24
- module RevelryContent
25
- mattr_accessor :_config
29
+ module Revelry
30
+ module Content
31
+ mattr_accessor :_config
26
32
 
27
- def self.configure(&block)
28
- block.call config
29
- if ActiveRecord::Base.connection.table_exists? 'revelry_content_contents'
30
- RevelryContent::JsExporter.write_export if config.js_export
33
+ def self.configure(&block)
34
+ block.call config
35
+ if ActiveRecord::Base.connection.table_exists? 'revelry_content_contents'
36
+ Revelry::Content::JsExporter.write_export if config.js_export
37
+ end
38
+ config
31
39
  end
32
- config
33
- end
34
40
 
35
- def self.config
36
- self._config ||= Configuration.new
41
+ def self.config
42
+ self._config ||= Configuration.new
43
+ end
37
44
  end
38
45
  end
@@ -1,6 +1,6 @@
1
1
  namespace :revelry_content do
2
2
  desc "Export content as "
3
3
  task :export_js => :environment do
4
- RevelryContent::JsExporter.write_export
4
+ Revelry::Content::JsExporter.write_export
5
5
  end
6
6
  end
@@ -1,6 +1,6 @@
1
1
  require 'test_helper'
2
2
 
3
- module RevelryContent
3
+ module Revelry::Content
4
4
  class ContentsControllerTest < ActionController::TestCase
5
5
  # test "the truth" do
6
6
  # assert true
@@ -0,0 +1,9 @@
1
+ require 'test_helper'
2
+
3
+ module Revelry::Content
4
+ class PagesControllerTest < ActionController::TestCase
5
+ # test "the truth" do
6
+ # assert true
7
+ # end
8
+ end
9
+ end
@@ -1,4 +1,4 @@
1
1
  class HomeController < ApplicationController
2
- include RevelryContent::WithRevelryContent
2
+ include Revelry::Content::WithRevelryContent
3
3
  def index; end
4
4
  end
@@ -1,3 +1,3 @@
1
- RevelryContent::configure do |config|
1
+ Revelry::Content::configure do |config|
2
2
  config.js_export = true
3
3
  end
@@ -1,2 +1,2 @@
1
- RevelryContent.configure do |config|
1
+ Revelry::Content.configure do |config|
2
2
  end
@@ -1,4 +1,4 @@
1
1
  Rails.application.routes.draw do
2
2
  root to: 'home#index'
3
- mount RevelryContent::Engine => "/revelry_content"
3
+ mount Revelry::Content::Engine => "/revelry_content"
4
4
  end
@@ -1,2990 +0,0 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:13:25 -0500
4
-
5
- ActiveRecord::PendingMigrationError (
6
-
7
- Migrations are pending. To resolve this issue, run:
8
-
9
- bin/rake db:migrate RAILS_ENV=development
10
-
11
- ):
12
- activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!'
13
- activerecord (4.2.1) lib/active_record/migration.rb:374:in `call'
14
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
16
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
17
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
18
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
19
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
22
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
24
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
25
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
26
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
27
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
28
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
29
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
30
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
31
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
32
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
33
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
34
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
35
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
36
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
37
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
38
- railties (4.2.1) lib/rails/application.rb:164:in `call'
39
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
40
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
41
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
42
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
43
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
44
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
45
-
46
-
47
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms)
48
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
49
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
50
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.9ms)
51
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
52
-  (0.1ms) select sqlite_version(*)
53
-  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
- Migrating to CreateRevelryContentContents (20150109192212)
56
-  (0.1ms) begin transaction
57
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150109192212_create_revelry_content_contents.rb:8)
58
-  (0.5ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime)
59
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150109192212"]]
60
-  (1.0ms) commit transaction
61
- Migrating to CreateVersions (20150109192213)
62
-  (0.1ms) begin transaction
63
-  (0.4ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
64
-  (0.1ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")
65
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150109192213"]]
66
-  (0.8ms) commit transaction
67
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
68
-  (0.3ms)  SELECT sql
69
- FROM sqlite_master
70
- WHERE name='index_revelry_content_versions_on_item_type_and_item_id' AND type='index'
71
- UNION ALL
72
- SELECT sql
73
- FROM sqlite_temp_master
74
- WHERE name='index_revelry_content_versions_on_item_type_and_item_id' AND type='index'
75
- 
76
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
77
-
78
- You can opt into the new behavior and remove this warning by setting:
79
-
80
- config.active_record.raise_in_transactional_callbacks = true
81
-
82
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
83
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
84
-
85
- You can opt into the new behavior and remove this warning by setting:
86
-
87
- config.active_record.raise_in_transactional_callbacks = true
88
-
89
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
90
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
91
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
92
-
93
-
94
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:13:47 -0500
95
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
96
- Processing by HomeController#index as HTML
97
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
98
- Rendered home/index.html.erb within layouts/application (12.4ms)
99
- Completed 500 Internal Server Error in 1004ms (ActiveRecord: 0.1ms)
100
-
101
- ActionView::Template::Error (couldn't find file 'revelry_content/editors' with type 'application/javascript'):
102
- 3: <head>
103
- 4: <title>Dummy</title>
104
- 5: <%= stylesheet_link_tag "application", "data-turbolinks-track" => true %>
105
- 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
106
- 7: <%= csrf_meta_tags %>
107
- 8: </head>
108
- 9: <body>
109
- app/assets/javascripts/application.js:1
110
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___951494189622094037_70092889847300'
111
-
112
-
113
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.2ms)
114
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
115
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.7ms)
116
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (32.2ms)
117
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
118
-
119
- You can opt into the new behavior and remove this warning by setting:
120
-
121
- config.active_record.raise_in_transactional_callbacks = true
122
-
123
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
124
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
125
-
126
- You can opt into the new behavior and remove this warning by setting:
127
-
128
- config.active_record.raise_in_transactional_callbacks = true
129
-
130
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
131
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
132
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
133
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
134
-
135
- You can opt into the new behavior and remove this warning by setting:
136
-
137
- config.active_record.raise_in_transactional_callbacks = true
138
-
139
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
140
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
141
-
142
- You can opt into the new behavior and remove this warning by setting:
143
-
144
- config.active_record.raise_in_transactional_callbacks = true
145
-
146
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
147
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
148
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
149
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
150
-
151
- You can opt into the new behavior and remove this warning by setting:
152
-
153
- config.active_record.raise_in_transactional_callbacks = true
154
-
155
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
156
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
157
-
158
- You can opt into the new behavior and remove this warning by setting:
159
-
160
- config.active_record.raise_in_transactional_callbacks = true
161
-
162
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
163
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
164
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
165
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
166
- Migrating to CreateRevelryContentContents (20150427211438)
167
-  (0.1ms) begin transaction
168
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)
169
-  (0.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime) 
170
- SQLite3::SQLException: table "revelry_content_contents" already exists: CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)
171
-  (0.0ms) rollback transaction
172
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
173
-
174
- You can opt into the new behavior and remove this warning by setting:
175
-
176
- config.active_record.raise_in_transactional_callbacks = true
177
-
178
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
179
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
180
-
181
- You can opt into the new behavior and remove this warning by setting:
182
-
183
- config.active_record.raise_in_transactional_callbacks = true
184
-
185
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
186
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
187
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
188
-  (1.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime) 
189
-  (0.9ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
190
-  (0.1ms) select sqlite_version(*)
191
-  (0.9ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")
192
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
193
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
194
-  (0.1ms) SELECT version FROM "schema_migrations"
195
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213')
196
-  (1.0ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime) 
197
-  (0.8ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
198
-  (0.1ms) select sqlite_version(*)
199
-  (0.8ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")
200
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
201
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
202
-  (0.1ms) SELECT version FROM "schema_migrations"
203
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213')
204
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
205
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
206
-
207
- You can opt into the new behavior and remove this warning by setting:
208
-
209
- config.active_record.raise_in_transactional_callbacks = true
210
-
211
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
212
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
213
-
214
- You can opt into the new behavior and remove this warning by setting:
215
-
216
- config.active_record.raise_in_transactional_callbacks = true
217
-
218
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
219
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
220
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
221
-
222
-
223
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:08 -0500
224
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
225
-
226
- ActiveRecord::PendingMigrationError (
227
-
228
- Migrations are pending. To resolve this issue, run:
229
-
230
- bin/rake db:migrate RAILS_ENV=development
231
-
232
- ):
233
- activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!'
234
- activerecord (4.2.1) lib/active_record/migration.rb:374:in `call'
235
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
236
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
237
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
238
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
239
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
240
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
241
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
242
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
243
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
244
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
245
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
246
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
247
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
248
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
249
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
250
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
251
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
252
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
253
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
254
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
255
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
256
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
257
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
258
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
259
- railties (4.2.1) lib/rails/application.rb:164:in `call'
260
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
261
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
262
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
263
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
264
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
265
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
266
-
267
-
268
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms)
269
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
270
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
271
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.4ms)
272
-
273
-
274
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:15 -0500
275
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
276
-
277
- ActiveRecord::PendingMigrationError (
278
-
279
- Migrations are pending. To resolve this issue, run:
280
-
281
- bin/rake db:migrate RAILS_ENV=development
282
-
283
- ):
284
- activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!'
285
- activerecord (4.2.1) lib/active_record/migration.rb:374:in `call'
286
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
287
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
288
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
289
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
290
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
291
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
292
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
293
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
294
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
295
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
296
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
297
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
298
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
299
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
300
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
301
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
302
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
303
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
304
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
305
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
306
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
307
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
308
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
309
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
310
- railties (4.2.1) lib/rails/application.rb:164:in `call'
311
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
312
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
313
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
314
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
315
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
316
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
317
-
318
-
319
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.5ms)
320
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
321
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
322
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.8ms)
323
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
324
-
325
- You can opt into the new behavior and remove this warning by setting:
326
-
327
- config.active_record.raise_in_transactional_callbacks = true
328
-
329
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
330
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
331
-
332
- You can opt into the new behavior and remove this warning by setting:
333
-
334
- config.active_record.raise_in_transactional_callbacks = true
335
-
336
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
337
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
338
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
339
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
340
- Migrating to CreateRevelryContentContents (20150427211438)
341
-  (0.1ms) begin transaction
342
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)
343
-  (0.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime) 
344
- SQLite3::SQLException: table "revelry_content_contents" already exists: CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)
345
-  (0.1ms) rollback transaction
346
-  (1.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
347
-  (0.1ms) select sqlite_version(*)
348
-  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
349
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
350
- Migrating to CreateRevelryContentContents (20150427211438)
351
-  (0.1ms) begin transaction
352
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)
353
-  (0.4ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)
354
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427211438"]]
355
-  (0.6ms) commit transaction
356
- Migrating to CreateVersions (20150427211439)
357
-  (0.1ms) begin transaction
358
-  (0.4ms) CREATE TABLE "revelry_content_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
359
-  (0.7ms) rollback transaction
360
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
361
-
362
- You can opt into the new behavior and remove this warning by setting:
363
-
364
- config.active_record.raise_in_transactional_callbacks = true
365
-
366
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
367
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
368
-
369
- You can opt into the new behavior and remove this warning by setting:
370
-
371
- config.active_record.raise_in_transactional_callbacks = true
372
-
373
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
374
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
375
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
376
-
377
-
378
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:43 -0500
379
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
380
-
381
- ActiveRecord::PendingMigrationError (
382
-
383
- Migrations are pending. To resolve this issue, run:
384
-
385
- bin/rake db:migrate RAILS_ENV=development
386
-
387
- ):
388
- activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!'
389
- activerecord (4.2.1) lib/active_record/migration.rb:374:in `call'
390
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
391
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
392
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
393
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
394
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
395
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
396
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
397
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
398
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
399
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
400
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
401
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
402
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
403
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
404
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
405
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
406
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
407
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
408
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
409
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
410
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
411
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
412
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
413
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
414
- railties (4.2.1) lib/rails/application.rb:164:in `call'
415
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
416
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
417
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
418
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
419
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
420
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
421
-
422
-
423
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.4ms)
424
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
425
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
426
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.8ms)
427
-
428
-
429
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:15:45 -0500
430
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
431
-
432
- ActiveRecord::PendingMigrationError (
433
-
434
- Migrations are pending. To resolve this issue, run:
435
-
436
- bin/rake db:migrate RAILS_ENV=development
437
-
438
- ):
439
- activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!'
440
- activerecord (4.2.1) lib/active_record/migration.rb:374:in `call'
441
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
442
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
443
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
444
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
445
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
446
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
447
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
448
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
449
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
450
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
451
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
452
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
453
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
454
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
455
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
456
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
457
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
458
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
459
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
460
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
461
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
462
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
463
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
464
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
465
- railties (4.2.1) lib/rails/application.rb:164:in `call'
466
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
467
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
468
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
469
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
470
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
471
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
472
-
473
-
474
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms)
475
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
476
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
477
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.7ms)
478
-  (1.2ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime) 
479
-  (1.1ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
480
-  (0.1ms) select sqlite_version(*)
481
-  (0.9ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")
482
-  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
483
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
484
-  (0.1ms) SELECT version FROM "schema_migrations"
485
-  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213')
486
-  (1.0ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "created_at" datetime, "updated_at" datetime) 
487
-  (0.8ms) CREATE TABLE "revelry_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
488
-  (0.1ms) select sqlite_version(*)
489
-  (0.8ms) CREATE INDEX "index_revelry_content_versions_on_item_type_and_item_id" ON "revelry_content_versions" ("item_type", "item_id")
490
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
491
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
492
-  (0.2ms) SELECT version FROM "schema_migrations"
493
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20150109192213')
494
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
495
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
496
-
497
- You can opt into the new behavior and remove this warning by setting:
498
-
499
- config.active_record.raise_in_transactional_callbacks = true
500
-
501
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
502
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
503
-
504
- You can opt into the new behavior and remove this warning by setting:
505
-
506
- config.active_record.raise_in_transactional_callbacks = true
507
-
508
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
509
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
510
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
511
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
512
- Migrating to CreateRevelryContentContents (20150427211438)
513
-  (0.1ms) begin transaction
514
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)
515
-  (0.1ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime) 
516
- SQLite3::SQLException: table "revelry_content_contents" already exists: CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)
517
-  (0.0ms) rollback transaction
518
-  (1.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
519
-  (0.1ms) select sqlite_version(*)
520
-  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
521
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
522
- Migrating to CreateRevelryContentContents (20150427211438)
523
-  (0.1ms) begin transaction
524
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)
525
-  (0.4ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)
526
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427211438"]]
527
-  (0.7ms) commit transaction
528
- Migrating to CreateVersions (20150427211439)
529
-  (0.0ms) begin transaction
530
-  (0.4ms) CREATE TABLE "revelry_content_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
531
-  (0.4ms) rollback transaction
532
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
533
-
534
- You can opt into the new behavior and remove this warning by setting:
535
-
536
- config.active_record.raise_in_transactional_callbacks = true
537
-
538
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
539
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
540
-
541
- You can opt into the new behavior and remove this warning by setting:
542
-
543
- config.active_record.raise_in_transactional_callbacks = true
544
-
545
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
546
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
547
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
548
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
549
-  (0.1ms) select sqlite_version(*)
550
-  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
551
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
552
- Migrating to CreateRevelryContentContents (20150427211438)
553
-  (0.1ms) begin transaction
554
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /Users/joel/src/revelry_content/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb:9)
555
-  (0.4ms) CREATE TABLE "revelry_content_contents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "type" varchar, "key" varchar, "content" text, "src" varchar, "last_whodunnit" varchar, "created_at" datetime, "updated_at" datetime)
556
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427211438"]]
557
-  (0.6ms) commit transaction
558
- Migrating to CreateVersions (20150427212126)
559
-  (0.1ms) begin transaction
560
-  (0.3ms) CREATE TABLE "revelry_content_content_versions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "item_type" varchar NOT NULL, "item_id" integer NOT NULL, "event" varchar NOT NULL, "whodunnit" varchar, "object" text, "rollback_version_id" integer, "created_at" datetime)
561
-  (0.1ms) CREATE INDEX "item_type_and_id" ON "revelry_content_content_versions" ("item_type", "item_id")
562
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150427212126"]]
563
-  (0.6ms) commit transaction
564
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
565
-  (0.1ms)  SELECT sql
566
- FROM sqlite_master
567
- WHERE name='item_type_and_id' AND type='index'
568
- UNION ALL
569
- SELECT sql
570
- FROM sqlite_temp_master
571
- WHERE name='item_type_and_id' AND type='index'
572
- 
573
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
574
-
575
- You can opt into the new behavior and remove this warning by setting:
576
-
577
- config.active_record.raise_in_transactional_callbacks = true
578
-
579
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
580
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
581
-
582
- You can opt into the new behavior and remove this warning by setting:
583
-
584
- config.active_record.raise_in_transactional_callbacks = true
585
-
586
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
587
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
588
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
589
-
590
-
591
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:21:51 -0500
592
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
593
- Processing by HomeController#index as HTML
594
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
595
- Rendered home/index.html.erb within layouts/application (4.0ms)
596
- Completed 500 Internal Server Error in 990ms (ActiveRecord: 0.3ms)
597
-
598
- ActionView::Template::Error (couldn't find file 'revelry_content/editors' with type 'application/javascript'):
599
- 3: <head>
600
- 4: <title>Dummy</title>
601
- 5: <%= stylesheet_link_tag "application", "data-turbolinks-track" => true %>
602
- 6: <%= javascript_include_tag "application", "data-turbolinks-track" => true %>
603
- 7: <%= csrf_meta_tags %>
604
- 8: </head>
605
- 9: <body>
606
- app/assets/javascripts/application.js:1
607
- app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2577837555170474351_70271202195140'
608
-
609
-
610
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.0ms)
611
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
612
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.1ms)
613
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.0ms)
614
-
615
-
616
- Started GET "/" for 127.0.0.1 at 2015-04-27 16:59:32 -0500
617
- Processing by HomeController#index as HTML
618
- RevelryContent::Content Load (1.8ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
619
- Rendered home/index.html.erb within layouts/application (4.2ms)
620
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.7ms)
621
- Completed 200 OK in 8491ms (Views: 8472.3ms | ActiveRecord: 1.8ms)
622
-
623
-
624
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
625
-
626
-
627
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
628
-
629
-
630
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
631
-
632
-
633
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
634
-
635
-
636
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
637
-
638
-
639
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
640
-
641
-
642
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
643
-
644
-
645
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
646
-
647
-
648
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
649
-
650
-
651
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
652
-
653
-
654
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
655
-
656
-
657
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
658
-
659
-
660
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
661
-
662
-
663
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
664
-
665
-
666
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
667
-
668
-
669
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
670
-
671
-
672
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
673
-
674
-
675
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
676
-
677
-
678
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
679
-
680
-
681
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
682
-
683
-
684
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 16:59:40 -0500
685
-
686
-
687
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 16:59:45 -0500
688
-
689
-
690
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 16:59:59 -0500
691
-
692
- ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
693
- gem 'responders', '~> 2.0'
694
- Consult the Rails upgrade guide for details.):
695
- actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to'
696
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `<class:ContentsController>'
697
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `<top (required)>'
698
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load'
699
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file'
700
- activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in'
701
- activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file'
702
- activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load'
703
- activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant'
704
- activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
705
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get'
706
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize'
707
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each'
708
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject'
709
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize'
710
- activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get'
711
- activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize'
712
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
713
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller'
714
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve'
715
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
716
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
717
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
718
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
719
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
720
- railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
721
- railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
722
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
723
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
724
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
725
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
726
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
727
- rack (1.6.0) lib/rack/etag.rb:24:in `call'
728
- rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
729
- rack (1.6.0) lib/rack/head.rb:13:in `call'
730
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
731
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
732
- rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
733
- rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
734
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
735
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
736
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
737
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
738
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
739
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
740
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
741
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
742
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
743
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
744
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
745
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
746
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
747
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
748
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
749
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
750
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
751
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
752
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
753
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
754
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
755
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
756
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
757
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
758
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
759
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
760
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
761
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
762
- railties (4.2.1) lib/rails/application.rb:164:in `call'
763
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
764
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
765
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
766
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
767
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
768
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
769
-
770
-
771
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.6ms)
772
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (5.4ms)
773
-
774
-
775
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:00:01 -0500
776
-
777
- ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
778
- gem 'responders', '~> 2.0'
779
- Consult the Rails upgrade guide for details.):
780
- actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to'
781
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `<class:ContentsController>'
782
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `<top (required)>'
783
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load'
784
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file'
785
- activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in'
786
- activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file'
787
- activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load'
788
- activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant'
789
- activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
790
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get'
791
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize'
792
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each'
793
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject'
794
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize'
795
- activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get'
796
- activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize'
797
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
798
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller'
799
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve'
800
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
801
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
802
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
803
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
804
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
805
- railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
806
- railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
807
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
808
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
809
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
810
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
811
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
812
- rack (1.6.0) lib/rack/etag.rb:24:in `call'
813
- rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
814
- rack (1.6.0) lib/rack/head.rb:13:in `call'
815
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
816
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
817
- rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
818
- rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
819
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
820
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
821
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
822
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
823
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
824
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
825
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
826
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
827
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
828
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
829
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
830
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
831
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
832
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
833
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
834
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
835
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
836
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
837
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
838
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
839
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
840
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
841
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
842
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
843
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
844
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
845
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
846
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
847
- railties (4.2.1) lib/rails/application.rb:164:in `call'
848
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
849
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
850
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
851
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
852
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
853
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
854
-
855
-
856
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms)
857
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (4.5ms)
858
-
859
-
860
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:00:05 -0500
861
-
862
-
863
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:00:53 -0500
864
-
865
- ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
866
- gem 'responders', '~> 2.0'
867
- Consult the Rails upgrade guide for details.):
868
- actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to'
869
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `<class:ContentsController>'
870
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `<top (required)>'
871
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load'
872
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file'
873
- activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in'
874
- activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file'
875
- activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load'
876
- activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant'
877
- activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
878
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get'
879
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize'
880
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each'
881
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject'
882
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize'
883
- activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get'
884
- activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize'
885
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
886
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller'
887
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve'
888
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
889
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
890
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
891
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
892
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
893
- railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
894
- railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
895
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
896
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
897
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
898
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
899
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
900
- rack (1.6.0) lib/rack/etag.rb:24:in `call'
901
- rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
902
- rack (1.6.0) lib/rack/head.rb:13:in `call'
903
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
904
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
905
- rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
906
- rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
907
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
908
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
909
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
910
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
911
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
912
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
913
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
914
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
915
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
916
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
917
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
918
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
919
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
920
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
921
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
922
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
923
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
924
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
925
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
926
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
927
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
928
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
929
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
930
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
931
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
932
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
933
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
934
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
935
- railties (4.2.1) lib/rails/application.rb:164:in `call'
936
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
937
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
938
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
939
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
940
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
941
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
942
-
943
-
944
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms)
945
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (4.7ms)
946
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
947
-
948
- You can opt into the new behavior and remove this warning by setting:
949
-
950
- config.active_record.raise_in_transactional_callbacks = true
951
-
952
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
953
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
954
-
955
- You can opt into the new behavior and remove this warning by setting:
956
-
957
- config.active_record.raise_in_transactional_callbacks = true
958
-
959
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
960
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
961
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
962
-
963
-
964
- Started GET "/" for 127.0.0.1 at 2015-04-27 17:01:50 -0500
965
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
966
- Processing by HomeController#index as HTML
967
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
968
- Rendered home/index.html.erb within layouts/application (3.0ms)
969
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.5ms)
970
- Completed 200 OK in 743ms (Views: 740.3ms | ActiveRecord: 0.2ms)
971
-
972
-
973
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
974
-
975
-
976
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
977
-
978
-
979
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
980
-
981
-
982
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
983
-
984
-
985
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
986
-
987
-
988
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
989
-
990
-
991
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
992
-
993
-
994
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
995
-
996
-
997
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
998
-
999
-
1000
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1001
-
1002
-
1003
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1004
-
1005
-
1006
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1007
-
1008
-
1009
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1010
-
1011
-
1012
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1013
-
1014
-
1015
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1016
-
1017
-
1018
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1019
-
1020
-
1021
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1022
-
1023
-
1024
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1025
-
1026
-
1027
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1028
-
1029
-
1030
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:51 -0500
1031
-
1032
-
1033
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:01:52 -0500
1034
-
1035
-
1036
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:02:04 -0500
1037
-
1038
- ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
1039
- gem 'responders', '~> 2.0'
1040
- Consult the Rails upgrade guide for details.):
1041
- actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to'
1042
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `<class:ContentsController>'
1043
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `<top (required)>'
1044
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load'
1045
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file'
1046
- activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in'
1047
- activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file'
1048
- activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load'
1049
- activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant'
1050
- activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
1051
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get'
1052
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize'
1053
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each'
1054
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject'
1055
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize'
1056
- activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get'
1057
- activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize'
1058
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
1059
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller'
1060
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve'
1061
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1062
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1063
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1064
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1065
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1066
- railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
1067
- railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
1068
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1069
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1070
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1071
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1072
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1073
- rack (1.6.0) lib/rack/etag.rb:24:in `call'
1074
- rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
1075
- rack (1.6.0) lib/rack/head.rb:13:in `call'
1076
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1077
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1078
- rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1079
- rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1080
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1081
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1082
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1083
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1084
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1085
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1086
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1087
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1088
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1089
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1090
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1091
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1092
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1093
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1094
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1095
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1096
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1097
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1098
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1099
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1100
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1101
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1102
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1103
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1104
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
1105
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1106
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1107
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1108
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1109
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
1110
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1111
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1112
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1113
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1114
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1115
-
1116
-
1117
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms)
1118
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (3.9ms)
1119
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1120
-
1121
- You can opt into the new behavior and remove this warning by setting:
1122
-
1123
- config.active_record.raise_in_transactional_callbacks = true
1124
-
1125
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1126
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1127
-
1128
- You can opt into the new behavior and remove this warning by setting:
1129
-
1130
- config.active_record.raise_in_transactional_callbacks = true
1131
-
1132
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1133
- RevelryContent::Content Load (0.6ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1134
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1135
-
1136
-
1137
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:03:19 -0500
1138
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1139
-
1140
- ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
1141
- gem 'responders', '~> 2.0'
1142
- Consult the Rails upgrade guide for details.):
1143
- actionpack (4.2.1) lib/action_controller/metal/mime_responds.rb:9:in `respond_to'
1144
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:2:in `<class:ContentsController>'
1145
- /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:1:in `<top (required)>'
1146
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `load'
1147
- activesupport (4.2.1) lib/active_support/dependencies.rb:457:in `block in load_file'
1148
- activesupport (4.2.1) lib/active_support/dependencies.rb:647:in `new_constants_in'
1149
- activesupport (4.2.1) lib/active_support/dependencies.rb:456:in `load_file'
1150
- activesupport (4.2.1) lib/active_support/dependencies.rb:354:in `require_or_load'
1151
- activesupport (4.2.1) lib/active_support/dependencies.rb:494:in `load_missing_constant'
1152
- activesupport (4.2.1) lib/active_support/dependencies.rb:184:in `const_missing'
1153
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `const_get'
1154
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:263:in `block in constantize'
1155
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `each'
1156
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `inject'
1157
- activesupport (4.2.1) lib/active_support/inflector/methods.rb:259:in `constantize'
1158
- activesupport (4.2.1) lib/active_support/dependencies.rb:566:in `get'
1159
- activesupport (4.2.1) lib/active_support/dependencies.rb:597:in `constantize'
1160
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:70:in `controller_reference'
1161
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:60:in `controller'
1162
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:39:in `serve'
1163
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1164
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1165
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1166
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1167
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1168
- railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
1169
- railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
1170
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1171
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1172
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1173
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1174
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1175
- rack (1.6.0) lib/rack/etag.rb:24:in `call'
1176
- rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
1177
- rack (1.6.0) lib/rack/head.rb:13:in `call'
1178
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1179
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1180
- rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1181
- rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1182
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1183
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1184
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1185
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1186
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1187
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1188
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1189
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1190
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1191
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1192
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1193
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1194
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1195
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1196
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1197
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1198
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1199
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1200
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1201
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1202
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1203
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1204
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1205
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1206
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
1207
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1208
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1209
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1210
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1211
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
1212
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1213
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1214
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1215
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1216
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1217
-
1218
-
1219
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms)
1220
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (5.4ms)
1221
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1222
-
1223
- You can opt into the new behavior and remove this warning by setting:
1224
-
1225
- config.active_record.raise_in_transactional_callbacks = true
1226
-
1227
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1228
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1229
-
1230
- You can opt into the new behavior and remove this warning by setting:
1231
-
1232
- config.active_record.raise_in_transactional_callbacks = true
1233
-
1234
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1235
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1236
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1237
-
1238
-
1239
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-04-27 17:04:24 -0500
1240
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1241
- Processing by RevelryContent::ContentsController#create as JSON
1242
- Parameters: {"authenticity_token"=>"1Itr4PVgWEFsKLBRCkjrT0z/yuCH+rlrm9/gC36FH9jHx6DW/3pN+0qVN392Lcn5Gt17VgNbPdBhOsmgi78j6w==", "content"=>{"key"=>"home.headline", "content"=>"Very Cool Default Headline"}}
1243
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1244
- Unpermitted parameter: content
1245
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.headline"]]
1246
- Unpermitted parameter: key
1247
-  (0.1ms) begin transaction
1248
- RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = 'home.headline' LIMIT 1
1249
- SQL (0.7ms) INSERT INTO "revelry_content_contents" ("key", "last_whodunnit", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["key", "home.headline"], ["last_whodunnit", "#<FakeUser:0x007fa7cf1c43e0>"], ["content", "Very Cool Default Headline"], ["created_at", "2015-04-27 22:04:24.508036"], ["updated_at", "2015-04-27 22:04:24.508036"]]
1250
- SQL (0.3ms) INSERT INTO "revelry_content_content_versions" ("event", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?) [["event", "create"], ["whodunnit", "#<FakeUser:0x007fa7d01b2568>"], ["item_id", 1], ["item_type", "RevelryContent::Content"], ["created_at", "2015-04-27 22:04:24.532872"]]
1251
-  (0.9ms) commit transaction
1252
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1253
- Completed 200 OK in 90ms (Views: 12.2ms | ActiveRecord: 3.6ms)
1254
-
1255
-
1256
- Started GET "/revelry_contentcontents" for 127.0.0.1 at 2015-04-27 17:04:59 -0500
1257
- Processing by RevelryContent::ContentsController#index as HTML
1258
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1259
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/index.html.erb within layouts/revelry_content/application (3.4ms)
1260
- Completed 200 OK in 1099ms (Views: 1095.0ms | ActiveRecord: 0.3ms)
1261
-
1262
-
1263
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1264
-
1265
-
1266
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1267
-
1268
-
1269
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1270
-
1271
-
1272
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1273
-
1274
-
1275
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1276
-
1277
-
1278
- Started GET "/assets/revelry_content/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1279
-
1280
-
1281
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1282
-
1283
-
1284
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1285
-
1286
-
1287
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1288
-
1289
-
1290
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1291
-
1292
-
1293
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1294
-
1295
-
1296
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1297
-
1298
-
1299
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1300
-
1301
-
1302
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1303
-
1304
-
1305
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1306
-
1307
-
1308
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1309
-
1310
-
1311
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1312
-
1313
-
1314
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1315
-
1316
-
1317
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1318
-
1319
-
1320
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1321
-
1322
-
1323
- Started GET "/revelry_content/versions/" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1324
- Processing by RevelryContent::VersionsController#index as JSON
1325
- RevelryContent::Content Load (0.8ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1326
- RevelryContent::ContentVersion Load (0.4ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions"
1327
- Completed 200 OK in 11ms (Views: 1.6ms | ActiveRecord: 1.2ms)
1328
-
1329
-
1330
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 17:05:01 -0500
1331
-
1332
-
1333
- Started DELETE "/revelry_contentversions/null/revert_all_to" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1334
- Processing by RevelryContent::VersionsController#revert_all_to as HTML
1335
- Parameters: {"authenticity_token"=>"n6binuaCnOJKaUUtCeikf06qot3jMozIqUQsahu8gbGM6imo7JiJWGzUwgN1jYbJGIgTa2eTCHNToQXB7oa9gg==", "id"=>"null"}
1336
- RevelryContent::ContentVersion Load (0.3ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions" WHERE (id >= 'null') ORDER BY id desc
1337
- Redirected to http://localhost:3000/revelry_contentcontents
1338
- Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
1339
-
1340
-
1341
- Started GET "/revelry_contentcontents" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1342
- Processing by RevelryContent::ContentsController#index as HTML
1343
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1344
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/index.html.erb within layouts/revelry_content/application (0.1ms)
1345
- Completed 200 OK in 53ms (Views: 51.2ms | ActiveRecord: 0.2ms)
1346
-
1347
-
1348
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1349
-
1350
-
1351
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1352
-
1353
-
1354
- Started GET "/assets/revelry_content/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1355
-
1356
-
1357
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1358
-
1359
-
1360
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1361
-
1362
-
1363
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1364
-
1365
-
1366
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1367
-
1368
-
1369
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1370
-
1371
-
1372
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1373
-
1374
-
1375
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1376
-
1377
-
1378
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1379
-
1380
-
1381
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1382
-
1383
-
1384
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1385
-
1386
-
1387
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1388
-
1389
-
1390
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1391
-
1392
-
1393
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1394
-
1395
-
1396
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1397
-
1398
-
1399
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1400
-
1401
-
1402
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1403
-
1404
-
1405
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1406
-
1407
-
1408
- Started GET "/revelry_content/versions/" for 127.0.0.1 at 2015-04-27 17:05:11 -0500
1409
- Processing by RevelryContent::VersionsController#index as JSON
1410
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1411
- RevelryContent::ContentVersion Load (0.2ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions"
1412
- Completed 200 OK in 6ms (Views: 1.9ms | ActiveRecord: 0.5ms)
1413
-
1414
-
1415
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:06:01 -0500
1416
-
1417
-
1418
- Started GET "/revelry_contentcontents" for 127.0.0.1 at 2015-04-27 17:32:43 -0500
1419
- Processing by RevelryContent::ContentsController#index as HTML
1420
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1421
-
1422
- You can opt into the new behavior and remove this warning by setting:
1423
-
1424
- config.active_record.raise_in_transactional_callbacks = true
1425
-
1426
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1427
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1428
-
1429
- You can opt into the new behavior and remove this warning by setting:
1430
-
1431
- config.active_record.raise_in_transactional_callbacks = true
1432
-
1433
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1434
- RevelryContent::Content Load (1.0ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1435
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/index.html.erb within layouts/revelry_content/application (0.5ms)
1436
- Completed 200 OK in 144ms (Views: 92.2ms | ActiveRecord: 1.8ms)
1437
-
1438
-
1439
- Started GET "/assets/revelry_content/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1440
-
1441
-
1442
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1443
-
1444
-
1445
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1446
-
1447
-
1448
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1449
-
1450
-
1451
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1452
-
1453
-
1454
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1455
-
1456
-
1457
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1458
-
1459
-
1460
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1461
-
1462
-
1463
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1464
-
1465
-
1466
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1467
-
1468
-
1469
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1470
-
1471
-
1472
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1473
-
1474
-
1475
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1476
-
1477
-
1478
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1479
-
1480
-
1481
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1482
-
1483
-
1484
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1485
-
1486
-
1487
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1488
-
1489
-
1490
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1491
-
1492
-
1493
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1494
-
1495
-
1496
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1497
-
1498
-
1499
- Started GET "/revelry_content/versions/" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1500
- Processing by RevelryContent::VersionsController#index as JSON
1501
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1502
- RevelryContent::ContentVersion Load (0.3ms) SELECT "revelry_content_content_versions".* FROM "revelry_content_content_versions"
1503
- Completed 200 OK in 17ms (Views: 4.4ms | ActiveRecord: 1.5ms)
1504
-
1505
-
1506
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 17:32:44 -0500
1507
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1508
-
1509
- You can opt into the new behavior and remove this warning by setting:
1510
-
1511
- config.active_record.raise_in_transactional_callbacks = true
1512
-
1513
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1514
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1515
-
1516
- You can opt into the new behavior and remove this warning by setting:
1517
-
1518
- config.active_record.raise_in_transactional_callbacks = true
1519
-
1520
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1521
- RevelryContent::Content Load (0.4ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1522
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1523
-
1524
-
1525
- Started GET "/" for 127.0.0.1 at 2015-04-27 22:14:25 -0500
1526
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1527
- Processing by HomeController#index as HTML
1528
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1529
- Rendered home/index.html.erb within layouts/application (4.7ms)
1530
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.3ms)
1531
- Completed 200 OK in 732ms (Views: 727.1ms | ActiveRecord: 0.3ms)
1532
-
1533
-
1534
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1535
-
1536
-
1537
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1538
-
1539
-
1540
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1541
-
1542
-
1543
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1544
-
1545
-
1546
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1547
-
1548
-
1549
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1550
-
1551
-
1552
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1553
-
1554
-
1555
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1556
-
1557
-
1558
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1559
-
1560
-
1561
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1562
-
1563
-
1564
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1565
-
1566
-
1567
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1568
-
1569
-
1570
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1571
-
1572
-
1573
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1574
-
1575
-
1576
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1577
-
1578
-
1579
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1580
-
1581
-
1582
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1583
-
1584
-
1585
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1586
-
1587
-
1588
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1589
-
1590
-
1591
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1592
-
1593
-
1594
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-04-27 22:14:26 -0500
1595
-
1596
-
1597
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 22:14:47 -0500
1598
-
1599
-
1600
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-04-27 22:18:35 -0500
1601
-
1602
-
1603
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-04-27 22:19:39 -0500
1604
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1605
-
1606
- You can opt into the new behavior and remove this warning by setting:
1607
-
1608
- config.active_record.raise_in_transactional_callbacks = true
1609
-
1610
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1611
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1612
-
1613
- You can opt into the new behavior and remove this warning by setting:
1614
-
1615
- config.active_record.raise_in_transactional_callbacks = true
1616
-
1617
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1618
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1619
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1620
-
1621
-
1622
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:45:39 -0500
1623
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1624
- Processing by HomeController#index as HTML
1625
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1626
-
1627
- You can opt into the new behavior and remove this warning by setting:
1628
-
1629
- config.active_record.raise_in_transactional_callbacks = true
1630
-
1631
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1632
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1633
-
1634
- You can opt into the new behavior and remove this warning by setting:
1635
-
1636
- config.active_record.raise_in_transactional_callbacks = true
1637
-
1638
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1639
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1640
- Rendered home/index.html.erb within layouts/application (6.0ms)
1641
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.4ms)
1642
- Completed 200 OK in 796ms (Views: 766.3ms | ActiveRecord: 0.9ms)
1643
-
1644
-
1645
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1646
-
1647
-
1648
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1649
-
1650
-
1651
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1652
-
1653
-
1654
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1655
-
1656
-
1657
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1658
-
1659
-
1660
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1661
-
1662
-
1663
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1664
-
1665
-
1666
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1667
-
1668
-
1669
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1670
-
1671
-
1672
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1673
-
1674
-
1675
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1676
-
1677
-
1678
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1679
-
1680
-
1681
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1682
-
1683
-
1684
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1685
-
1686
-
1687
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1688
-
1689
-
1690
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1691
-
1692
-
1693
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1694
-
1695
-
1696
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1697
-
1698
-
1699
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1700
-
1701
-
1702
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1703
-
1704
-
1705
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:45:40 -0500
1706
-
1707
-
1708
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 14:52:24 -0500
1709
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1710
-
1711
- You can opt into the new behavior and remove this warning by setting:
1712
-
1713
- config.active_record.raise_in_transactional_callbacks = true
1714
-
1715
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1716
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1717
-
1718
- You can opt into the new behavior and remove this warning by setting:
1719
-
1720
- config.active_record.raise_in_transactional_callbacks = true
1721
-
1722
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1723
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1724
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1725
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1726
-
1727
- You can opt into the new behavior and remove this warning by setting:
1728
-
1729
- config.active_record.raise_in_transactional_callbacks = true
1730
-
1731
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1732
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1733
-
1734
- You can opt into the new behavior and remove this warning by setting:
1735
-
1736
- config.active_record.raise_in_transactional_callbacks = true
1737
-
1738
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1739
- RevelryContent::Content Load (0.6ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1740
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1741
-
1742
-
1743
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:56:03 -0500
1744
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1745
- Processing by HomeController#index as HTML
1746
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1747
- Rendered home/index.html.erb within layouts/application (4.6ms)
1748
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.4ms)
1749
- Completed 200 OK in 697ms (Views: 692.7ms | ActiveRecord: 0.5ms)
1750
-
1751
-
1752
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1753
-
1754
-
1755
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1756
-
1757
-
1758
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1759
-
1760
-
1761
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1762
-
1763
-
1764
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1765
-
1766
-
1767
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1768
-
1769
-
1770
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1771
-
1772
-
1773
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1774
-
1775
-
1776
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1777
-
1778
-
1779
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1780
-
1781
-
1782
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1783
-
1784
-
1785
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1786
-
1787
-
1788
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1789
-
1790
-
1791
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1792
-
1793
-
1794
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1795
-
1796
-
1797
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1798
-
1799
-
1800
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1801
-
1802
-
1803
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1804
-
1805
-
1806
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1807
-
1808
-
1809
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1810
-
1811
-
1812
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 14:56:04 -0500
1813
-
1814
-
1815
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 14:56:09 -0500
1816
-
1817
-
1818
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 14:56:18 -0500
1819
- Processing by RevelryContent::ContentsController#create as JSON
1820
- Parameters: {"authenticity_token"=>"iH6bdg2bnRLI818zC0bWHjxlgBOandjMXbCoKNr6KvabMlBAB4GIqO5O2B13I/SoakcxpR48XHenVYGDL8AWxQ==", "content"=>{"key"=>"home.headline", "content"=>"Very Cool Default Headline!!!"}}
1821
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1822
- Unpermitted parameter: content
1823
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.headline"]]
1824
- Unpermitted parameter: key
1825
-  (0.1ms) begin transaction
1826
- RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE ("revelry_content_contents"."key" = 'home.headline' AND "revelry_content_contents"."id" != 1) LIMIT 1
1827
- DEPRECATION WARNING: `serialized_attributes` is deprecated without replacement, and will be removed in Rails 5.0. (called from create at /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:17)
1828
- SQL (0.6ms) UPDATE "revelry_content_contents" SET "last_whodunnit" = ?, "content" = ?, "updated_at" = ? WHERE "revelry_content_contents"."id" = ? [["last_whodunnit", "#<FakeUser:0x007fed0d1c3f48>"], ["content", "Very Cool Default Headline!!!"], ["updated_at", "2015-05-04 19:56:18.959318"], ["id", 1]]
1829
- SQL (0.6ms) INSERT INTO "revelry_content_content_versions" ("event", "object", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?, ?) [["event", "update"], ["object", "---\nid: 1\ntype: \nkey: home.headline\ncontent: Very Cool Default Headline\nsrc: \nlast_whodunnit: \"#<FakeUser:0x007fa7cf1c43e0>\"\ncreated_at: 2015-04-27 22:04:24.508036000 Z\nupdated_at: 2015-04-27 22:04:24.508036000 Z\n"], ["whodunnit", "#<FakeUser:0x007fed0e98eba0>"], ["item_id", 1], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 19:56:18.983305"]]
1830
-  (0.6ms) commit transaction
1831
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1832
- Completed 200 OK in 55ms (Views: 0.8ms | ActiveRecord: 3.1ms)
1833
-
1834
-
1835
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:57:10 -0500
1836
- Processing by HomeController#index as HTML
1837
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1838
- Rendered home/index.html.erb within layouts/application (3.4ms)
1839
- Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.1ms)
1840
-
1841
- ActionView::Template::Error (wrong number of arguments (2 for 1)):
1842
- 4: }
1843
- 5: </style>
1844
- 6:
1845
- 7: <h1><%= revelry_text('home.headline', 'Cool Default Headline') %></h1>
1846
- 8:
1847
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
1848
- 10:
1849
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328052771400'
1850
-
1851
-
1852
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
1853
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1854
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
1855
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.8ms)
1856
-
1857
-
1858
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:57:54 -0500
1859
- Processing by HomeController#index as HTML
1860
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1861
-
1862
- You can opt into the new behavior and remove this warning by setting:
1863
-
1864
- config.active_record.raise_in_transactional_callbacks = true
1865
-
1866
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1867
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1868
-
1869
- You can opt into the new behavior and remove this warning by setting:
1870
-
1871
- config.active_record.raise_in_transactional_callbacks = true
1872
-
1873
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1874
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1875
- Rendered home/index.html.erb within layouts/application (1.9ms)
1876
- Completed 500 Internal Server Error in 26ms (ActiveRecord: 1.2ms)
1877
-
1878
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
1879
- 4: }
1880
- 5: </style>
1881
- 6:
1882
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
1883
- 8:
1884
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
1885
- 10:
1886
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328121105320'
1887
-
1888
-
1889
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
1890
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
1891
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1892
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.2ms)
1893
-
1894
-
1895
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:58:22 -0500
1896
- Processing by HomeController#index as HTML
1897
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1898
- Rendered home/index.html.erb within layouts/application (0.6ms)
1899
- Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
1900
-
1901
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
1902
- 4: }
1903
- 5: </style>
1904
- 6:
1905
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
1906
- 8:
1907
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
1908
- 10:
1909
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328121105320'
1910
-
1911
-
1912
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
1913
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
1914
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
1915
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms)
1916
-
1917
-
1918
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:58:37 -0500
1919
- Processing by HomeController#index as HTML
1920
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1921
- Rendered home/index.html.erb within layouts/application (1.9ms)
1922
- Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.1ms)
1923
-
1924
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
1925
- 4: }
1926
- 5: </style>
1927
- 6:
1928
- 7: <h1><%= revelry_text('home.headline') %></h1>
1929
- 8:
1930
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
1931
- 10:
1932
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328084449040'
1933
-
1934
-
1935
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
1936
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
1937
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
1938
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.5ms)
1939
-
1940
-
1941
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:58:57 -0500
1942
- Processing by HomeController#index as HTML
1943
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1944
-
1945
- You can opt into the new behavior and remove this warning by setting:
1946
-
1947
- config.active_record.raise_in_transactional_callbacks = true
1948
-
1949
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1950
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1951
-
1952
- You can opt into the new behavior and remove this warning by setting:
1953
-
1954
- config.active_record.raise_in_transactional_callbacks = true
1955
-
1956
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1957
- RevelryContent::Content Load (0.4ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1958
- Rendered home/index.html.erb within layouts/application (0.6ms)
1959
- Completed 500 Internal Server Error in 15ms (ActiveRecord: 0.8ms)
1960
-
1961
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
1962
- 4: }
1963
- 5: </style>
1964
- 6:
1965
- 7: <h1><%= revelry_text('home.headline') %></h1>
1966
- 8:
1967
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
1968
- 10:
1969
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328084449040'
1970
-
1971
-
1972
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms)
1973
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
1974
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1975
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms)
1976
-
1977
-
1978
- Started GET "/" for 127.0.0.1 at 2015-05-04 14:59:49 -0500
1979
- Processing by HomeController#index as HTML
1980
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1981
-
1982
- You can opt into the new behavior and remove this warning by setting:
1983
-
1984
- config.active_record.raise_in_transactional_callbacks = true
1985
-
1986
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1987
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
1988
-
1989
- You can opt into the new behavior and remove this warning by setting:
1990
-
1991
- config.active_record.raise_in_transactional_callbacks = true
1992
-
1993
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
1994
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
1995
- Rendered home/index.html.erb within layouts/application (1.4ms)
1996
- Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.5ms)
1997
-
1998
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
1999
- 4: }
2000
- 5: </style>
2001
- 6:
2002
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2003
- 8:
2004
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2005
- 10:
2006
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328110591840'
2007
-
2008
-
2009
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.8ms)
2010
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
2011
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
2012
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.2ms)
2013
-
2014
-
2015
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:08 -0500
2016
- Processing by HomeController#index as HTML
2017
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2018
-
2019
- You can opt into the new behavior and remove this warning by setting:
2020
-
2021
- config.active_record.raise_in_transactional_callbacks = true
2022
-
2023
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2024
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2025
-
2026
- You can opt into the new behavior and remove this warning by setting:
2027
-
2028
- config.active_record.raise_in_transactional_callbacks = true
2029
-
2030
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2031
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2032
- Rendered home/index.html.erb within layouts/application (0.9ms)
2033
- Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.8ms)
2034
-
2035
- ActionView::Template::Error (wrong number of arguments (1 for 0)):
2036
- 4: }
2037
- 5: </style>
2038
- 6:
2039
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2040
- 8:
2041
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2042
- 10:
2043
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__2990725619634283766_70328110591840'
2044
-
2045
-
2046
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
2047
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
2048
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
2049
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.8ms)
2050
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2051
-
2052
- You can opt into the new behavior and remove this warning by setting:
2053
-
2054
- config.active_record.raise_in_transactional_callbacks = true
2055
-
2056
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2057
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2058
-
2059
- You can opt into the new behavior and remove this warning by setting:
2060
-
2061
- config.active_record.raise_in_transactional_callbacks = true
2062
-
2063
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2064
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2065
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2066
-
2067
-
2068
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:20 -0500
2069
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2070
- Processing by HomeController#index as HTML
2071
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2072
- Rendered home/index.html.erb within layouts/application (4.0ms)
2073
- Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.2ms)
2074
-
2075
- ActionView::Template::Error (wrong number of arguments (0 for 2)):
2076
- 4: }
2077
- 5: </style>
2078
- 6:
2079
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2080
- 8:
2081
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2082
- 10:
2083
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860'
2084
-
2085
-
2086
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
2087
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2088
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms)
2089
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (27.1ms)
2090
-
2091
-
2092
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:40 -0500
2093
- Processing by HomeController#index as HTML
2094
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2095
- Rendered home/index.html.erb within layouts/application (0.5ms)
2096
- Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
2097
-
2098
- ActionView::Template::Error (wrong number of arguments (0 for 2)):
2099
- 4: }
2100
- 5: </style>
2101
- 6:
2102
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2103
- 8:
2104
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2105
- 10:
2106
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860'
2107
-
2108
-
2109
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
2110
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
2111
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
2112
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.8ms)
2113
-
2114
-
2115
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:01:42 -0500
2116
- Processing by HomeController#index as HTML
2117
- RevelryContent::Content Load (0.6ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2118
- Rendered home/index.html.erb within layouts/application (1.0ms)
2119
- Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.6ms)
2120
-
2121
- ActionView::Template::Error (wrong number of arguments (0 for 2)):
2122
- 4: }
2123
- 5: </style>
2124
- 6:
2125
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2126
- 8:
2127
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2128
- 10:
2129
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860'
2130
-
2131
-
2132
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
2133
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
2134
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
2135
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.5ms)
2136
-
2137
-
2138
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:03 -0500
2139
- Processing by HomeController#index as HTML
2140
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2141
-
2142
- You can opt into the new behavior and remove this warning by setting:
2143
-
2144
- config.active_record.raise_in_transactional_callbacks = true
2145
-
2146
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2147
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2148
-
2149
- You can opt into the new behavior and remove this warning by setting:
2150
-
2151
- config.active_record.raise_in_transactional_callbacks = true
2152
-
2153
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2154
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2155
- Rendered home/index.html.erb within layouts/application (1.0ms)
2156
- Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.5ms)
2157
-
2158
- ActionView::Template::Error (wrong number of arguments (0 for 2)):
2159
- 4: }
2160
- 5: </style>
2161
- 6:
2162
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2163
- 8:
2164
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2165
- 10:
2166
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860'
2167
-
2168
-
2169
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
2170
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
2171
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
2172
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms)
2173
-
2174
-
2175
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:04 -0500
2176
- Processing by HomeController#index as HTML
2177
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2178
- Rendered home/index.html.erb within layouts/application (0.6ms)
2179
- Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
2180
-
2181
- ActionView::Template::Error (wrong number of arguments (0 for 2)):
2182
- 4: }
2183
- 5: </style>
2184
- 6:
2185
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2186
- 8:
2187
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2188
- 10:
2189
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___1337303404733941588_70340265603860'
2190
-
2191
-
2192
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
2193
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
2194
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
2195
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.9ms)
2196
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2197
-
2198
- You can opt into the new behavior and remove this warning by setting:
2199
-
2200
- config.active_record.raise_in_transactional_callbacks = true
2201
-
2202
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2203
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2204
-
2205
- You can opt into the new behavior and remove this warning by setting:
2206
-
2207
- config.active_record.raise_in_transactional_callbacks = true
2208
-
2209
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2210
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2211
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2212
-
2213
-
2214
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:18 -0500
2215
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2216
- Processing by HomeController#index as HTML
2217
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2218
- Rendered home/index.html.erb within layouts/application (4.3ms)
2219
- Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.1ms)
2220
-
2221
- ActionView::Template::Error (wrong number of arguments (2 for 1)):
2222
- 4: }
2223
- 5: </style>
2224
- 6:
2225
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2226
- 8:
2227
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2228
- 10:
2229
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__1670287767257472976_70179698515680'
2230
-
2231
-
2232
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.7ms)
2233
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2234
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.9ms)
2235
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (28.8ms)
2236
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2237
-
2238
- You can opt into the new behavior and remove this warning by setting:
2239
-
2240
- config.active_record.raise_in_transactional_callbacks = true
2241
-
2242
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2243
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2244
-
2245
- You can opt into the new behavior and remove this warning by setting:
2246
-
2247
- config.active_record.raise_in_transactional_callbacks = true
2248
-
2249
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2250
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2251
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2252
-
2253
-
2254
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:02:49 -0500
2255
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2256
- Processing by HomeController#index as HTML
2257
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2258
- Rendered home/index.html.erb within layouts/application (3.9ms)
2259
- Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.3ms)
2260
-
2261
- ActionView::Template::Error (wrong number of arguments (1 for 2)):
2262
- 6:
2263
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2264
- 8:
2265
- 9: <%= editable_image(@revelry_content_contents, 'home.image', current_user, default_url: 'http://placehold.it/200x200') %>
2266
- 10:
2267
- 11: <div>
2268
- 12: <%= editable_text(@revelry_content_contents, 'home.paragraph', current_user, default_text: <<-IPSUM
2269
- app/views/home/index.html.erb:9:in `_app_views_home_index_html_erb___3896413630115490879_70241154780300'
2270
-
2271
-
2272
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
2273
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
2274
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.9ms)
2275
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (29.9ms)
2276
-
2277
-
2278
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:12:34 -0500
2279
- Processing by HomeController#index as HTML
2280
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2281
-
2282
- You can opt into the new behavior and remove this warning by setting:
2283
-
2284
- config.active_record.raise_in_transactional_callbacks = true
2285
-
2286
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2287
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2288
-
2289
- You can opt into the new behavior and remove this warning by setting:
2290
-
2291
- config.active_record.raise_in_transactional_callbacks = true
2292
-
2293
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2294
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2295
- Rendered home/index.html.erb within layouts/application (8.5ms)
2296
- Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.6ms)
2297
-
2298
- ActionView::Template::Error (undefined method `revelry_image' for #<#<Class:0x007fc493a83298>:0x007fc493a828e8>):
2299
- 6:
2300
- 7: <h1><%= revelry_text('home.headline', default: 'Cool Default Headline') %></h1>
2301
- 8:
2302
- 9: <%= revelry_image('home.image', default: 'http://placehold.it/200x200') %>
2303
- 10:
2304
- 11: <div>
2305
- 12: <%= revelry_text('home.paragraph', default: <<-IPSUM
2306
- app/views/home/index.html.erb:9:in `_app_views_home_index_html_erb___3896413630115490879_70241133792120'
2307
-
2308
-
2309
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms)
2310
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2311
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
2312
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.0ms)
2313
-
2314
-
2315
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:12:50 -0500
2316
- Processing by HomeController#index as HTML
2317
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2318
- Rendered home/index.html.erb within layouts/application (10.9ms)
2319
- Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms)
2320
-
2321
- ActionView::Template::Error (undefined method `revelry_content_text' for #<#<Class:0x007fc493a83298>:0x007fc497507f90>):
2322
- 4: }
2323
- 5: </style>
2324
- 6:
2325
- 7: <h1><%= revelry_content_text('home.headline', default: 'Cool Default Headline') %></h1>
2326
- 8:
2327
- 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %>
2328
- 10:
2329
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___3896413630115490879_70241164474080'
2330
-
2331
-
2332
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.6ms)
2333
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
2334
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
2335
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (19.4ms)
2336
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2337
-
2338
- You can opt into the new behavior and remove this warning by setting:
2339
-
2340
- config.active_record.raise_in_transactional_callbacks = true
2341
-
2342
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2343
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2344
-
2345
- You can opt into the new behavior and remove this warning by setting:
2346
-
2347
- config.active_record.raise_in_transactional_callbacks = true
2348
-
2349
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2350
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2351
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2352
-
2353
-
2354
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:13:05 -0500
2355
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2356
- Processing by HomeController#index as HTML
2357
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2358
- Rendered home/index.html.erb within layouts/application (3.3ms)
2359
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.4ms)
2360
- Completed 200 OK in 694ms (Views: 690.1ms | ActiveRecord: 0.2ms)
2361
-
2362
-
2363
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2364
-
2365
-
2366
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2367
-
2368
-
2369
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2370
-
2371
-
2372
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2373
-
2374
-
2375
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2376
-
2377
-
2378
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2379
-
2380
-
2381
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2382
-
2383
-
2384
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2385
-
2386
-
2387
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2388
-
2389
-
2390
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2391
-
2392
-
2393
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2394
-
2395
-
2396
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2397
-
2398
-
2399
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2400
-
2401
-
2402
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2403
-
2404
-
2405
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2406
-
2407
-
2408
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2409
-
2410
-
2411
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2412
-
2413
-
2414
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2415
-
2416
-
2417
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2418
-
2419
-
2420
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2421
-
2422
-
2423
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:13:06 -0500
2424
-
2425
-
2426
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 15:13:10 -0500
2427
-
2428
-
2429
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:13:18 -0500
2430
- Processing by RevelryContent::ContentsController#create as JSON
2431
- Parameters: {"authenticity_token"=>"BzvNFn6F41YOF7saZ/pZwbFIV5JU1dh9FTKDuiEWOzwUdwYgdJ/27CiqPDQbn3t352rmJNB0XMbv16oR1CwHDw==", "content"=>{"key"=>"home.paragraph", "content"=>" dsafdsafdsafsafas long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"}}
2432
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2433
- Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.2ms)
2434
-
2435
- ArgumentError (wrong number of arguments (1 for 2)):
2436
- /Users/joel/src/revelry_content/lib/revelry_content/configuration.rb:34:in `block in default_authorization_policy'
2437
- /Users/joel/src/revelry_content/lib/revelry_content/controller_concern.rb:9:in `call'
2438
- /Users/joel/src/revelry_content/lib/revelry_content/controller_concern.rb:9:in `check_authorization'
2439
- activesupport (4.2.1) lib/active_support/callbacks.rb:432:in `block in make_lambda'
2440
- activesupport (4.2.1) lib/active_support/callbacks.rb:164:in `call'
2441
- activesupport (4.2.1) lib/active_support/callbacks.rb:164:in `block in halting'
2442
- activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
2443
- activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `block in call'
2444
- activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `each'
2445
- activesupport (4.2.1) lib/active_support/callbacks.rb:504:in `call'
2446
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2447
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2448
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2449
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2450
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2451
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2452
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2453
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2454
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2455
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2456
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2457
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2458
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2459
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2460
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2461
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2462
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2463
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2464
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2465
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2466
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2467
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2468
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2469
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2470
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2471
- railties (4.2.1) lib/rails/railtie.rb:194:in `public_send'
2472
- railties (4.2.1) lib/rails/railtie.rb:194:in `method_missing'
2473
- actionpack (4.2.1) lib/action_dispatch/routing/mapper.rb:51:in `serve'
2474
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2475
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2476
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2477
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2478
- rack (1.6.0) lib/rack/etag.rb:24:in `call'
2479
- rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
2480
- rack (1.6.0) lib/rack/head.rb:13:in `call'
2481
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2482
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2483
- rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
2484
- rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
2485
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2486
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2487
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2488
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2489
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2490
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2491
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2492
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2493
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2494
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2495
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2496
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2497
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2498
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2499
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2500
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2501
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2502
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2503
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2504
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2505
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2506
- rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
2507
- rack (1.6.0) lib/rack/runtime.rb:18:in `call'
2508
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2509
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
2510
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2511
- rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
2512
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2513
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2514
- rack (1.6.0) lib/rack/lock.rb:17:in `call'
2515
- rack (1.6.0) lib/rack/content_length.rb:15:in `call'
2516
- rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
2517
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2518
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2519
- /opt/rubies/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2520
-
2521
-
2522
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.2ms)
2523
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.5ms)
2524
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.6ms)
2525
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (12.0ms)
2526
-
2527
-
2528
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:13:26 -0500
2529
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2530
-
2531
- You can opt into the new behavior and remove this warning by setting:
2532
-
2533
- config.active_record.raise_in_transactional_callbacks = true
2534
-
2535
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2536
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2537
-
2538
- You can opt into the new behavior and remove this warning by setting:
2539
-
2540
- config.active_record.raise_in_transactional_callbacks = true
2541
-
2542
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2543
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2544
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2545
-
2546
-
2547
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:16:56 -0500
2548
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2549
- Processing by HomeController#index as HTML
2550
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2551
- Rendered home/index.html.erb within layouts/application (4.3ms)
2552
- Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.2ms)
2553
-
2554
- ActionView::Template::Error (wrong number of arguments (1 for 2)):
2555
- 4: }
2556
- 5: </style>
2557
- 6:
2558
- 7: <h1><%= revelry_content_text('home.headline', default: 'Cool Default Headline') %></h1>
2559
- 8:
2560
- 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %>
2561
- 10:
2562
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb__403112639835675945_70340678398660'
2563
-
2564
-
2565
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.9ms)
2566
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms)
2567
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms)
2568
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (35.6ms)
2569
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2570
-
2571
- You can opt into the new behavior and remove this warning by setting:
2572
-
2573
- config.active_record.raise_in_transactional_callbacks = true
2574
-
2575
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2576
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2577
-
2578
- You can opt into the new behavior and remove this warning by setting:
2579
-
2580
- config.active_record.raise_in_transactional_callbacks = true
2581
-
2582
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2583
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2584
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2585
-
2586
-
2587
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:18:06 -0500
2588
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2589
- Processing by HomeController#index as HTML
2590
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2591
- Rendered home/index.html.erb within layouts/application (3.7ms)
2592
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms)
2593
-
2594
- ActionView::Template::Error (wrong number of arguments (1 for 2)):
2595
- 4: }
2596
- 5: </style>
2597
- 6:
2598
- 7: <h1><%= revelry_content_text('home.headline', default: 'Cool Default Headline') %></h1>
2599
- 8:
2600
- 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %>
2601
- 10:
2602
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380'
2603
-
2604
-
2605
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
2606
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
2607
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.9ms)
2608
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (25.9ms)
2609
-
2610
-
2611
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:18:09 -0500
2612
- Processing by HomeController#index as HTML
2613
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2614
- Rendered home/index.html.erb within layouts/application (0.6ms)
2615
- Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
2616
-
2617
- ActionView::Template::Error (wrong number of arguments (1 for 2)):
2618
- 4: }
2619
- 5: </style>
2620
- 6:
2621
- 7: <h1><%= revelry_content_text('home.headline', default: 'Cool Default Headline') %></h1>
2622
- 8:
2623
- 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %>
2624
- 10:
2625
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380'
2626
-
2627
-
2628
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
2629
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2630
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
2631
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.9ms)
2632
-
2633
-
2634
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:18:13 -0500
2635
- Processing by HomeController#index as HTML
2636
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2637
- Rendered home/index.html.erb within layouts/application (0.8ms)
2638
- Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.2ms)
2639
-
2640
- ActionView::Template::Error (wrong number of arguments (1 for 2)):
2641
- 4: }
2642
- 5: </style>
2643
- 6:
2644
- 7: <h1><%= revelry_content_text('home.headline', default: 'Cool Default Headline') %></h1>
2645
- 8:
2646
- 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %>
2647
- 10:
2648
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380'
2649
-
2650
-
2651
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
2652
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
2653
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
2654
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.4ms)
2655
-
2656
-
2657
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:19:02 -0500
2658
- Processing by HomeController#index as HTML
2659
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2660
-
2661
- You can opt into the new behavior and remove this warning by setting:
2662
-
2663
- config.active_record.raise_in_transactional_callbacks = true
2664
-
2665
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2666
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2667
-
2668
- You can opt into the new behavior and remove this warning by setting:
2669
-
2670
- config.active_record.raise_in_transactional_callbacks = true
2671
-
2672
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2673
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2674
- Rendered home/index.html.erb within layouts/application (0.6ms)
2675
- Completed 500 Internal Server Error in 24ms (ActiveRecord: 0.6ms)
2676
-
2677
- ActionView::Template::Error (wrong number of arguments (1 for 2)):
2678
- 4: }
2679
- 5: </style>
2680
- 6:
2681
- 7: <h1><%= revelry_content_text('home.headline', default: 'Cool Default Headline') %></h1>
2682
- 8:
2683
- 9: <%= revelry_content_image('home.image', default: 'http://placehold.it/200x200') %>
2684
- 10:
2685
- app/views/home/index.html.erb:7:in `_app_views_home_index_html_erb___454698122058979035_70249203350380'
2686
-
2687
-
2688
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
2689
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
2690
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
2691
- Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.2ms)
2692
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2693
-
2694
- You can opt into the new behavior and remove this warning by setting:
2695
-
2696
- config.active_record.raise_in_transactional_callbacks = true
2697
-
2698
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2699
- DEPRECATION WARNING: Currently, Active Record suppresses errors raised within `after_rollback`/`after_commit` callbacks and only print them to the logs. In the next version, these errors will no longer be suppressed. Instead, the errors will propagate normally just like in other Active Record callbacks.
2700
-
2701
- You can opt into the new behavior and remove this warning by setting:
2702
-
2703
- config.active_record.raise_in_transactional_callbacks = true
2704
-
2705
- (called from <class:Content> at /Users/joel/src/revelry_content/app/models/revelry_content/content.rb:39)
2706
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2707
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2708
-
2709
-
2710
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:19:54 -0500
2711
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2712
- Processing by HomeController#index as HTML
2713
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2714
- Rendered home/index.html.erb within layouts/application (1.9ms)
2715
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.6ms)
2716
- Completed 200 OK in 664ms (Views: 660.3ms | ActiveRecord: 0.1ms)
2717
-
2718
-
2719
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2720
-
2721
-
2722
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2723
-
2724
-
2725
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2726
-
2727
-
2728
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2729
-
2730
-
2731
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2732
-
2733
-
2734
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2735
-
2736
-
2737
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2738
-
2739
-
2740
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2741
-
2742
-
2743
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2744
-
2745
-
2746
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2747
-
2748
-
2749
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2750
-
2751
-
2752
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2753
-
2754
-
2755
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2756
-
2757
-
2758
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2759
-
2760
-
2761
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2762
-
2763
-
2764
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2765
-
2766
-
2767
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2768
-
2769
-
2770
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2771
-
2772
-
2773
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2774
-
2775
-
2776
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2777
-
2778
-
2779
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:19:55 -0500
2780
-
2781
-
2782
- Started GET "/assets/icomoon.woff?r2fa9x" for 127.0.0.1 at 2015-05-04 15:19:58 -0500
2783
-
2784
-
2785
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:04 -0500
2786
- Processing by RevelryContent::ContentsController#create as JSON
2787
- Parameters: {"authenticity_token"=>"1BkKwdiFWub90XjSlggAAIaxkLc789DOOQWgDF3+9ArHVcH30p9PXNts//zqbSK20JMhAb9SVHXD4ImnqMTIOQ==", "content"=>{"key"=>"home.headline", "content"=>"Very Cool Default Headline!"}}
2788
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2789
- Unpermitted parameter: content
2790
- RevelryContent::Content Load (0.3ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.headline"]]
2791
- Unpermitted parameter: key
2792
-  (0.1ms) begin transaction
2793
- RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE ("revelry_content_contents"."key" = 'home.headline' AND "revelry_content_contents"."id" != 1) LIMIT 1
2794
- DEPRECATION WARNING: `serialized_attributes` is deprecated without replacement, and will be removed in Rails 5.0. (called from create at /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:17)
2795
- SQL (0.4ms) UPDATE "revelry_content_contents" SET "last_whodunnit" = ?, "content" = ?, "updated_at" = ? WHERE "revelry_content_contents"."id" = ? [["last_whodunnit", "#<FakeUser:0x007ff314b9ca80>"], ["content", "Very Cool Default Headline!"], ["updated_at", "2015-05-04 20:20:04.723218"], ["id", 1]]
2796
- SQL (0.3ms) INSERT INTO "revelry_content_content_versions" ("event", "object", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?, ?) [["event", "update"], ["object", "---\nid: 1\ntype: \nkey: home.headline\ncontent: Very Cool Default Headline!!!\nsrc: \nlast_whodunnit: \"#<FakeUser:0x007fed0d1c3f48>\"\ncreated_at: 2015-04-27 22:04:24.508036000 Z\nupdated_at: 2015-05-04 19:56:18.959318000 Z\n"], ["whodunnit", "#<FakeUser:0x007ff31a0489a8>"], ["item_id", 1], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:04.747769"]]
2797
-  (0.8ms) commit transaction
2798
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2799
- Completed 200 OK in 58ms (Views: 0.8ms | ActiveRecord: 2.8ms)
2800
-
2801
-
2802
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:21 -0500
2803
- Processing by RevelryContent::ContentsController#create as JSON
2804
- Parameters: {"authenticity_token"=>"1BkKwdiFWub90XjSlggAAIaxkLc789DOOQWgDF3+9ArHVcH30p9PXNts//zqbSK20JMhAb9SVHXD4ImnqMTIOQ==", "content"=>{"key"=>"home.paragraph", "content"=>"fdadfasfsaf long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"}}
2805
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2806
- Unpermitted parameter: content
2807
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.paragraph"]]
2808
- Unpermitted parameter: key
2809
-  (0.1ms) begin transaction
2810
- RevelryContent::Content Exists (0.3ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = 'home.paragraph' LIMIT 1
2811
- SQL (1.1ms) INSERT INTO "revelry_content_contents" ("key", "last_whodunnit", "content", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["key", "home.paragraph"], ["last_whodunnit", "#<FakeUser:0x007ff31a332c90>"], ["content", "fdadfasfsaf long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"], ["created_at", "2015-05-04 20:20:21.497700"], ["updated_at", "2015-05-04 20:20:21.497700"]]
2812
- SQL (0.2ms) INSERT INTO "revelry_content_content_versions" ("event", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?) [["event", "create"], ["whodunnit", "#<FakeUser:0x007ff31a319e70>"], ["item_id", 2], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:21.503336"]]
2813
-  (1.4ms) commit transaction
2814
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2815
- Completed 200 OK in 20ms (Views: 1.7ms | ActiveRecord: 3.4ms)
2816
-
2817
-
2818
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:33 -0500
2819
- Processing by RevelryContent::ContentsController#create as JSON
2820
- Parameters: {"authenticity_token"=>"1BkKwdiFWub90XjSlggAAIaxkLc789DOOQWgDF3+9ArHVcH30p9PXNts//zqbSK20JMhAb9SVHXD4ImnqMTIOQ==", "content"=>{"key"=>"home.paragraph", "content"=>"fdadfasfsaf long-chain **hydrocarbons** vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"}}
2821
- RevelryContent::Content Load (0.7ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2822
- Unpermitted parameter: content
2823
- RevelryContent::Content Load (0.1ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.paragraph"]]
2824
- Unpermitted parameter: key
2825
-  (0.0ms) begin transaction
2826
- RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE ("revelry_content_contents"."key" = 'home.paragraph' AND "revelry_content_contents"."id" != 2) LIMIT 1
2827
- DEPRECATION WARNING: `serialized_attributes` is deprecated without replacement, and will be removed in Rails 5.0. (called from create at /Users/joel/src/revelry_content/app/controllers/revelry_content/contents_controller.rb:17)
2828
- SQL (0.2ms) UPDATE "revelry_content_contents" SET "last_whodunnit" = ?, "content" = ?, "updated_at" = ? WHERE "revelry_content_contents"."id" = ? [["last_whodunnit", "#<FakeUser:0x007ff31a392280>"], ["content", "fdadfasfsaf long-chain **hydrocarbons** vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\n"], ["updated_at", "2015-05-04 20:20:33.897404"], ["id", 2]]
2829
- SQL (0.1ms) INSERT INTO "revelry_content_content_versions" ("event", "object", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?, ?) [["event", "update"], ["object", "---\nid: 2\ntype: \nkey: home.paragraph\ncontent: |\n fdadfasfsaf long-chain hydrocarbons vinyl urban modem sub-orbital order-flow free-market Kowloon decay futurity A.I. military-grade construct tattoo vinyl carbon. camera paranoid semiotics ablative DIY rifle Chiba urban human uplink carbon assault motion human rebar math-. singularity sentient shrine apophenia receding chrome Kowloon cartel denim sub-orbital wristwatch tiger-team neon geodesic military-grade tanto. A.I. sunglasses receding market lights futurity chrome sentient smart- numinous boat bomb faded towards lights carbon. physical range-rover silent silent hacker sentient advert uplink boat Kowloon monofilament computer tattoo cartel -ware order-flow. vinyl voodoo god Kowloon free-market cyber- stimulate Legba pen denim claymore mine bridge pre- office sub-orbital physical free-market. receding corporation katana physical realism singularity free-market katana nodality hacker advert wonton soup decay fluidity voodoo god Kowloon.\nsrc: \nlast_whodunnit: \"#<FakeUser:0x007ff31a332c90>\"\ncreated_at: 2015-05-04 20:20:21.497700000 Z\nupdated_at: 2015-05-04 20:20:21.497700000 Z\n"], ["whodunnit", "#<FakeUser:0x007ff31a374d48>"], ["item_id", 2], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:33.902331"]]
2830
-  (1.2ms) commit transaction
2831
- RevelryContent::Content Load (0.5ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2832
- Completed 200 OK in 21ms (Views: 1.3ms | ActiveRecord: 3.0ms)
2833
-
2834
-
2835
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2836
- Processing by HomeController#index as HTML
2837
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2838
- Rendered home/index.html.erb within layouts/application (0.7ms)
2839
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.0ms)
2840
- Completed 200 OK in 52ms (Views: 49.9ms | ActiveRecord: 0.1ms)
2841
-
2842
-
2843
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2844
-
2845
-
2846
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2847
-
2848
-
2849
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2850
-
2851
-
2852
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2853
-
2854
-
2855
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2856
-
2857
-
2858
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2859
-
2860
-
2861
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2862
-
2863
-
2864
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2865
-
2866
-
2867
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2868
-
2869
-
2870
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2871
-
2872
-
2873
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2874
-
2875
-
2876
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2877
-
2878
-
2879
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2880
-
2881
-
2882
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2883
-
2884
-
2885
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2886
-
2887
-
2888
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2889
-
2890
-
2891
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2892
-
2893
-
2894
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2895
-
2896
-
2897
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2898
-
2899
-
2900
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2901
-
2902
-
2903
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:20:41 -0500
2904
-
2905
-
2906
- Started POST "/revelry_content/contents" for 127.0.0.1 at 2015-05-04 15:20:55 -0500
2907
- Processing by RevelryContent::ContentsController#create as JSON
2908
- Parameters: {"content"=>{"src"=>#<ActionDispatch::Http::UploadedFile:0x007ff31c97af10 @tempfile=#<Tempfile:/var/folders/q0/ym9_d8zd24n22kg594gvmw3m0000gn/T/RackMultipart20150504-68157-6a92r.png>, @original_filename="Screen Shot 2015-05-04 at 9.50.48 AM.png", @content_type="image/png", @headers="Content-Disposition: form-data; name=\"content[src]\"; filename=\"Screen Shot 2015-05-04 at 9.50.48 AM.png\"\r\nContent-Type: image/png\r\n">, "key"=>"home.image"}, "authenticity_token"=>"5tszgUQv7W/8i53LEvcVV4N73NDvYV7gZuQsYZsp9u/1l/i3TjX41do2GuVukjfh1VltZmvA2lucAQXKbhPK3A=="}
2909
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2910
- Unpermitted parameter: src
2911
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = ? LIMIT 1 [["key", "home.image"]]
2912
- Unpermitted parameter: key
2913
-  (0.1ms) begin transaction
2914
- RevelryContent::Content Exists (0.1ms) SELECT 1 AS one FROM "revelry_content_contents" WHERE "revelry_content_contents"."key" = 'home.image' LIMIT 1
2915
- SQL (0.4ms) INSERT INTO "revelry_content_contents" ("key", "last_whodunnit", "src", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["key", "home.image"], ["last_whodunnit", "#<FakeUser:0x007ff31a9642d0>"], ["src", "Screen_Shot_2015-05-04_at_9.50.48_AM.png"], ["created_at", "2015-05-04 20:20:55.713872"], ["updated_at", "2015-05-04 20:20:55.713872"]]
2916
- SQL (0.4ms) INSERT INTO "revelry_content_content_versions" ("event", "whodunnit", "item_id", "item_type", "created_at") VALUES (?, ?, ?, ?, ?) [["event", "create"], ["whodunnit", "#<FakeUser:0x007ff31a71f8a8>"], ["item_id", 3], ["item_type", "RevelryContent::Content"], ["created_at", "2015-05-04 20:20:55.716864"]]
2917
-  (0.7ms) commit transaction
2918
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2919
- Completed 200 OK in 32ms (Views: 0.5ms | ActiveRecord: 2.3ms)
2920
-
2921
-
2922
- Started GET "/" for 127.0.0.1 at 2015-05-04 15:21:23 -0500
2923
- Processing by HomeController#index as HTML
2924
- RevelryContent::Content Load (0.2ms) SELECT "revelry_content_contents".* FROM "revelry_content_contents"
2925
- Rendered home/index.html.erb within layouts/application (0.8ms)
2926
- Rendered /Users/joel/src/revelry_content/app/views/revelry_content/contents/_menus.html.erb (0.1ms)
2927
- Completed 200 OK in 61ms (Views: 57.7ms | ActiveRecord: 0.2ms)
2928
-
2929
-
2930
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2931
-
2932
-
2933
- Started GET "/assets/revelry_content/config.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2934
-
2935
-
2936
- Started GET "/assets/revelry_content/utilities.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2937
-
2938
-
2939
- Started GET "/assets/vendor/react_ujs.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2940
-
2941
-
2942
- Started GET "/assets/jquery.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2943
-
2944
-
2945
- Started GET "/assets/underscore.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2946
-
2947
-
2948
- Started GET "/assets/backbone.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2949
-
2950
-
2951
- Started GET "/assets/moment.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2952
-
2953
-
2954
- Started GET "/assets/moment-timezone-with-data-2010-2020.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2955
-
2956
-
2957
- Started GET "/assets/revelry_content/mixins/EditModeListener.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2958
-
2959
-
2960
- Started GET "/assets/revelry_content/models/Content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2961
-
2962
-
2963
- Started GET "/assets/revelry_content/models/Version.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2964
-
2965
-
2966
- Started GET "/assets/revelry_content/components/EditModeButton.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2967
-
2968
-
2969
- Started GET "/assets/revelry_content/components/Loader.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2970
-
2971
-
2972
- Started GET "/assets/revelry_content/components/Admin.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2973
-
2974
-
2975
- Started GET "/assets/revelry_content/components/Time.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2976
-
2977
-
2978
- Started GET "/assets/revelry_content/components/TopBar.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2979
-
2980
-
2981
- Started GET "/assets/revelry_content/components/editor.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2982
-
2983
-
2984
- Started GET "/assets/revelry_content/components/versions.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2985
-
2986
-
2987
- Started GET "/assets/revelry_content.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500
2988
-
2989
-
2990
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2015-05-04 15:21:24 -0500