revelry_content 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (307) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +177 -6
  3. data/Rakefile +34 -0
  4. data/app/assets/fonts/icomoon.eot +0 -0
  5. data/app/assets/fonts/icomoon.svg +20 -0
  6. data/app/assets/fonts/icomoon.ttf +0 -0
  7. data/app/assets/fonts/icomoon.woff +0 -0
  8. data/app/assets/javascripts/revelry_content.js.coffee +21 -0
  9. data/app/assets/javascripts/revelry_content/components/Admin.js.cjsx +90 -0
  10. data/app/assets/javascripts/revelry_content/components/EditModeButton.js.cjsx +16 -0
  11. data/app/assets/javascripts/revelry_content/components/Loader.js.cjsx +10 -0
  12. data/app/assets/javascripts/revelry_content/components/Time.js.cjsx +15 -0
  13. data/app/assets/javascripts/revelry_content/components/TopBar.js.cjsx +20 -0
  14. data/app/assets/javascripts/revelry_content/components/editor.js.coffee +295 -0
  15. data/app/assets/javascripts/revelry_content/components/versions.js.coffee +170 -0
  16. data/app/assets/javascripts/revelry_content/config.js.coffee.erb +2 -0
  17. data/app/assets/javascripts/revelry_content/mixins/EditModeListener.coffee +9 -0
  18. data/app/assets/javascripts/revelry_content/models/Content.js.coffee +16 -0
  19. data/app/assets/javascripts/revelry_content/models/Version.js.coffee +8 -0
  20. data/app/assets/javascripts/revelry_content/server_side.js.coffee +10 -0
  21. data/app/assets/javascripts/revelry_content/utilities.js +69 -0
  22. data/app/assets/javascripts/vendor/react_ujs.js +64 -0
  23. data/app/assets/stylesheets/revelry_content/application.scss +22 -0
  24. data/app/assets/stylesheets/revelry_content/components/EditableList.scss +42 -0
  25. data/app/assets/stylesheets/revelry_content/components/buttons.scss +137 -0
  26. data/app/assets/stylesheets/revelry_content/components/editors.scss +62 -0
  27. data/app/assets/stylesheets/revelry_content/components/loader.scss +53 -0
  28. data/app/assets/stylesheets/revelry_content/components/topBar.scss +42 -0
  29. data/app/assets/stylesheets/revelry_content/components/version.scss +72 -0
  30. data/app/assets/stylesheets/revelry_content/layout.scss +36 -0
  31. data/app/assets/stylesheets/revelry_content/modules/base.scss +3 -0
  32. data/app/assets/stylesheets/revelry_content/modules/colors.scss +14 -0
  33. data/app/assets/stylesheets/revelry_content/modules/mixins.scss +0 -0
  34. data/app/assets/stylesheets/revelry_content/modules/vars.scss +46 -0
  35. data/app/assets/stylesheets/revelry_content/partials/iconStyle.scss +91 -0
  36. data/app/assets/stylesheets/revelry_content/partials/utilities.scss +10 -0
  37. data/app/assets/stylesheets/revelry_content/reset.scss +21 -0
  38. data/app/controllers/revelry_content/application_controller.rb +4 -0
  39. data/app/controllers/revelry_content/contents_controller.rb +63 -0
  40. data/app/controllers/revelry_content/versions_controller.rb +36 -0
  41. data/app/helpers/revelry_content/application_helper.rb +4 -0
  42. data/app/helpers/revelry_content/contents_helper.rb +29 -0
  43. data/app/models/revelry_content/content.rb +167 -0
  44. data/app/models/revelry_content/content_version.rb +21 -0
  45. data/app/uploaders/src_uploader.rb +48 -0
  46. data/app/views/layouts/revelry_content/application.html.erb +14 -0
  47. data/app/views/revelry_content/contents/_menus.html.erb +2 -0
  48. data/app/views/revelry_content/contents/index.html.erb +1 -0
  49. data/config/routes.rb +14 -0
  50. data/lib/generators/revelry_content/install_generator.rb +25 -0
  51. data/lib/generators/revelry_content/templates/create_revelry_content_contents.rb +12 -0
  52. data/lib/generators/revelry_content/templates/create_versions.rb +14 -0
  53. data/lib/revelry_content.rb +38 -0
  54. data/lib/revelry_content/configuration.rb +69 -0
  55. data/lib/revelry_content/controller_concern.rb +11 -0
  56. data/lib/revelry_content/engine.rb +22 -0
  57. data/lib/revelry_content/js_exporter.rb +15 -0
  58. data/lib/revelry_content/model_concern.rb +11 -0
  59. data/lib/revelry_content/railtie.rb +7 -0
  60. data/lib/revelry_content/version.rb +3 -0
  61. data/lib/tasks/revelry_content_tasks.rake +6 -0
  62. data/test/controllers/revelry_content/contents_controller_test.rb +9 -0
  63. data/test/dummy/README.rdoc +28 -0
  64. data/test/dummy/Rakefile +6 -0
  65. data/test/dummy/app/assets/javascripts/application.js +1 -0
  66. data/test/dummy/app/assets/javascripts/home.js +2 -0
  67. data/test/dummy/app/assets/stylesheets/application.scss +14 -0
  68. data/test/dummy/app/controllers/application_controller.rb +10 -0
  69. data/test/dummy/app/controllers/home_controller.rb +4 -0
  70. data/test/dummy/app/helpers/application_helper.rb +2 -0
  71. data/test/dummy/app/helpers/home_helper.rb +2 -0
  72. data/test/dummy/app/models/fake_user.rb +5 -0
  73. data/test/dummy/app/views/home/index.html.erb +16 -0
  74. data/test/dummy/app/views/layouts/application.html.erb +16 -0
  75. data/test/dummy/bin/bundle +3 -0
  76. data/test/dummy/bin/rails +4 -0
  77. data/test/dummy/bin/rake +4 -0
  78. data/test/dummy/config.ru +4 -0
  79. data/test/dummy/config/application.rb +23 -0
  80. data/test/dummy/config/boot.rb +5 -0
  81. data/test/dummy/config/database.yml +25 -0
  82. data/test/dummy/config/environment.rb +5 -0
  83. data/test/dummy/config/environments/development.rb +32 -0
  84. data/test/dummy/config/environments/production.rb +80 -0
  85. data/test/dummy/config/environments/test.rb +39 -0
  86. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  87. data/test/dummy/config/initializers/carrierwave.rb +5 -0
  88. data/test/dummy/config/initializers/content.rb +3 -0
  89. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  90. data/test/dummy/config/initializers/inflections.rb +16 -0
  91. data/test/dummy/config/initializers/mime_types.rb +5 -0
  92. data/test/dummy/config/initializers/revelry_content.rb +2 -0
  93. data/test/dummy/config/initializers/secret_token.rb +12 -0
  94. data/test/dummy/config/initializers/session_store.rb +3 -0
  95. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  96. data/test/dummy/config/locales/en.yml +23 -0
  97. data/test/dummy/config/papertrail.rb +1 -0
  98. data/test/dummy/config/routes.rb +4 -0
  99. data/test/dummy/db/development.sqlite3 +0 -0
  100. data/test/dummy/db/migrate/20150427211438_create_revelry_content_contents.rb +12 -0
  101. data/test/dummy/db/migrate/20150427212126_create_versions.rb +14 -0
  102. data/test/dummy/db/schema.rb +38 -0
  103. data/test/dummy/log/development.log +1415 -0
  104. data/test/dummy/public/404.html +58 -0
  105. data/test/dummy/public/422.html +58 -0
  106. data/test/dummy/public/500.html +57 -0
  107. data/test/dummy/public/favicon.ico +0 -0
  108. data/test/dummy/test/controllers/home_controller_test.rb +7 -0
  109. data/test/dummy/test/helpers/home_helper_test.rb +4 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-I_fh6Ob3TV3ynXTvv2TsuKA8cQq62L1tKIrIuNXWjA.cache +1 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-YnOULGJdPpgh539S1Ms1ELd5--WkKXQZL4yYylOy-0.cache +1 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/01i3BQNbZnC6BxmgguLy4xMYU2RnsNjDy_lEOEdzhxY.cache +1 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0CsApXQBjT34U567rgWiQGYOFwIpgM1ZcV3ZvrXPAXg.cache +1 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0LnMwfkPx0KckDudP0t_qfcIfrUx2JEt9_W28i5ota8.cache +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0Soh65Z50qGQ79OzRV5ywJzksbLPZ9Y7Xukmqyr6k5E.cache +1 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0XbuhYD4hx4ktBwomnPqrp-8ofGrK18w0XFrKr9A0TQ.cache +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1aGcEQlzCZqj47bR8b18bidGhSM2TCoUF8PH47DmsLU.cache +0 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1k4qrvfTSqyZpqJotrEJvryNYKwAYhcPYDr762tOceA.cache +1 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1qAjZK81hSd2VjC4whKNDW4X7SdJpLItpFtUW5R2vUU.cache +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1tgQBRMWbVAGLWkDo0fO1_ePFLz60fDuTdCKwp-LIJU.cache +1 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/22e58P_cEp6-Pu5wgZqEMEpiJGooGJ2dI6gfNXacBaw.cache +1 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2ZbqEyDxBgh2_LtnR16sYKThwIziSqlASeCjQjkwL7Q.cache +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2t8ZjvFIs5Qg2owTTr20k8NqE0dCrbY5mHTjJGQd2To.cache +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4cBcXkgJSg0A9kNtcagSpP-C7RpYMO7GIYMiIdC0K48.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4eWrs3PFkK1uDMlHgGflFhNtKLF63kY4nMqArSbZBpY.cache +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5-_j0ZY9kq3RzZvSq8dpYirIlmqsRJUSBNkE97ZcqWY.cache +0 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/55ea_CKRYg4qGN5pyZy2H1oKxEnbQuJzgGyrVQ1ZE-k.cache +1 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5PZzqc1OeigG9XRqgCM3SCT9fLVn6wTm6awQx74XAD0.cache +1 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5WUZd0B2PMhhtp-V7XsX5zFLOPXl9z2WpIVdT8rW5AE.cache +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5cWdZIkyqWp1hyfiXzGiMnuqZ_4SlHG0DmWpUkQYuS8.cache +1 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5wFIFg4lQ-rd1ZWBhlRi9J56-EqjP61WWYq0jOA7bek.cache +1 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6COX4oqZCCZnmoes6ehqGZqIr2xtXv5HVYqJzRnccnU.cache +2 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6Ck5oeyDTZNctS2vkmtYRv6UU5SCv8DW_cqAumQHEW4.cache +1 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6W7Zp0ylWiCA_3Z-Hese0EPiWLITfAv2OViiC3GHvzU.cache +0 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6ajykKpm3QojPPBBJIx6vRImRgKpc_V_zX68dF-yV1Q.cache +1 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/75Qu5KXpoOg--ZIa5yMWG0sQS_OoZiF0og8GEfCKodI.cache +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/78FVepsCcIAm-tqmhFYO4eaDkF1BHiAwzZjoc1W6XrI.cache +1 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7OzH_p-6ZYmSIl-UNVwWQfD6PJHalPe5Y01jCP_MF1w.cache +1 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/856F5ONTmAq3bpS5lqrZAzppRy4gwhAkugo9inM3EEU.cache +1 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8AVC27x21kixmECkHeOm4sR-mSbzhJO320NRwrW6B38.cache +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8KCGLeeBgsHpq-GGsxAKvONGThHONpkBhLmQv5x-5i8.cache +0 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8cyMCW5yogfK5gPFpci4rPtVb8pVIiZmF5DpOH8F07Y.cache +1 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9EThCCo9tuqXzBz-afDke-GvEyM_NG0dxw7dSdkzINw.cache +2 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9NoeClumq19p-VmRk5PPOHLvDXN_Jr6BCYnczJWWfv4.cache +0 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9YD7CWCBCkOdAYp-yB8nGhaNDiiUWsP7fzRWPmHbzKI.cache +2 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AY9mbclr0zMOzxzP4BYRTYyvBOlpLFHHQAimzs6dSDI.cache +38 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AqkMYZH-ERTqi-15YvdhRVtysLKqim5CV7-GILZNras.cache +0 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Au8GVVKkzmp8TySAWMgFJQObozIt4Mr-RW5BolO8J2k.cache +2 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BBPtOTznDSAhX5tIqbw_JRw9Cppz2SVtSFsJ1CpC37k.cache +2 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CC0dQuHqBjWqdKsRp2Ntw6nn3M1nC5lUY-dd8lMzJ6Y.cache +1 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CWYN7KxLVsU-N9FbSIrHgO979x5b6AeyckCfZ892Y7k.cache +2 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/C_Sjupfz09XcSquDwczKxSTxWrEUrjaf49VmA5x68CQ.cache +1 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CcJCtip5hherUpH0eiHdJI5Stl08Txl1AU8NxDLKtro.cache +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Clf7dMHxXwzeU3tZ2yxP8d3xr0HRWHFMdqjBuSceJZ0.cache +0 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Cnkk4N8ysSWHH6ujQDBGzEiLuGa0dVNDL5Zq53tJq-M.cache +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/D0USxWIEUAxLvX9bhYdtB_SXMXAJ9nQr9vewnyqrk5k.cache +0 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Dy0AC2wVM0afv2MB-u7UGGLsb_2ExNZ8S6w7SGE-djg.cache +1 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ee1BFKugxHkzKUuAsIqQc60hV47E4VSUMZwBOThvSeY.cache +1 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EghXS1aAsnoopkxb4Fv0S21wqJGL59ryH5HV9-30KI8.cache +2 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Eq8I8ukRZZ9BZ2SQxzSNc8mOoyKksxtzwtDh2FRZ1FE.cache +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Eu26_D_tZu1dr7mVRA4F2--NUZ2UMM4QRXv9JcqO2TY.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FEfkZdxv5MUSvLMUUWoC3lif13VZBbiaUYPNv8uizgM.cache +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FF9LKRGOPVZl03UeeMXbHRXBFwG4SkAdOfcDClwXXx8.cache +1 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/F_NOlk6iL-Gonygn5tsU_AaDA69HBxeExwCiAa6Ezi4.cache +2 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FuMG_mCkNUt0OV_qrahX3ne-LN8Y3J-17T-I5BwYT_U.cache +2 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FzIl4k5FDcnN8SbzckzMXWXsj2DwBv_tGvZZky8_cvk.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GBe9GA2qATaLqF7GTbxcZ8sWcPJ2zWeT8PFE8Cynb4U.cache +1 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GUcaNDg0KOqTIS7ltde6vWEZy4eTkdPuecVr52xaqY4.cache +4 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GWveyzQul11IW7JP-MFTH1p2O-FAiSldGQCixPtBWZc.cache +1 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/H8Py9_cLtmjiNd1zVjVpr-60bPm8OKt1NzBdYpuRoSg.cache +2 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HIOnKEwfKW9leZhYm8hw2zTPcTC7Lhr9QO3pGkpVUC0.cache +1 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IUOCPt0S05lp6-q_7CuqTJjuySoP7ZTTe1srP_Sgdag.cache +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IlxQ_nfFkpBhgHXJ9EL7TgHKTrQYX_1ockXtSOHH_1Q.cache +1 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Intu4bn50Zl1tGpuw8N2VhNjvLeG367yEoPjIxYkYxA.cache +49 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J3EzfF5t_RDdiaU-svpP2DBjb8gnlHHHCQjjpPvzvpk.cache +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J5rhZ_6c58sjOvHqDBBBBTvsLDbUGfHatkjiF1M-Fys.cache +1 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JP9pt25R98BIDqvwjp_DgmdNj4U1wLrVUhOnoDtekS8.cache +1 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/K2yr6YhOBxRdaqrHViPlAYUKVTWMlI24INQctCW0rWQ.cache +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LT9baTsZAaEEgS5raUZGGsP2vTnlzW9LzvyCfQgqLLs.cache +2 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LW03HTHDvMz6l4ReQ29sJeZqRg3QLrcVdAutCg9ROyU.cache +0 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LcZdIStJUZnaKHh7vs-yLld_jzO3MSU4gCJaORFrjYk.cache +7 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LruVN3C21yeFX4pfE6ZQw7z2CzkYXY5b8PXOTfz2o1E.cache +1 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M2tXWSvBjMhGoQLT8CaoVYULKWDVirToNVLYqstyW-g.cache +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MJxRV2KlWMJ5KrraeWvC4yp7N4-aMpktlzqBpoLhft8.cache +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NGgP2dkovkWF23p4ypqAUEO3kldLkAA7E9hERHoxJ_M.cache +2 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NX-xwAHuCC7QChZD4MSpX9fgCXgl532SBhXfSsIxG4k.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OQdV6HhyTI5Otzo9cwR6IY-8eX0eip8x561B8hXKikY.cache +0 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OSmr2Sj9749HFHCMkGsJP2YGkQxIztofCliXs0urGE8.cache +0 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P73ImcSy1BYWt27ZGM-JKdkbzyIm2063NZr-dn-ygPE.cache +1 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PVxgcRUvLL0uRj6ScbeM7YyccWyjP2O2kvs2640MHck.cache +1 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PmcUgH3Y4bLndb9k4NAJlxdFPTXl3T8-jEskNYv7T9M.cache +15 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PmrPSezdyM_8N-tzxdbn62XyY_l-YJPz7Tm7Qi1z2_M.cache +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QAr8mslUFMN0vPkEEQAZEbAUGes7lnpEtfFtKSK8lCc.cache +1 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QFioo2rOp-ljy1-PIoxzqOTmxmc6HFAft-qNbbQvfkQ.cache +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QPGkAA8L-cs-AO80ws0mqld73EIG2HCd8hzkga35Ydc.cache +1 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QaJhvzKs8vkSfWT534wn8jNcxfcnMDp4i8cDbwWESbs.cache +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RICRLw8IGgYZrEFYgyA-MY8-o_kXcmcY1gCavTvwW64.cache +2 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RgyohxMtV3OKNhuwrAaDjfXMV7SsjprKrEVgZ6NhwzE.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RsbxexS-d0Msc_BIthGWINzE8v7aFHiWQVqTbifUHp4.cache +1 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SZlNp_5FFT99-2Qs5TFLbTZ4ZOG2UFO6sExA-aa-9Xc.cache +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T5Z3oNqbaal-reBCFzxyo8yxV-drGVwQjIC1O_pkHNI.cache +0 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T6Ft0zMwwCntps471lA0_0aXo1KaOp-ZFeptSt9SRks.cache +2 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TQ7i9C1sBaWIfDFYnQo4TqjBOMYbOVxm6f4Qhl0Uf6M.cache +1 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TR10mW2AT2rabnCmUhSF2tBx-ZpQJZfpoezdescBWxg.cache +0 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TSR9oCO5WIJZHL855zPdgj-pvzkWlz0vlnIPSMRudy4.cache +0 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/V9W2dbEVRrR0tD27e8bft0flt50g1HHugzTd7lFVoMY.cache +2 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VHnCzqYhXqo4PNpfO5rhh1rxxllOWMQWrJ_1an8CxJ8.cache +0 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Vs4mCFlsskLe0HvAg_ODhYRP8lNofUxZ45d6sOzUfC0.cache +1 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VsHDpo2bcpN87OPpULfpEIuC7ArNRDa4RgDTqYSgbbc.cache +1 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/W1XNy0_UmGwk7xmb-0QiIdkD_gx_tjV351xE8X5LCPY.cache +1 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WEPPUYRJVm2CgPjW9cTdBuuFhadPuO7qPEqvqecfKjg.cache +1 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WIwRcAEBsLT7LSFw8071ukLJbJlwFoX_JaHD9w7fEAc.cache +16 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WSR5PdIRaA9ix0LLhrUegJL8ztgPoIgZHdaq1d3Jm7k.cache +2 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WxVFbgL4Oty9vrd1AD37P2KqOGjwvcH5o_LSGrMI_do.cache +1 -0
  215. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XSXbBZ-YPcBvmUp0fzcIUcTwqNvYHvUU7xfLa38qYvg.cache +1 -0
  216. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YB9oCB5SEQMC6OwASUsvmD1GE90Ul31VfE2ZRo1Hd2k.cache +1 -0
  217. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Yf6ZOsV9gRVVFTsRNcQPGxKgCQ63L3JprFkpZMD0slI.cache +1 -0
  218. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YjXlZUeBr9ONZpMKis8Beab3ld-NdnlSKXm2oZOsysc.cache +0 -0
  219. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZBbRPnK9QPeL_bLmZNttUrL0MMH6DtrYDpD4f1DbYtc.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_7w_iwIfp6xsakWz0Ww-HrRNserrl5q6WzSq1iYZGaQ.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_k6iDcm-RS6SK8ChV7hlp56ZM2bVtgzaDCrpSHIDFZ4.cache +0 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_tne4TjP6WhsfK-a0TBVts5lr-lr-sDxyQiKIugRPhM.cache +1 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_zOYmE_ymvMvcRhHFdH2JutNJimhiytkMAhh4Oq6mkk.cache +0 -0
  224. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aDjgtkQ97t1Rcjxv5nZUTSSYXea5orrfkCeCNrlNNao.cache +0 -0
  225. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aKAjc-eEaECxCE89czdDC52Kqkw11EBSF9vk7QorxPA.cache +0 -0
  226. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/auLKIVQfT6ZcV9nSxkDD4xMrcIRtB_1-hO1qKXOcwxo.cache +2 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/axJrczuMPd6m4cWaLl9wfSWgg5SWjyHvv1N0d8e7cas.cache +1 -0
  228. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cWuWB7O6uRomqwh3IemLWVclp4_ioPR7TBAF7yrPpV0.cache +1 -0
  229. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ciEBvpxWzLqer60DBJkr319p1iKyYHZxfCm3tIPMqcI.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ct5UmPAxknsInqDq17r9u_NbuFw8F6w4ZLKNU05xZ_Q.cache +1 -0
  231. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cxW0sGi1l_Lc7eCBF8kxQo4kNtHw27K5H-Ngpiixm2A.cache +0 -0
  232. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/d7lXJjCfvSvwTWSI3x4kn3TQzzYG0DGvqTOJL3avl6Y.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dW3LJvt2E0gKdWoqZTSTWtntGqxhTENv8_-mbT_kfn0.cache +0 -0
  234. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dfT6vHCtyIBci9lpNUVgyqepSYt55BCo8MDzrPXxUEw.cache +2 -0
  235. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/e7OkNhH6RmnQjEY0ZEO597J545crZH0qZdVDYz71KT4.cache +2 -0
  236. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ea-3NiBlut0EOdCVqVGn-RwNm0CiwA8YVBRqfRqhgLg.cache +1 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eqpR2RCSOj4T0wmrPGJDb_td3gtOdiyLwD02BpzuBkg.cache +1 -0
  238. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/eqrwo9jjG9uZiNQCUMkdkvT40JGz2uvrufAv-l00X1k.cache +2 -0
  239. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fG1WmTPapxY9EMQ5D8HQw8E2MpudT32v--jD6VgazTU.cache +2 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fLosOyYOiUc-ZJIEAtgmz68UfDVlAVCVMAxtAlML-nQ.cache +1 -0
  241. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/faEE1R7Sb00wgGFfL9FC9IqAGSkEHNY7rLPURjZVFv0.cache +1 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fgmBwPUcbsTKyMd7bxMbzh9YFF7GkD269KSZbCOpe54.cache +1 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/g4m06tmSxrOnDxGpUyYkIEY8hi0ymUoUzYMAh06YkGc.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gP9Pm0rpnz4IvvhguI8VxK8xhDKU8WisGwfm5ox97RY.cache +0 -0
  245. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gtka4cvnxw2bm_SnkE-5LxtRYKxD-MvM_T7lYxdLAug.cache +0 -0
  246. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hQFzaNvvDOyvg2U4FZcg-xUjctMTLEdb7tK-RYIziz8.cache +0 -0
  247. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hcS2HARtyE_tpJmmwUqYO-9e-Tshg3TF6W6XL29_cwM.cache +1 -0
  248. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hdMwJqicGzH0qHgBqMVfxHB8u3-zdirRgb1zpnRfb6w.cache +2 -0
  249. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hfIPOqDhaIk7vhQa4hLyWEIQasPwJSn3H-i2egLuFvQ.cache +2 -0
  250. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/i3Mr4BCaCS865aFe9brU973ERtfoSONrUQhX5FW509w.cache +0 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jBOiy_uvOKOoBovFao2qEf6xVkGYRFmw-CR_I756N5g.cache +1 -0
  252. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jZZQUkAYSpxGGWp7Vb_vs2S3Clde8_XKFWwjwHaBmU0.cache +0 -0
  253. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jiUvf7zJxbsJ9a9IiZOy06PqL6dOOfprzyXci5p8vMM.cache +0 -0
  254. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kd10Jyu0ZXLelGbmQo03cFEKpR0qQRw-QyPPMlnY-FQ.cache +0 -0
  255. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ksZL57FCLWVpXdOSIHVytq_XIsGz78TdArP4aWt7uQA.cache +1 -0
  256. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l4Mb7Zqpi9HWWa67ftgd_ZkPTvGuhxm--tpHlgu4Eyc.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/m3gQ2mqyaWT0r9UVJriOzT0qkFiL4aZ5mhMgbbyLmyw.cache +1 -0
  258. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/n6NcZJQK0j-WDDTq_7wksLUZBBYhGRPaW38Cua19t4E.cache +0 -0
  259. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nKs1V_XYWUW2uG9E7WQPaiVIvYx2I5ttwdMZ9bRsUVY.cache +2 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oB34rjWhV_SBgt62MMSw20hEYuiVTjLMILeSBjagbDo.cache +0 -0
  261. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oydOGeF22N2dttfBS68MA5PK4ofniHzd-LgBwVmJvI4.cache +0 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pA1evykc28UE2mszGRw015uHbbmBCU9gFZIcU8Hrwls.cache +1 -0
  263. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pBYZnqSsUmggXeAPQXcQrZSfrScDOEsZQdeXOIqfHaA.cache +1 -0
  264. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pENTpYJeZrQ-P80SXbbHVaXcEd7kaOm1bZRItPVK7OE.cache +0 -0
  265. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pYKIN2HEVMsGLDogjm8iDQ_4W8iGEq98NsJbOdA822o.cache +1 -0
  266. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pb5zODtFDJpqFTtbh09cOhwG1mZowQW1EZ-54eauNTc.cache +1 -0
  267. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pnDWkMT2Wf6v8kCepJzn9oEGWrxNOY-H9MlCq85zTlU.cache +0 -0
  268. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qJ6pwEWoy3oUs_aPayRv5D5d_F7oEyNIzxrJCaEpcpM.cache +0 -0
  269. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rJ88KtO5aBXvyE9sef5emc-MsAJaTna76vG5TNayYa4.cache +0 -0
  270. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rPyv5XauOpu-aOgB95w5ZSl6jCFUGvS8YE1h1eZZID0.cache +2 -0
  271. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rcp1tSuAgctt1BdAdUoGgD_UtZeD7w3rLuANXg8YU58.cache +0 -0
  272. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rfYNZtDWV3PCq5a57xTyj0-_iC1Psq1TaxWG86fXR2A.cache +1 -0
  273. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/smmkAgu4NNfatz7vllczgMFH_tckzDUAmeV3WvmmsRE.cache +0 -0
  274. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/szDR2M9t_osfhsE_agd1lcIjKrl5nwRmORMlyoWxTus.cache +0 -0
  275. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t4fruk986h623vtFPEW2sALWc3kl3ayPfBbgOzRm6Cs.cache +0 -0
  276. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tJDIhl16K_HokIK8UZx1y9hy-Ne6lk9ie2kMbsHVxdY.cache +1 -0
  277. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tSDhvZZY2gcpUHWppbAMQYQL0iNPOc3Vo2HHrnqKlDw.cache +1 -0
  278. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tYYAXLHGMIYQ1Ls-jw8thSBIzdixEpeQC2kg6irmEy0.cache +0 -0
  279. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tgFK--mLRPBU9bZUb6lc4kt6Qq9-Ux6AAfG7mDQBpu8.cache +1 -0
  280. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tpBLVkgP9PSqHqSHfPf9ZLar0vHGOTCOUl0FKOqGN54.cache +1 -0
  281. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/u0B5U9yc20iANkRJi6-SiyL9U5RMrThVGmgnWSR2Rew.cache +1 -0
  282. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vtTvV-oGMOMD-l4YDTQRNHPiFRebBjqEfL9IoavTSGE.cache +0 -0
  283. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/w3rjuVGSs9xUdab61H5KOFtoRsLH5abeNs9uloC2b94.cache +0 -0
  284. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/w9RM9nORoFIx66Xb5PwygnSIR3922sjAkZkXvyeykgE.cache +1 -0
  285. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wK-n2sVphfsiv5g-IV404qJkdw6Skfo5wk55Yf8IHfs.cache +0 -0
  286. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wbSRRkjts6z6OP0o88ZwLIz6Za9iMMeF8F1FMAubBxc.cache +1 -0
  287. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xE9HS1AxUe2VZv8zzVYALc75Yhv53_LPpQNxurm0oSI.cache +1 -0
  288. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xX3QhVOxSxG9HjrdSvjeQoK1iBpYJX3Kw-yjea2vSuo.cache +0 -0
  289. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xa4ZU0nFS4WqDtDriIXMlwNURqkpUm_djZVqiz0ZynA.cache +2 -0
  290. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xzsnr6Bgr0MP4j4FZVUcYBADfkQCUHoShH_9hGp0ckk.cache +0 -0
  291. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y6xgU0dR6b-1_hjgAZAhFFq1T9zGZ8yjUQzOefGpcu8.cache +0 -0
  292. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJ9qoQ6ZeEPmm4ttulT9hdYPemgTF4VUSdmFjmr9Vpw.cache +0 -0
  293. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJuZz8Lopwyvmy-rto8ycJ0nOLWeWSobCY8z-421Bec.cache +0 -0
  294. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yLZAaEFOlOcJfmo3pRpRpTiQMzBcqSRTrZYb_pJpTBs.cache +2 -0
  295. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yV9yGvP4CDMeEbb4ff4n_Hzu-GuBbM-S39cIE1WQy6Y.cache +1 -0
  296. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y_4IIBYH_ItxQoEeXjWm9Igwn6hAkl669CNtYfo0fyI.cache +1 -0
  297. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zF_lfa7oUNjRgtepm9Ufi0DCzN_IXCJTDHRrH-JHu7Q.cache +2 -0
  298. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zeqXKQA7lKQnvEaJsDO404ZaYCV0dk57z-SXUkfmz24.cache +1 -0
  299. data/test/dummy/tmp/pids/server.pid +1 -0
  300. data/test/dummy/vendor/assets/javascripts/revelry_content/content.js +4 -0
  301. data/test/fixtures/rev_content/contents.yml +11 -0
  302. data/test/helpers/rev_content/contents_helper_test.rb +6 -0
  303. data/test/integration/navigation_test.rb +10 -0
  304. data/test/models/rev_content/content_test.rb +9 -0
  305. data/test/revelry_content_test.rb +7 -0
  306. data/test/test_helper.rb +15 -0
  307. metadata +605 -42
@@ -0,0 +1,5 @@
1
+ # Set up gems listed in the Gemfile.
2
+ ENV['BUNDLE_GEMFILE'] ||= File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ require 'bundler/setup' if File.exist?(ENV['BUNDLE_GEMFILE'])
5
+ $LOAD_PATH.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,25 @@
1
+ # SQLite version 3.x
2
+ # gem install sqlite3
3
+ #
4
+ # Ensure the SQLite 3 gem is defined in your Gemfile
5
+ # gem 'sqlite3'
6
+ development:
7
+ adapter: sqlite3
8
+ database: db/development.sqlite3
9
+ pool: 5
10
+ timeout: 5000
11
+
12
+ # Warning: The database defined as "test" will be erased and
13
+ # re-generated from your development database when you run "rake".
14
+ # Do not set this db to the same as development or production.
15
+ test:
16
+ adapter: sqlite3
17
+ database: db/test.sqlite3
18
+ pool: 5
19
+ timeout: 5000
20
+
21
+ production:
22
+ adapter: sqlite3
23
+ database: db/production.sqlite3
24
+ pool: 5
25
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the Rails application.
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the Rails application.
5
+ Dummy::Application.initialize!
@@ -0,0 +1,32 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Do not eager load code on boot.
10
+ config.eager_load = false
11
+
12
+ # Show full error reports and disable caching.
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send.
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger.
20
+ config.active_support.deprecation = :log
21
+
22
+ # Raise an error on page load if there are pending migrations
23
+ config.active_record.migration_error = :page_load
24
+
25
+ # Debug mode disables concatenation and preprocessing of assets.
26
+ # This option may cause significant delays in view rendering with a large
27
+ # number of complex assets.
28
+ config.assets.debug = true
29
+
30
+ # Raises error for missing translations
31
+ # config.action_view.raise_on_missing_translations = true
32
+ end
@@ -0,0 +1,80 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both thread web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like nginx, varnish or squid.
20
+ # config.action_dispatch.rack_cache = true
21
+
22
+ # Disable Rails's static asset server (Apache or nginx will already do this).
23
+ config.serve_static_assets = false
24
+
25
+ # Compress JavaScripts and CSS.
26
+ config.assets.js_compressor = :uglifier
27
+ # config.assets.css_compressor = :sass
28
+
29
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
30
+ config.assets.compile = false
31
+
32
+ # Generate digests for assets URLs.
33
+ config.assets.digest = true
34
+
35
+ # Version of your assets, change this if you want to expire all your assets.
36
+ config.assets.version = '1.0'
37
+
38
+ # Specifies the header that your server uses for sending files.
39
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
40
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
41
+
42
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
43
+ # config.force_ssl = true
44
+
45
+ # Set to :debug to see everything in the log.
46
+ config.log_level = :info
47
+
48
+ # Prepend all log lines with the following tags.
49
+ # config.log_tags = [ :subdomain, :uuid ]
50
+
51
+ # Use a different logger for distributed setups.
52
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
53
+
54
+ # Use a different cache store in production.
55
+ # config.cache_store = :mem_cache_store
56
+
57
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
58
+ # config.action_controller.asset_host = "http://assets.example.com"
59
+
60
+ # Precompile additional assets.
61
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
62
+ # config.assets.precompile += %w( search.js )
63
+
64
+ # Ignore bad email addresses and do not raise email delivery errors.
65
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
66
+ # config.action_mailer.raise_delivery_errors = false
67
+
68
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
69
+ # the I18n.default_locale when a translation can not be found).
70
+ config.i18n.fallbacks = true
71
+
72
+ # Send deprecation notices to registered listeners.
73
+ config.active_support.deprecation = :notify
74
+
75
+ # Disable automatic flushing of the log to improve performance.
76
+ # config.autoflush_log = false
77
+
78
+ # Use default logging formatter so that PID and timestamp are not suppressed.
79
+ config.log_formatter = ::Logger::Formatter.new
80
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = "public, max-age=3600"
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,5 @@
1
+ require 'revelry_content'
2
+
3
+ CarrierWave.configure do |config|
4
+ config.storage = :file
5
+ end
@@ -0,0 +1,3 @@
1
+ RevelryContent::configure do |config|
2
+ config.js_export = true
3
+ end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,2 @@
1
+ RevelryContent.configure do |config|
2
+ end
@@ -0,0 +1,12 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure your secret_key_base is kept private
11
+ # if you're sharing your code publicly.
12
+ Dummy::Application.config.secret_key_base = 'bdf2d50694cb29b962d71780f6ccc8ef7826f8a2cdcab8695c462f9c33331c952eff03da6c2726d3b05fbd138e47596e8867e971f556261bbf0fadafa90d0f86'
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1 @@
1
+ PaperTrail.whodunnit = "FAKE USER"
@@ -0,0 +1,4 @@
1
+ Rails.application.routes.draw do
2
+ root to: 'home#index'
3
+ mount RevelryContent::Engine => "/revelry_content"
4
+ end
Binary file
@@ -0,0 +1,12 @@
1
+ class CreateRevelryContentContents < ActiveRecord::Migration
2
+ def change
3
+ create_table :revelry_content_contents do |t|
4
+ t.string :type
5
+ t.string :key
6
+ t.text :content
7
+ t.string :src
8
+ t.string :last_whodunnit
9
+ t.timestamps
10
+ end
11
+ end
12
+ end
@@ -0,0 +1,14 @@
1
+ class CreateVersions < ActiveRecord::Migration
2
+ def change
3
+ create_table :revelry_content_content_versions do |t|
4
+ t.string :item_type, :null => false
5
+ t.integer :item_id, :null => false
6
+ t.string :event, :null => false
7
+ t.string :whodunnit
8
+ t.text :object
9
+ t.integer :rollback_version_id
10
+ t.datetime :created_at
11
+ end
12
+ add_index :revelry_content_content_versions, [:item_type, :item_id], name: :item_type_and_id
13
+ end
14
+ end
@@ -0,0 +1,38 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20150427212126) do
15
+
16
+ create_table "revelry_content_content_versions", force: :cascade do |t|
17
+ t.string "item_type", null: false
18
+ t.integer "item_id", null: false
19
+ t.string "event", null: false
20
+ t.string "whodunnit"
21
+ t.text "object"
22
+ t.integer "rollback_version_id"
23
+ t.datetime "created_at"
24
+ end
25
+
26
+ add_index "revelry_content_content_versions", ["item_type", "item_id"], name: "item_type_and_id"
27
+
28
+ create_table "revelry_content_contents", force: :cascade do |t|
29
+ t.string "type"
30
+ t.string "key"
31
+ t.text "content"
32
+ t.string "src"
33
+ t.string "last_whodunnit"
34
+ t.datetime "created_at"
35
+ t.datetime "updated_at"
36
+ end
37
+
38
+ end
@@ -0,0 +1,1415 @@
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