daimon-exhibition 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (278) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +30 -0
  4. data/Rakefile +30 -0
  5. data/app/assets/config/daimon_exhibition_manifest.js +2 -0
  6. data/app/assets/javascripts/daimon/exhibition/application.js +13 -0
  7. data/app/assets/stylesheets/daimon/exhibition/application.css +15 -0
  8. data/app/controllers/concerns/daimon/exhibition/mylist_support.rb +132 -0
  9. data/app/models/concerns/daimon/exhibition/exhibit.rb +20 -0
  10. data/app/models/concerns/daimon/exhibition/inquiry.rb +24 -0
  11. data/app/models/daimon/exhibition/mapping.rb +56 -0
  12. data/app/models/daimon/exhibition/mylist.rb +80 -0
  13. data/config/routes.rb +2 -0
  14. data/lib/daimon/exhibition.rb +15 -0
  15. data/lib/daimon/exhibition/controller.rb +11 -0
  16. data/lib/daimon/exhibition/engine.rb +32 -0
  17. data/lib/daimon/exhibition/model.rb +12 -0
  18. data/lib/daimon/exhibition/version.rb +5 -0
  19. data/lib/tasks/daimon_exhibition_tasks.rake +6 -0
  20. data/spec/dummy/Rakefile +6 -0
  21. data/spec/dummy/app/assets/config/manifest.js +5 -0
  22. data/spec/dummy/app/assets/javascripts/application.js +15 -0
  23. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  24. data/spec/dummy/app/channels/application_cable/channel.rb +4 -0
  25. data/spec/dummy/app/channels/application_cable/connection.rb +4 -0
  26. data/spec/dummy/app/controllers/application_controller.rb +5 -0
  27. data/spec/dummy/app/controllers/inquiries_controller.rb +27 -0
  28. data/spec/dummy/app/controllers/mylist/products_controller.rb +3 -0
  29. data/spec/dummy/app/controllers/products_controller.rb +9 -0
  30. data/spec/dummy/app/controllers/welcome_controller.rb +4 -0
  31. data/spec/dummy/app/jobs/application_job.rb +2 -0
  32. data/spec/dummy/app/mailers/application_mailer.rb +4 -0
  33. data/spec/dummy/app/mailers/inquiry_mailer.rb +7 -0
  34. data/spec/dummy/app/models/application_record.rb +3 -0
  35. data/spec/dummy/app/models/inquiry.rb +6 -0
  36. data/spec/dummy/app/models/inquiry_item.rb +4 -0
  37. data/spec/dummy/app/models/product.rb +5 -0
  38. data/spec/dummy/app/views/inquiries/new.html.erb +24 -0
  39. data/spec/dummy/app/views/inquiry_mailer/thanks_for_your_inquiry.html.erb +11 -0
  40. data/spec/dummy/app/views/layouts/application.html.erb +27 -0
  41. data/spec/dummy/app/views/layouts/mailer.html.erb +13 -0
  42. data/spec/dummy/app/views/layouts/mailer.text.erb +1 -0
  43. data/spec/dummy/app/views/mylist/products/index.html.erb +20 -0
  44. data/spec/dummy/app/views/products/index.html.erb +7 -0
  45. data/spec/dummy/app/views/products/show.html.erb +8 -0
  46. data/spec/dummy/app/views/welcome/index.html.erb +1 -0
  47. data/spec/dummy/bin/bundle +3 -0
  48. data/spec/dummy/bin/rails +4 -0
  49. data/spec/dummy/bin/rake +4 -0
  50. data/spec/dummy/bin/setup +34 -0
  51. data/spec/dummy/bin/update +29 -0
  52. data/spec/dummy/config.ru +5 -0
  53. data/spec/dummy/config/application.rb +20 -0
  54. data/spec/dummy/config/boot.rb +5 -0
  55. data/spec/dummy/config/cable.yml +9 -0
  56. data/spec/dummy/config/database.yml +25 -0
  57. data/spec/dummy/config/environment.rb +5 -0
  58. data/spec/dummy/config/environments/development.rb +54 -0
  59. data/spec/dummy/config/environments/production.rb +86 -0
  60. data/spec/dummy/config/environments/test.rb +42 -0
  61. data/spec/dummy/config/initializers/application_controller_renderer.rb +6 -0
  62. data/spec/dummy/config/initializers/assets.rb +11 -0
  63. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  64. data/spec/dummy/config/initializers/cookies_serializer.rb +5 -0
  65. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  66. data/spec/dummy/config/initializers/inflections.rb +16 -0
  67. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  68. data/spec/dummy/config/initializers/new_framework_defaults.rb +24 -0
  69. data/spec/dummy/config/initializers/session_store.rb +3 -0
  70. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  71. data/spec/dummy/config/locales/en.yml +23 -0
  72. data/spec/dummy/config/puma.rb +47 -0
  73. data/spec/dummy/config/routes.rb +10 -0
  74. data/spec/dummy/config/secrets.yml +22 -0
  75. data/spec/dummy/config/spring.rb +6 -0
  76. data/spec/dummy/db/development.sqlite3 +0 -0
  77. data/spec/dummy/db/migrate/20160830075630_create_inquiries.rb +10 -0
  78. data/spec/dummy/db/migrate/20160830075707_create_products.rb +10 -0
  79. data/spec/dummy/db/migrate/20160830081631_create_inquiry_items.rb +10 -0
  80. data/spec/dummy/db/schema.rb +38 -0
  81. data/spec/dummy/db/test.sqlite3 +0 -0
  82. data/spec/dummy/log/development.log +1821 -0
  83. data/spec/dummy/log/test.log +6711 -0
  84. data/spec/dummy/public/404.html +67 -0
  85. data/spec/dummy/public/422.html +67 -0
  86. data/spec/dummy/public/500.html +66 -0
  87. data/spec/dummy/public/apple-touch-icon-precomposed.png +0 -0
  88. data/spec/dummy/public/apple-touch-icon.png +0 -0
  89. data/spec/dummy/public/favicon.ico +0 -0
  90. data/spec/dummy/spec/factories/products.rb +10 -0
  91. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-E/-EvCfhQvPIlzjF1ZYOZWTjQw8UEah5xwpEuhiymmatc.cache +0 -0
  92. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/-O/-OW8IYI7LQf3PuZXK8j-efAu1S0cFB2iXBDLRieAnYE.cache +1 -0
  93. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/0T/0T5KSc86fUP6KzgPAc2-GgBuBr_iH5f9HS321L-ixsc.cache +0 -0
  94. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1D/1D1db_D2WwA6qXNJMQL45pxAXrasUm-_znhPk-6vB34.cache +1 -0
  95. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1E/1EhinbkN9WP21Ew10wDIxK2IRkZv2nJoi9Xl4DjnR90.cache +0 -0
  96. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1k/1kxtaBNnFxpVf5ERsYFYqxMxnAfIIOtAv_Nc3_G1AeY.cache +0 -0
  97. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/1z/1zdk6qCCKEQS-ILKAZMVyHpmB6Vrv4ZiuFmvOi0iVUc.cache +0 -0
  98. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/26/260q5PyBnPVPSLRKeqt4y2RQix0FTfoMCUOod8MV718.cache +0 -0
  99. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/26/26NHucn7yILcGgIERWkgGQ5byRRYvgYpVzdTAqH0mQw.cache +1 -0
  100. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2Y/2Yooenzz5QkG7hXKF0L76jt0UDNfeZ0-Su_BvK4mW2E.cache +0 -0
  101. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3D/3DwqMVReQPnZyi5rmGB31foF7TTyJ_aLCp1RmJl6jDU.cache +0 -0
  102. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3S/3SHl655ROiVWBzH2zG_7IwI1KK2-u6byOUE-ahVlYbM.cache +0 -0
  103. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/3V/3VuVVfDgfhi4RqQkRE1gTRM49W8yB4ZQICzHD2OU0LU.cache +1 -0
  104. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4d/4d1hCMkZ6Yidu50qiIWu58shEz9U055eVpvH4kRgjaI.cache +0 -0
  105. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4h/4hA2p2M2wZfGccKALYjYUGqUSskz2T8HgQfszmARxU4.cache +0 -0
  106. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/53/53ZzGgtxxvNCwaepCe6xsnfv4DoWqMmXotrsrf-tqOs.cache +1 -0
  107. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/56/56fkQTr3LeX361vhJDJuTpQm2Z5WKJj8kVbcN2KRzSM.cache +0 -0
  108. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5i/5i4CnsdBphu5UptdQmslXY4z4ldQSZgMUz3zZuj0aZ8.cache +1 -0
  109. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5o/5oTALQIWPnsycrXE5CeYMjh0XElmu4wYUmROUWBaV2Q.cache +1 -0
  110. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6T/6TOfaA1wC18XTbtydablgkHGshi9oh43hWwmMRm--jk.cache +1 -0
  111. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/6g/6gaRI5ylaTbkiKOrURLv78P9zEuo2kOwJHAGbCaBF9o.cache +1 -0
  112. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/77/77Fz1ygpRe5qBn7ASOzrfefz7nFkJYgLUPvc1L9Z6qA.cache +1 -0
  113. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7Q/7Q2VKpAAnV6vKcHfUIRldNY7CWA-T_VIopZgEIDabDw.cache +0 -0
  114. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7i/7i2vIfmlFzNUMT-Onw5yXBkqsuwpoWM1Cw2zLE8d40w.cache +2 -0
  115. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7j/7jQrHOotz-KC1tugL21NnY08URQRk9wQzKiGzcCkgrg.cache +1 -0
  116. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8y/8YTzhZ9z1EBurxXJDmXzJ_3dPUy9MEH7gTA-DYncFwI.cache +0 -0
  117. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/8y/8ybYa2asdvazqzK_st4FBkX0kbwV0pr7q7TtrvLRlxs.cache +0 -0
  118. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9B/9BnNj6cTU3qJX_rSjBjsOl4krrxDSTBTDZ_-ldEobgo.cache +1 -0
  119. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9j/9j_vVLfHa30VHo0kIGRyJ0IshvnXfeN_NrpZtrBtPbc.cache +0 -0
  120. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9p/9p9KkomdXBebzeH_36Ky2C_5B3KvmnVUEJGfKn4xnBc.cache +0 -0
  121. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9q/9qCgh4P746teLfvB01-4ot_DVvhdtUAYiMp1z4CcsnA.cache +1 -0
  122. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/A2/A2xnPnk2cfs4e8Ib4ci5P3aizTTjmEilGcinUu4s6c0.cache +1 -0
  123. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AD/AD4vwQeD0EcHVblGBTT3cWwUCc7jU2f-_e19MelOJGs.cache +1 -0
  124. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/CH/CHrTCn4G5Idf9SLbNg8ZyJqp-3Nx-hYCpDWi9Tv9bwc.cache +2 -0
  125. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Cb/CbRHXiSPJE12ypQIhlFqpcEapKc9OKNoV3GvBVALD9U.cache +1 -0
  126. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/D3/D3pTReRVsrAWgIoKBeRuIxxfKxwuD_KVhiqF8-aqiqw.cache +1 -0
  127. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DE/DEpM3g5IjbzI908W19RMHzrRXkP3oMuWQ2XF3Li_wVc.cache +0 -0
  128. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/DQ/DQIXRjidd9Tfd7369J9q2M1g9G38zYJDYjawRNB-ZQo.cache +0 -0
  129. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dd/DdhJPkrxsBz4F1dRuuLamOG5y4eNmK-eLOrtr2mKUWo.cache +1 -0
  130. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Dv/DvsKS7kGvPrvRKtlHlV_8_gaL3uKEnI9Fwvq46BlgIk.cache +1 -0
  131. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ER/ER36wRvT2PFEZWmCPAeKTLVDYXCv_A9FRAxjofJCZz0.cache +2 -0
  132. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Fv/FvJLoQVvB847FVfAcJcwARSVRcwxE7akrMlRZgid6G4.cache +0 -0
  133. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Gq/GqxBdNzK1sxGYa0msR8sDNcCFUK1Kr7Sa-E9qc_udH0.cache +1 -0
  134. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/H7/H78jgdb1PH7nFQn3AZC5nxYuTdlTCUsAdj0PWNUr4-0.cache +1 -0
  135. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HG/HGoqnt3Ur9KL2FZRxNb8PdSypRbVNWrzJa1Jsv74RQk.cache +2 -0
  136. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HS/HSYEO6CpHOIRu6eM2S1n5kL1IMXUIgwLPm4tln8wWTQ.cache +1 -0
  137. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/HX/HX_83K6RrQMxnZiwVlWNcho6z8Z33NujfmWfRIuU08U.cache +1 -0
  138. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Hh/HHL-eglyjfpU5k14BbmP7BZsUMfCmGtIxuVhhaYt7mU.cache +1 -0
  139. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Hh/HhOQXgV8xYQUdzdnX3wzngX7Cv4Io3I1TPvbq-CvAH0.cache +1 -0
  140. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Hm/HmSO-m2C31KYqsiqHD-ntNF_W8iVUz6si4o1D2lkZ6Q.cache +0 -0
  141. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IA/IA4E3bFdxxc8xIiWq7qWSQBfOee5Y3LBFcqC33CiLpU.cache +0 -0
  142. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IB/IBh8qcMzh8fXgDKeVyuBroRi62H_kCdBzfG9_y1FHsI.cache +1 -0
  143. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JF/JFnklRKsjecJPVe5LFmEErXpOeB-ItahCCMlBeXWT_A.cache +0 -0
  144. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/JU/JUU06QnpIgdWl8Vy24rpCF3Hasad1OGumkLs-A-4R44.cache +1 -0
  145. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KB/KBwT4G_X0Bp6yZ9l86o9KCD4ykdvHTjU-OSKHRBxtRE.cache +0 -0
  146. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KC/KCdWNBJztXuFSrNI_fmdivf2592IQR62XVviHYPK4Q4.cache +1 -0
  147. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/KT/KTfxKmlXzgwEqYrwFM8S9vvEht3NBglv15FHS6kq6J4.cache +0 -0
  148. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/L4/L4qZtHjSjTS-7SEX0caQfB6mto0X0exCW10ynD8y2Wc.cache +1 -0
  149. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LS/LSjNZ3LIXfcSx_WQDKzqwVcBlvcDvArJRtLNMuWHXjc.cache +0 -0
  150. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LU/LU1dSf39x_yrP6LfWs2ewYTFviZxOOYgtYfCQ2WovLE.cache +1 -0
  151. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LU/LUKrdc3r-08dUEfZrBO8-gNiT1NC9-x0ZJM8qlJ4I_0.cache +1 -0
  152. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Lz/Lz-ZRaVEPQZCdEEajd3OX7AQnTJPlweHvHQFXTVBnzU.cache +0 -0
  153. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MD/MD9dm9xcC2SLh0l7jbBvg-I1IEo6iPKdcP5T2gnnGNU.cache +0 -0
  154. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/MJ/MJ30xbV1scYIz4x8t5ZD6qGvRl752CKaoKsQInsbtPM.cache +0 -0
  155. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Mc/Mcljo-f7-GVJSA2QU4QeQ9Oh1AuRcXlyVGli-k_RD2M.cache +1 -0
  156. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/N9/N9QXcxw0npQTfnlvZ-mXL5AVd7sJgUrXylHHe-geE1c.cache +0 -0
  157. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ni/NiCV5rtKSK7z57UsCcUTC9GzMvjI1ckxp7DFhL0KxXA.cache +1 -0
  158. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OB/OBrvA2nXiDyiPjiKx4s31GdU6gI7oaynYs0UipFEAU8.cache +0 -0
  159. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Oj/OjySHXEgVkykHuOo4MKe6i7PQGbBJTNXuWnJsZqiKoY.cache +1 -0
  160. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ph/Phtnd1t1I7poKie9R7yefwUKfdqfAwdRwB-YbqJzo3U.cache +1 -0
  161. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ph/pHSBAzUVU4lsCfOdaHJt0RZy3M2S68uDI961OydVcKI.cache +1 -0
  162. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Pp/Ppj-31aBpSjIwNsFM8jIpUhYisG2tWaFam7YMmEW1tw.cache +0 -0
  163. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QF/QF44cSKX_Ak79ZzXS9x0j31Q9gzNkICQCCIe2Dwco70.cache +0 -0
  164. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/QM/QMvD0qL7Ys4JAFwt_WhpK9lOnGyA4QWGLx2eu7YNgrs.cache +1 -0
  165. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ql/QlRxFfHkCDZzvEJNCQh-mNN-hPusPKSx9L9fpPHVyNU.cache +1 -0
  166. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/R1/R1MjmuTRaIY4G7ICd0XZwGHGnx2T_VQyijMqTbVzV68.cache +2 -0
  167. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RB/RBdHCYxi6OfkhaFCdO73Rl9eiLyAsV9vfmClVnO_QPY.cache +0 -0
  168. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ri/RicfCTaZGQoiKYuwrfnAUC_lWlQ9X3q9PGZxHL3EDr8.cache +1 -0
  169. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Rz/RzZp9TZjf_RVqLy24-rS2iWjlouZB7n3svNIDfrIfuM.cache +1 -0
  170. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/SL/SLyfODWT6a2HOM5Z3mlsAcLWVZyeU7fe8Bq5vEAGIo8.cache +0 -0
  171. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Sg/SgR9GI-SIySjgVt-WuV9BRpiyETElsJFkLlvoSfXL-M.cache +0 -0
  172. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Te/TeW2NyXByFMBQFemv9F_SobNFekPvoBauuVBW3QDFaE.cache +2 -0
  173. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/U0/U0Rm_fCpFgSlhkATnd-Lg9bIJYX7jkJ3elTMFmT8ErE.cache +1 -0
  174. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/V1/V12N8Cyh-FBEQ1RXMGIsFKIhyhMuplHfUWkG1QmbYHA.cache +1 -0
  175. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vg/VgsInVHhFI91tTndwlrMnW8ZImzhiuyVsqHbQ4rmtQY.cache +0 -0
  176. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Vm/VmlrnrlzV8M2ZAl6z-DeKU9qQEn61DtIphXFBHMXo50.cache +1 -0
  177. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WH/WHvig3vAK5smtNspWwubJuSyc0SwV-uvq6DJRnlUWKM.cache +1 -0
  178. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WI/WIvJ51lxc5fZ9XVPdcF6TMQyrylU6D9qstG6Y45qyVQ.cache +1 -0
  179. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wb/Wb8bOGo6XQGTd-FiGD8tvvA_L3bO9pvS011y_zfGrNs.cache +1 -0
  180. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Wo/Wo9aFH3p0pougiTQC4tsQm21JVg1uFKuDJHhieSJh4o.cache +1 -0
  181. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/X4/X4Fz9bk4o0eYkobEBnAMXujETnMumzi4SZMw9oHXRb0.cache +1 -0
  182. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/XT/XTe86S2jT1L9_F73N2FXDH0hFcF9YaNjjB4UNdcWimM.cache +0 -0
  183. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Xi/XiE07fWZn-MRVGEWTyEgMlaK50Znuqkq0V4HCJ8lXkQ.cache +1 -0
  184. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Y6/Y6kKx_kz3oA9u5l_N0JSsKqYpIyqrEdoGjgrgeJXiVo.cache +0 -0
  185. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YB/YBiCo7kOVgbW0k26OuxQhgbhy9LqEWk28LwPHNiTNsQ.cache +0 -0
  186. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Yr/YrQlUmDI-K8UDP-SI9cFLTHpb9ucPibii1fkaiQJbvk.cache +0 -0
  187. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Z0/Z0ot-KCjTEMvA_9mQJ1f2F_T0CeFL2ODvWUUWTpVdW0.cache +0 -0
  188. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ZM/ZMg7g7c0xndFdB8LgrvHlYfAcFhTEq7bFhE1E-bK4-0.cache +1 -0
  189. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_-/_-6WWFOZ2sfJoTvKuEKH-1pTikl17HOWPmJU-HQrNsg.cache +0 -0
  190. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_A/_AmykjFAaYgUZJm_J2SXVPBKqkQLU6d1Pb1wakm-zuU.cache +0 -0
  191. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/_j/_jqXgXdhlJMNvF0fx2nO_brcONB_ZOVrgpUvT8OrWwg.cache +0 -0
  192. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/a9/a9iXTXzzN2EbOWlC-OKMb7WUdfOhG8LWTY9lWEosVB4.cache +0 -0
  193. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache +5 -0
  194. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c5/c58zrT_dNy-iKqzrc_-w_scXoQbVVxfqUIYCEwBGqXs.cache +1 -0
  195. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/c8/c8GMeXRZ7EhBqoJmSJN8fSP6OnVW6hMjmM_Q7yXuWYo.cache +1 -0
  196. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cP/cP46e5-mwRDfRYPj13HeXJrlMHZKQsyIJqCYlewZEuU.cache +1 -0
  197. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/cZ/cZnZZXe85VAl_oxcNpjAbU1thia0_rnIjlbdOJ7CAAo.cache +1 -0
  198. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/df/dfJ-aTuHEHuWdrR0nA8kkxHKgpb3FIcEFPkggC_tE1E.cache +1 -0
  199. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/dh/dhTzIPKYBLpUMVzweIa8MQ52OB2SEyarg39BGk-piXo.cache +1 -0
  200. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ej/ejdGIS_LkABw55OoXWh2FgElSskxe2xPkXvm_--7qlg.cache +0 -0
  201. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ey/eypk1C3qwnkbJtwaU1xwEVpXrqzY4htYM9q59AHBQgQ.cache +1 -0
  202. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fQ/fQNf-0SNBI5Cys2E6alMnmYqKVAV2ocX-mmAI88UwYg.cache +0 -0
  203. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fR/fR9ts4BkPECnQhUI5BFvKA5AmT7MndZuQWC7edk995U.cache +1 -0
  204. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/fR/fRB2DJjavNFqXa50Q1LbZrz4mIMh14gdU_RIyRhvRu0.cache +1 -0
  205. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g-/g-r2aJOBEBZqYLMcc0-p8NZ66ToVp-_q3pwl8B14do4.cache +0 -0
  206. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gC/gCl1_YtVzLK83eQp8Z57ieDWYEshykjoVkTSPnAGQmU.cache +0 -0
  207. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/g_/g_6EJj_d0xAXykJmAfSi32RfJhtpQFrTvf2tyNbw7gw.cache +1 -0
  208. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gk/gkJodrGy9_3YDhVNES0Vn-2PWK8_vluPgbY9_79uC3w.cache +1 -0
  209. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/gp/gpLRtGOnQPQ3UgFmq3ZLLifJuqFcgM-z7XhDw_zcdmg.cache +1 -0
  210. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/i-/i-n5asbQVw8NH7wx_k3n_iz6xtssPjHYU_T2Gk4TAnY.cache +0 -0
  211. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iC/iCKCbVrJrTP0ICP2PwP0kRrEcO00vAU-5m1kKARYXNI.cache +0 -0
  212. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/iO/iOzWQuvrTN3Qo7-jlGQgyN_jmeP64aarSaftiz7s38I.cache +0 -0
  213. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/j4/j4_qskb81HQF8NW6LITDZReTPP38uUZ--gtBWKM3E1Y.cache +1 -0
  214. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/jR/jRAumX4kTNUKCLGEHdbu-qG-kqU2GBj5fvoxOPVtVkQ.cache +0 -0
  215. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kY/kY0cqH3o7EvPYUrPC0lS7PFb_pWx_LpFzawQEYHxyms.cache +1 -0
  216. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kh/khnFKkTIBWVmAsMJZlGvEBKl8VQiRsa9eZlxEsPfN68.cache +0 -0
  217. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/kx/kx2LqQpm8otVXV7THtYpPzetsjLu7SFDjEPndNur4eI.cache +2 -0
  218. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/l8/l8g85yz7V4l3UKHmp2l3RKrPi8xawhw7fuCp_0f7iz8.cache +0 -0
  219. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lD/lDGeFhRLpwYI9YnugxpMbuuzRZvFhlni41nmZZa0amk.cache +1 -0
  220. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lN/lNoEFNOc5GtQdUL4D0x2GmsAxELJjd7eEs__GSEqxuI.cache +1 -0
  221. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lP/lPxuwzVKSFbMnsEmvnkye-LqmSv-cae42MVaSKcJ4pY.cache +1 -0
  222. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mQ/mQcklNm57IpTS8b2I_k0uwQVkh8AOQ2CMUwPjHVAc9E.cache +1 -0
  223. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache +0 -0
  224. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -0
  225. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -0
  226. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oz/oZkXJDO6Ct-3KAr6gXA7qJAYlnxGudmDPZhdmdWFJcw.cache +0 -0
  227. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oz/ozK4IPJj2CBcsem3fLJx3wqcOl6mI6B91PkN0wVfkyk.cache +2 -0
  228. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pA/pAEusiR6xT9ln0HzlCPEyRzVvvpivbmMQSVataCciNQ.cache +0 -0
  229. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pY/pYaPhUFaapfJ1vuq3EOyteFdElWjc5ZTDLLicARvfkk.cache +0 -0
  230. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/q5/q5clYaCqFCvriry7EhrIdAgk0YXCNHQD4TL36z6dqR4.cache +1 -0
  231. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +0 -0
  232. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qd/qdVJuHbm8b1q8wHO08Xk_asSVSU4O5LCU1Z7rPahVRw.cache +1 -0
  233. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/r4/r4bwYaAhp-MObRGt8wZ8u2jmmc9imcut1DBEkhrtR2o.cache +1 -0
  234. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rL/rLvftYunhgOO2kLaeG4RAv5PMXNUBm_kHNOuMYPSjKg.cache +1 -0
  235. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/rm/rmoqy5xTqQuH0zLMVr9XZHq8IpBj11QBGQLytN9O1nw.cache +1 -0
  236. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sN/sN9yh_atgN1AeIWApE95JR6xR-bCOx69sH9nQN_x86I.cache +0 -0
  237. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sW/sW9w526Tbn5OIEcebJDiiaUIeasZkT5Brh6d5xc71cY.cache +0 -0
  238. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/sX/sXxpnsk3SiJFWzdL0gOD_M-4XvjmGPUqV2Lqw2inTc8.cache +1 -0
  239. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/t4/t42bN7FVLjMz5Vyu8veIdjGOW-j8nQfPGcan0p9ut6s.cache +1 -0
  240. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tV/tVfDzO9YZYPGMfTbCk1Cua6gaZF8Z8q7z9MBiCVR1dY.cache +1 -0
  241. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tk/tk_fdyCTFTNLOgjUTcKVgRErYRfYzPteCVTORO0WmIQ.cache +0 -0
  242. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tr/trTKeNhy9xDLyybolPkKGyuWtlJ2vFtrPSGcCd9jWFQ.cache +1 -0
  243. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/u-/u-wpbCKIu53FxU3Ll82KrHn94Ayk9fjxa82GvY-3xcU.cache +0 -0
  244. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ug/ugZbpW5xg-A7wqJO56ggtnDtxTRvgPaw5EBIqPq6Dnk.cache +0 -0
  245. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/ut/utObqPUrGckNjVMAW0J5PdlN5MGqNn7rAbIYA3sgObE.cache +0 -0
  246. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vD/vDnkA4__IG9Po_cJZFbBhtTuleoCUyQ33t6d-Nqk1wM.cache +1 -0
  247. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w-/w-oxyqOZtRFcpY1fi1h7FlXT0Se8qm0mVV_Jgxj-vBI.cache +2 -0
  248. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w5/w5KMVOxWspT3eOCZsppXbzvnA5828IWgb2NZax0mluk.cache +1 -0
  249. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w8/w8frPtDjCUwQsOgrtajST1edbId_BcNhwuH-vSuVx7o.cache +2 -0
  250. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wE/wESscq0LRO0ORbGf7lo5P3A_w6EaRLmr4qcXaSy9oPY.cache +0 -0
  251. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wa/wavMyCiiVB25kfQyxBK1GQTe2KsPfPcJdG1PcZ8qrFg.cache +1 -0
  252. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/wj/wj8apni03DZMa2txzlvyeg00D5lx3TwhQ6PLiWA3t4A.cache +1 -0
  253. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -0
  254. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xJ/xJEArWKssPlWqx3nUSWyuLUhR7JqR9Q-eVV5VCHaYGM.cache +0 -0
  255. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/xo/xoD7EImFG134at3JA5FXUSpgO4PD9YUIFIbm4dCrguw.cache +0 -0
  256. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yG/yG_hQvJHflBkOsFZ1I3NGeHao4l96GJNLIZlpzJFVFM.cache +0 -0
  257. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yN/yN7e20fL_gaXqgeAHi4wvJ35RarwupsQm4QXnmIakR0.cache +1 -0
  258. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yV/yVwALME9GEsS3XGdPydCnuX8YPqK32qq6ahdD9-oLxs.cache +1 -0
  259. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yV/yv89z-0pA2X3e7iWc_GWA7l4GNVJkAM1A9FPUG-COcs.cache +0 -0
  260. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/yc/ycjEqpQZK7t4NcBoqbpQ1PxOceIZF9wEvHZy9dsfUAE.cache +0 -0
  261. data/spec/dummy/tmp/cache/assets/sprockets/v3.0/z_/z_RSaFA8rHBj6RntRPAAEilZ2zShi4fwrtEU_EtHMqQ.cache +1 -0
  262. data/spec/dummy/tmp/capybara/capybara-201608301755243728643297.html +28 -0
  263. data/spec/dummy/tmp/capybara/capybara-201608301756227995929944.html +29 -0
  264. data/spec/dummy/tmp/capybara/capybara-20160830185014673658598.html +25 -0
  265. data/spec/dummy/tmp/capybara/capybara-201608301851324410268516.html +25 -0
  266. data/spec/dummy/tmp/capybara/capybara-201608301853061957941630.html +25 -0
  267. data/spec/dummy/tmp/capybara/capybara-201609061139174079864591.png +0 -0
  268. data/spec/dummy/tmp/capybara/capybara-201609061140575741059100.png +0 -0
  269. data/spec/dummy/tmp/capybara/capybara-201609061141264529058190.png +0 -0
  270. data/spec/dummy/tmp/capybara/capybara-201609061144358193121313.png +0 -0
  271. data/spec/features/inquiry_spec.rb +51 -0
  272. data/spec/features/mylist_spec.rb +48 -0
  273. data/spec/features/mylist_via_ajax_spec.rb +104 -0
  274. data/spec/rails_helper.rb +28 -0
  275. data/spec/spec_helper.rb +3 -0
  276. data/spec/support/matchers.rb +27 -0
  277. data/spec/support/wait_for_ajax.rb +17 -0
  278. metadata +718 -0
@@ -0,0 +1,10 @@
1
+ Rails.application.routes.draw do
2
+ root 'welcome#index'
3
+
4
+ resources :products, only: %i(index show)
5
+ resources :inquiries, only: %i(new create)
6
+
7
+ namespace :mylist do
8
+ Daimon::Exhibition.routes :products, self
9
+ end
10
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rails secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: dbd4673b0b3ba04136f16780ae0e4550be4c33eea84deacf78b1a6e4542b16bb77f7fe86c0a6eced40c049c0f2416bbe02efe0d46f4f9f019940c575a18b11af
15
+
16
+ test:
17
+ secret_key_base: d2e42eac9a7cb9c931f0f09e1ab0aa3f199073757a64a245e14128d9891c92544fbbd3ad2fb44d87c7aea835778091134fdcf734c815d42f6c4e20eb097469c7
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,6 @@
1
+ %w(
2
+ .ruby-version
3
+ .rbenv-vars
4
+ tmp/restart.txt
5
+ tmp/caching-dev.txt
6
+ ).each { |path| Spring.watch(path) }
Binary file
@@ -0,0 +1,10 @@
1
+ class CreateInquiries < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :inquiries do |t|
4
+ t.string :name
5
+ t.string :email
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateProducts < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :products do |t|
4
+ t.string :name
5
+ t.boolean :secret, null: false, default: false
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,10 @@
1
+ class CreateInquiryItems < ActiveRecord::Migration[5.0]
2
+ def change
3
+ create_table :inquiry_items do |t|
4
+ t.references :inquiry, foreign_key: true
5
+ t.references :product, foreign_key: true
6
+
7
+ t.timestamps
8
+ end
9
+ end
10
+ end
@@ -0,0 +1,38 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended that you check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(version: 20160830081631) do
14
+
15
+ create_table "inquiries", force: :cascade do |t|
16
+ t.string "name"
17
+ t.string "email"
18
+ t.datetime "created_at", null: false
19
+ t.datetime "updated_at", null: false
20
+ end
21
+
22
+ create_table "inquiry_items", force: :cascade do |t|
23
+ t.integer "inquiry_id"
24
+ t.integer "product_id"
25
+ t.datetime "created_at", null: false
26
+ t.datetime "updated_at", null: false
27
+ t.index ["inquiry_id"], name: "index_inquiry_items_on_inquiry_id"
28
+ t.index ["product_id"], name: "index_inquiry_items_on_product_id"
29
+ end
30
+
31
+ create_table "products", force: :cascade do |t|
32
+ t.string "name"
33
+ t.boolean "secret", default: false, null: false
34
+ t.datetime "created_at", null: false
35
+ t.datetime "updated_at", null: false
36
+ end
37
+
38
+ end
Binary file
@@ -0,0 +1,1821 @@
1
+  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
2
+  (1.1ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
4
+  (0.1ms) begin transaction
5
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-08-30 02:56:39 UTC], ["updated_at", 2016-08-30 02:56:39 UTC]]
6
+  (2.7ms) commit transaction
7
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8
+ ActiveRecord::InternalMetadata Load (0.4ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
9
+  (0.1ms) begin transaction
10
+  (0.1ms) commit transaction
11
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
12
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
13
+ Migrating to CreateInquiries (20160830075630)
14
+  (0.1ms) begin transaction
15
+  (0.8ms) CREATE TABLE "inquiries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
16
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160830075630"]]
17
+  (0.7ms) commit transaction
18
+ Migrating to CreateProducts (20160830075707)
19
+  (0.1ms) begin transaction
20
+  (0.5ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
21
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160830075707"]]
22
+  (0.8ms) commit transaction
23
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
24
+  (0.1ms) begin transaction
25
+  (0.1ms) commit transaction
26
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
27
+ Started GET "/" for ::1 at 2016-08-30 17:06:05 +0900
28
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
29
+ Processing by WelcomeController#index as HTML
30
+ Rendering welcome/index.html.erb within layouts/application
31
+ Rendered welcome/index.html.erb within layouts/application (1.8ms)
32
+ Completed 200 OK in 524ms (Views: 521.0ms | ActiveRecord: 0.0ms)
33
+
34
+
35
+ Started GET "/" for ::1 at 2016-08-30 17:06:50 +0900
36
+ Processing by WelcomeController#index as HTML
37
+ Rendering welcome/index.html.erb within layouts/application
38
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
39
+ Completed 200 OK in 38ms (Views: 36.0ms | ActiveRecord: 0.0ms)
40
+
41
+
42
+ Started GET "/" for ::1 at 2016-08-30 17:08:09 +0900
43
+ Processing by WelcomeController#index as HTML
44
+ Rendering welcome/index.html.erb within layouts/application
45
+ Rendered welcome/index.html.erb within layouts/application (150.9ms)
46
+ Completed 500 Internal Server Error in 320ms (ActiveRecord: 0.0ms)
47
+
48
+
49
+
50
+ ActionView::Template::Error (undefined local variable or method `bookmark_products_path' for #<#<Class:0x007ff0d02824e0>:0x007ff0d0ae7e50>
51
+ Did you mean? bookmark_product_path
52
+ bookmark_product_index_path
53
+ bookmark_product_url):
54
+ 4:
55
+ 5: <ul>
56
+ 6: <li><%= link_to 'Products', products_path %></li>
57
+ 7: <li><%= link_to 'Bookmark', bookmark_products_path %></li>
58
+ 8: </ul>
59
+
60
+ app/views/welcome/index.html.erb:7:in `_app_views_welcome_index_html_erb__3591733887073085319_70336130587920'
61
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
62
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
63
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.3ms)
64
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
65
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
66
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
67
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.6ms)
68
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (158.0ms)
69
+ Started GET "/" for ::1 at 2016-08-30 17:09:56 +0900
70
+ Processing by WelcomeController#index as HTML
71
+ Rendering welcome/index.html.erb within layouts/application
72
+ Rendered welcome/index.html.erb within layouts/application (347.0ms)
73
+ Completed 500 Internal Server Error in 363ms (ActiveRecord: 0.0ms)
74
+
75
+
76
+
77
+ ActionView::Template::Error (undefined local variable or method `bookmark_products_path' for #<#<Class:0x007ff0d02824e0>:0x007ff0cb21d310>
78
+ Did you mean? bookmark_product_path
79
+ bookmark_product_index_path
80
+ bookmark_product_url):
81
+ 4:
82
+ 5: <ul>
83
+ 6: <li><%= link_to 'Products', products_path %></li>
84
+ 7: <li><%= link_to 'Bookmark', bookmark_products_path %></li>
85
+ 8: </ul>
86
+
87
+ app/views/welcome/index.html.erb:7:in `_app_views_welcome_index_html_erb__3591733887073085319_70336088505300'
88
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
89
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
90
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (10.5ms)
91
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
92
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms)
93
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
94
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
95
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (162.3ms)
96
+ Started GET "/" for ::1 at 2016-08-30 17:10:02 +0900
97
+ Processing by WelcomeController#index as HTML
98
+ Rendering welcome/index.html.erb within layouts/application
99
+ Rendered welcome/index.html.erb within layouts/application (242.6ms)
100
+ Completed 500 Internal Server Error in 252ms (ActiveRecord: 0.0ms)
101
+
102
+
103
+
104
+ ActionView::Template::Error (undefined local variable or method `bookmark_products_path' for #<#<Class:0x007ff0d02824e0>:0x007ff0d0188350>
105
+ Did you mean? bookmark_product_path
106
+ bookmark_product_index_path
107
+ bookmark_product_url):
108
+ 4:
109
+ 5: <ul>
110
+ 6: <li><%= link_to 'Products', products_path %></li>
111
+ 7: <li><%= link_to 'Bookmark', bookmark_products_path %></li>
112
+ 8: </ul>
113
+
114
+ app/views/welcome/index.html.erb:7:in `_app_views_welcome_index_html_erb__3591733887073085319_70336130076020'
115
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
116
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
117
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (18.2ms)
118
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
119
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
120
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
121
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
122
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (274.8ms)
123
+ Started GET "/" for ::1 at 2016-08-30 17:10:20 +0900
124
+ Processing by WelcomeController#index as HTML
125
+ Rendering welcome/index.html.erb within layouts/application
126
+ Rendered welcome/index.html.erb within layouts/application (1.1ms)
127
+ Completed 200 OK in 44ms (Views: 37.8ms | ActiveRecord: 0.0ms)
128
+
129
+
130
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:11:00 +0900
131
+
132
+ ActionController::RoutingError (uninitialized constant Bookmark):
133
+
134
+ activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:268:in `const_get'
135
+ activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:268:in `block in constantize'
136
+ activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `each'
137
+ activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `inject'
138
+ activesupport (5.0.0.1) lib/active_support/inflector/methods.rb:266:in `constantize'
139
+ actionpack (5.0.0.1) lib/action_dispatch/http/request.rb:93:in `controller_class'
140
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:44:in `controller'
141
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:30:in `serve'
142
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
143
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
144
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
145
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
146
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
147
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
148
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
149
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
150
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
151
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
152
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
153
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
154
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
155
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
156
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
157
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
158
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
159
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
160
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
161
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
162
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
163
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
164
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
165
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
166
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
167
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
168
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
169
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
170
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
171
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
172
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
173
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
174
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
175
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
176
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
177
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
178
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
179
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
180
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
181
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
182
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
183
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
184
+ Rendered collection of /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [8 times] (6.7ms)
185
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (11.1ms)
186
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
187
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
188
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (184.7ms)
189
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
190
+  (3.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
191
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
192
+ Migrating to CreateInquiries (20160830075630)
193
+  (0.1ms) begin transaction
194
+  (0.6ms) CREATE TABLE "inquiries" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "email" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
195
+ SQL (0.5ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160830075630"]]
196
+  (1.3ms) commit transaction
197
+ Migrating to CreateProducts (20160830075707)
198
+  (0.1ms) begin transaction
199
+  (0.4ms) CREATE TABLE "products" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "secret" boolean DEFAULT 'f' NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
200
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160830075707"]]
201
+  (0.9ms) commit transaction
202
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
203
+  (0.1ms) begin transaction
204
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-08-30 08:13:06 UTC], ["updated_at", 2016-08-30 08:13:06 UTC]]
205
+  (0.9ms) commit transaction
206
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
207
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:14:01 +0900
208
+ ActiveRecord::SchemaMigration Load (1.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
209
+ Processing by Bookmark::ProductsController#index as HTML
210
+ Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.0ms)
211
+
212
+
213
+
214
+ RuntimeError (Unregistered exhibit type: `:products`. The registered exhibit types are: ()):
215
+
216
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/models/daimon/exhibition/mapping.rb:35:in `detect_exhibits_by'
217
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/models/daimon/exhibition/mylist.rb:41:in `exhibits_of'
218
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/controllers/concerns/daimon/exhibition/mylist_support.rb:60:in `index'
219
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
220
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
221
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
222
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
223
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
224
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
225
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
226
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
227
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
228
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
229
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
230
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
231
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
232
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
233
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
234
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
235
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
236
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
237
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
238
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
239
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
240
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
241
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
242
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
243
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
244
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
245
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
246
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
247
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
248
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
249
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
250
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
251
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
252
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
253
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
254
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
255
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
256
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
257
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
258
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
259
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
260
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
261
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
262
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
263
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
264
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
265
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
266
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
267
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
268
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
269
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
270
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
271
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
272
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
273
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
274
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
275
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
276
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
277
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
278
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
279
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
280
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
281
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
282
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
283
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
284
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
285
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.4ms)
286
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
287
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
288
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
289
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
290
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (193.7ms)
291
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:15:03 +0900
292
+ Processing by Bookmark::ProductsController#index as HTML
293
+ Completed 500 Internal Server Error in 34ms (ActiveRecord: 0.0ms)
294
+
295
+
296
+
297
+ RuntimeError (Unregistered exhibit type: `:products`. The registered exhibit types are: (Product)):
298
+
299
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/models/daimon/exhibition/mapping.rb:35:in `detect_exhibits_by'
300
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/models/daimon/exhibition/mylist.rb:41:in `exhibits_of'
301
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/controllers/concerns/daimon/exhibition/mylist_support.rb:60:in `index'
302
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
303
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
304
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
305
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
306
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
307
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
308
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
309
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
310
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
311
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
312
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
313
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
314
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
315
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
316
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
317
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
318
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
319
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
320
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
321
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
322
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
323
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
324
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
325
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
326
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
327
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
328
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
329
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
330
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
331
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
332
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
333
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
334
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
335
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
336
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
337
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
338
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
339
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
340
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
341
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
342
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
343
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
344
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
345
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
346
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
347
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
348
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
349
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
350
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
351
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
352
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
353
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
354
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
355
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
356
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
357
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
358
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
359
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
360
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
361
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
362
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
363
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
364
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
365
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
366
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
367
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
368
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.6ms)
369
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
370
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
371
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
372
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
373
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (88.1ms)
374
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:15:22 +0900
375
+ Processing by Bookmark::ProductsController#index as HTML
376
+  (0.5ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
377
+ Completed 500 Internal Server Error in 28ms (ActiveRecord: 2.4ms)
378
+
379
+
380
+
381
+ ActiveModel::UnknownAttributeError (unknown attribute 'product_ids' for Inquiry.):
382
+
383
+ activemodel (5.0.0.1) lib/active_model/attribute_assignment.rb:48:in `_assign_attribute'
384
+ activemodel (5.0.0.1) lib/active_model/attribute_assignment.rb:40:in `block in _assign_attributes'
385
+ activemodel (5.0.0.1) lib/active_model/attribute_assignment.rb:39:in `each'
386
+ activemodel (5.0.0.1) lib/active_model/attribute_assignment.rb:39:in `_assign_attributes'
387
+ activerecord (5.0.0.1) lib/active_record/attribute_assignment.rb:26:in `_assign_attributes'
388
+ activemodel (5.0.0.1) lib/active_model/attribute_assignment.rb:33:in `assign_attributes'
389
+ activerecord (5.0.0.1) lib/active_record/core.rb:319:in `initialize'
390
+ activerecord (5.0.0.1) lib/active_record/inheritance.rb:65:in `new'
391
+ activerecord (5.0.0.1) lib/active_record/inheritance.rb:65:in `new'
392
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/controllers/concerns/daimon/exhibition/mylist_support.rb:111:in `assign_inquiry_variable'
393
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/controllers/concerns/daimon/exhibition/mylist_support.rb:62:in `index'
394
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
395
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
396
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
397
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
398
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
399
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
400
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
401
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
402
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
403
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
404
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
405
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
406
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
407
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
408
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
409
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
410
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
411
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
412
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
413
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
414
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
415
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
416
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
417
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
418
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
419
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
420
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
421
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
422
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
423
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
424
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
425
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
426
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
427
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
428
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
429
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
430
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
431
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
432
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
433
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
434
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
435
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
436
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
437
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
438
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
439
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
440
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
441
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
442
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
443
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
444
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
445
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
446
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
447
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
448
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
449
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
450
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
451
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
452
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
453
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
454
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
455
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
456
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
457
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
458
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
459
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
460
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
461
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
462
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
463
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
464
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
465
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (106.7ms)
466
+ ActiveRecord::SchemaMigration Load (2.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
467
+ Migrating to CreateInquiryItems (20160830081631)
468
+  (0.1ms) begin transaction
469
+  (1.0ms) CREATE TABLE "inquiry_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "contact_id" integer, "product_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
470
+  (0.5ms) select sqlite_version(*)
471
+  (0.2ms) CREATE INDEX "index_inquiry_items_on_contact_id" ON "inquiry_items" ("contact_id")
472
+  (0.1ms)  SELECT sql
473
+ FROM sqlite_master
474
+ WHERE name='index_inquiry_items_on_contact_id' AND type='index'
475
+ UNION ALL
476
+ SELECT sql
477
+ FROM sqlite_temp_master
478
+ WHERE name='index_inquiry_items_on_contact_id' AND type='index'
479
+ 
480
+  (0.1ms) CREATE INDEX "index_inquiry_items_on_product_id" ON "inquiry_items" ("product_id")
481
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160830081631"]]
482
+  (1.1ms) commit transaction
483
+ ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
484
+  (0.1ms) begin transaction
485
+  (0.1ms) commit transaction
486
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
487
+  (0.1ms)  SELECT sql
488
+ FROM sqlite_master
489
+ WHERE name='index_inquiry_items_on_product_id' AND type='index'
490
+ UNION ALL
491
+ SELECT sql
492
+ FROM sqlite_temp_master
493
+ WHERE name='index_inquiry_items_on_product_id' AND type='index'
494
+ 
495
+  (0.1ms)  SELECT sql
496
+ FROM sqlite_master
497
+ WHERE name='index_inquiry_items_on_contact_id' AND type='index'
498
+ UNION ALL
499
+ SELECT sql
500
+ FROM sqlite_temp_master
501
+ WHERE name='index_inquiry_items_on_contact_id' AND type='index'
502
+ 
503
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:18:24 +0900
504
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
505
+ Processing by Bookmark::ProductsController#index as HTML
506
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
507
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
508
+ Completed 406 Not Acceptable in 218ms (ActiveRecord: 1.9ms)
509
+
510
+
511
+
512
+ ActionController::UnknownFormat (Bookmark::ProductsController#index is missing a template for this request format and variant.
513
+
514
+ request.formats: ["text/html"]
515
+ request.variant: []
516
+
517
+ NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not… nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.):
518
+
519
+ actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:56:in `default_render'
520
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
521
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
522
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
523
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
524
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
525
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
526
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
527
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
528
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
529
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
530
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
531
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
532
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
533
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
534
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
535
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
536
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
537
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
538
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
539
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
540
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
541
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
542
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
543
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
544
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
545
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
546
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
547
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
548
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
549
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
550
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
551
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
552
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
553
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
554
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
555
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
556
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
557
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
558
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
559
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
560
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
561
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
562
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
563
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
564
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
565
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
566
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
567
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
568
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
569
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
570
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
571
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
572
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
573
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
574
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
575
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
576
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
577
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
578
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
579
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
580
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
581
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
582
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
583
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
584
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
585
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
586
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
587
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
588
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.3ms)
589
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
590
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
591
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
592
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
593
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (114.8ms)
594
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:20:55 +0900
595
+ Processing by Bookmark::ProductsController#index as HTML
596
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
597
+ Product Load (2.0ms) SELECT "products".* FROM "products" WHERE 1=0
598
+ Rendering bookmark/products/index.html.erb within layouts/application
599
+ Rendered bookmark/products/index.html.erb within layouts/application (0.8ms)
600
+ Completed 200 OK in 198ms (Views: 114.8ms | ActiveRecord: 3.9ms)
601
+
602
+
603
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:21:19 +0900
604
+ Processing by Bookmark::ProductsController#index as HTML
605
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
606
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE 1=0
607
+ Rendering bookmark/products/index.html.erb within layouts/application
608
+ Rendered bookmark/products/index.html.erb within layouts/application (4.0ms)
609
+ Completed 500 Internal Server Error in 19ms (ActiveRecord: 0.3ms)
610
+
611
+
612
+
613
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
614
+ 1: <h1>Bookmark</h1>
615
+ 2:
616
+ 3: <ul>
617
+ 4: <% @products.each do |product| %>
618
+ 5: <li><%= product.name %></li>
619
+ 6: <% end %>
620
+ 7: </ul>
621
+
622
+ app/views/bookmark/products/index.html.erb:4:in `_app_views_bookmark_products_index_html_erb___2642276659644337661_70336100084360'
623
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
624
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
625
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.4ms)
626
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
627
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
628
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
629
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
630
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (113.4ms)
631
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:22:35 +0900
632
+ Processing by Bookmark::ProductsController#index as HTML
633
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
634
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
635
+ Rendering bookmark/products/index.html.erb within layouts/application
636
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IS NULL
637
+ Rendered bookmark/products/index.html.erb within layouts/application (1.5ms)
638
+ Completed 200 OK in 192ms (Views: 80.6ms | ActiveRecord: 3.1ms)
639
+
640
+
641
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:23:40 +0900
642
+ Processing by Bookmark::ProductsController#index as HTML
643
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
644
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
645
+ Rendering bookmark/products/index.html.erb within layouts/application
646
+  (0.6ms) SELECT COUNT(*) FROM "products" WHERE "products"."id" IS NULL
647
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IS NULL
648
+ Rendered bookmark/products/index.html.erb within layouts/application (4.6ms)
649
+ Completed 200 OK in 160ms (Views: 65.5ms | ActiveRecord: 3.0ms)
650
+
651
+
652
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:24:56 +0900
653
+ Processing by Bookmark::ProductsController#index as HTML
654
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
655
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE 1=0
656
+ Rendering bookmark/products/index.html.erb within layouts/application
657
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."id" IS NULL
658
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" IS NULL
659
+ Rendered bookmark/products/index.html.erb within layouts/application (1.7ms)
660
+ Completed 200 OK in 109ms (Views: 101.2ms | ActiveRecord: 0.7ms)
661
+
662
+
663
+ Started GET "/products" for ::1 at 2016-08-30 17:24:59 +0900
664
+ Processing by ProductsController#show as HTML
665
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", nil], ["LIMIT", 1]]
666
+ Completed 404 Not Found in 15ms (ActiveRecord: 0.2ms)
667
+
668
+
669
+
670
+ ActiveRecord::RecordNotFound (Couldn't find Product with 'id'=):
671
+
672
+ app/controllers/products_controller.rb:7:in `show'
673
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
674
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
675
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.8ms)
676
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
677
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
678
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
679
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms)
680
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (112.6ms)
681
+ Started GET "/products" for ::1 at 2016-08-30 17:25:15 +0900
682
+ Processing by ProductsController#index as HTML
683
+ Rendering products/index.html.erb within layouts/application
684
+ Product Load (0.9ms) SELECT "products".* FROM "products"
685
+ Rendered products/index.html.erb within layouts/application (27.1ms)
686
+ Completed 200 OK in 119ms (Views: 80.1ms | ActiveRecord: 1.9ms)
687
+
688
+
689
+ Started GET "/products" for ::1 at 2016-08-30 17:25:17 +0900
690
+ Processing by ProductsController#index as HTML
691
+ Rendering products/index.html.erb within layouts/application
692
+ Product Load (0.4ms) SELECT "products".* FROM "products"
693
+ Rendered products/index.html.erb within layouts/application (1.7ms)
694
+ Completed 200 OK in 46ms (Views: 43.1ms | ActiveRecord: 0.4ms)
695
+
696
+
697
+ Started GET "/bookmark/products" for ::1 at 2016-08-30 17:25:20 +0900
698
+ Processing by Bookmark::ProductsController#index as HTML
699
+  (0.1ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
700
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
701
+ Rendering bookmark/products/index.html.erb within layouts/application
702
+  (0.1ms) SELECT COUNT(*) FROM "products" WHERE "products"."id" IS NULL
703
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" IS NULL
704
+ Rendered bookmark/products/index.html.erb within layouts/application (1.6ms)
705
+ Completed 200 OK in 70ms (Views: 35.6ms | ActiveRecord: 1.9ms)
706
+
707
+
708
+ Started GET "/mylist/products" for ::1 at 2016-08-30 17:59:14 +0900
709
+ Processing by Mylist::ProductsController#index as HTML
710
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
711
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
712
+ Completed 406 Not Acceptable in 169ms (ActiveRecord: 2.2ms)
713
+
714
+
715
+
716
+ ActionController::UnknownFormat (Mylist::ProductsController#index is missing a template for this request format and variant.
717
+
718
+ request.formats: ["text/html"]
719
+ request.variant: []
720
+
721
+ NOTE! For XHR/Ajax or API requests, this action would normally respond with 204 No Content: an empty white screen. Since you're loading it in a web browser, we assume that you expected to actually render a template, not… nothing, so we're showing an error to be extra-clear. If you expect 204 No Content, carry on. That's what you'll get from an XHR or API request. Give it a shot.):
722
+
723
+ actionpack (5.0.0.1) lib/action_controller/metal/implicit_render.rb:56:in `default_render'
724
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
725
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
726
+ actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
727
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
728
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
729
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
730
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
731
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
732
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
733
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
734
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
735
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
736
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
737
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
738
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
739
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
740
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
741
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
742
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
743
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
744
+ activerecord (5.0.0.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
745
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
746
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
747
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
748
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
749
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
750
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
751
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
752
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
753
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
754
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
755
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
756
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
757
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
758
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
759
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
760
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
761
+ activerecord (5.0.0.1) lib/active_record/migration.rb:552:in `call'
762
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
763
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
764
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
765
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
766
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
767
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
768
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
769
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
770
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
771
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
772
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
773
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
774
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
775
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
776
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
777
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
778
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
779
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
780
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
781
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
782
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
783
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
784
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
785
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
786
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
787
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
788
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
789
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
790
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
791
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
792
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (25.5ms)
793
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
794
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms)
795
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
796
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.8ms)
797
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (171.8ms)
798
+ Started GET "/mylist/products" for ::1 at 2016-08-30 17:59:31 +0900
799
+ Processing by Mylist::ProductsController#index as HTML
800
+  (0.9ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
801
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
802
+ Rendering mylist/products/index.html.erb within layouts/application
803
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."id" IS NULL
804
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IS NULL
805
+ Rendered mylist/products/index.html.erb within layouts/application (3.6ms)
806
+ Completed 500 Internal Server Error in 219ms (ActiveRecord: 1.5ms)
807
+
808
+
809
+
810
+ ActionView::Template::Error (undefined local variable or method `bookmark_products_path' for #<#<Class:0x007ff0ccbc5600>:0x007ff0cb676470>):
811
+ 13:
812
+ 14: <ul>
813
+ 15: <li><%= link_to 'Products', products_path %></li>
814
+ 16: <li><%= link_to 'Bookmark', bookmark_products_path %></li>
815
+ 17: </ul>
816
+ 18:
817
+ 19: <% if notice %>
818
+
819
+ app/views/layouts/application.html.erb:16:in `_app_views_layouts_application_html_erb___1051338902881759666_70336098241880'
820
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
821
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
822
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.8ms)
823
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
824
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
825
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
826
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
827
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (89.0ms)
828
+ Started GET "/mylist/products" for ::1 at 2016-08-30 18:00:08 +0900
829
+ Processing by Mylist::ProductsController#index as HTML
830
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."id" IS NULL
831
+ Product Load (0.7ms) SELECT "products".* FROM "products" WHERE 1=0
832
+ Rendering mylist/products/index.html.erb within layouts/application
833
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."id" IS NULL
834
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IS NULL
835
+ Rendered mylist/products/index.html.erb within layouts/application (5.5ms)
836
+ Completed 200 OK in 195ms (Views: 47.4ms | ActiveRecord: 3.2ms)
837
+
838
+
839
+ Started GET "/products" for ::1 at 2016-08-30 18:01:58 +0900
840
+ Processing by ProductsController#index as HTML
841
+ Rendering products/index.html.erb within layouts/application
842
+ Product Load (0.2ms) SELECT "products".* FROM "products"
843
+ Rendered products/index.html.erb within layouts/application (1.8ms)
844
+ Completed 200 OK in 44ms (Views: 40.6ms | ActiveRecord: 0.2ms)
845
+
846
+
847
+  (0.1ms) begin transaction
848
+ SQL (0.6ms) INSERT INTO "products" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Nice"], ["created_at", 2016-08-30 09:02:19 UTC], ["updated_at", 2016-08-30 09:02:19 UTC]]
849
+  (0.9ms) commit transaction
850
+  (0.8ms) begin transaction
851
+ SQL (2.2ms) INSERT INTO "products" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Hi"], ["created_at", 2016-08-30 09:02:22 UTC], ["updated_at", 2016-08-30 09:02:22 UTC]]
852
+  (1.3ms) commit transaction
853
+  (0.1ms) begin transaction
854
+ SQL (0.5ms) INSERT INTO "products" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "Awesome"], ["created_at", 2016-08-30 09:02:25 UTC], ["updated_at", 2016-08-30 09:02:25 UTC]]
855
+  (0.7ms) commit transaction
856
+ Started GET "/products" for ::1 at 2016-08-30 18:02:31 +0900
857
+ Processing by ProductsController#index as HTML
858
+ Rendering products/index.html.erb within layouts/application
859
+ Product Load (0.5ms) SELECT "products".* FROM "products"
860
+ Rendered products/index.html.erb within layouts/application (15.5ms)
861
+ Completed 200 OK in 51ms (Views: 47.5ms | ActiveRecord: 0.7ms)
862
+
863
+
864
+ Started GET "/products/1" for ::1 at 2016-08-30 18:02:48 +0900
865
+ Processing by ProductsController#show as HTML
866
+ Parameters: {"id"=>"1"}
867
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
868
+ Rendering products/show.html.erb within layouts/application
869
+ Rendered products/show.html.erb within layouts/application (1.1ms)
870
+ Completed 200 OK in 32ms (Views: 25.3ms | ActiveRecord: 0.2ms)
871
+
872
+
873
+ Started GET "/mylist/products/1" for ::1 at 2016-08-30 18:02:50 +0900
874
+
875
+ ActionController::RoutingError (No route matches [GET] "/mylist/products/1"):
876
+
877
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
878
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
879
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
880
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
881
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
882
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
883
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
884
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
885
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
886
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
887
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
888
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
889
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
890
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
891
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
892
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
893
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
894
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
895
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
896
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
897
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
898
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
899
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
900
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
901
+ Rendered collection of /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (10.0ms)
902
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
903
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
904
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
905
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (143.6ms)
906
+ Started GET "/products/1" for ::1 at 2016-08-30 18:03:11 +0900
907
+ Processing by ProductsController#show as HTML
908
+ Parameters: {"id"=>"1"}
909
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
910
+ Rendering products/show.html.erb within layouts/application
911
+ Rendered products/show.html.erb within layouts/application (1.3ms)
912
+ Completed 200 OK in 34ms (Views: 30.1ms | ActiveRecord: 0.1ms)
913
+
914
+
915
+ Started GET "/products/1" for ::1 at 2016-08-30 18:03:53 +0900
916
+ Processing by ProductsController#show as HTML
917
+ Parameters: {"id"=>"1"}
918
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
919
+ Rendering products/show.html.erb within layouts/application
920
+ Rendered products/show.html.erb within layouts/application (4.8ms)
921
+ Completed 200 OK in 76ms (Views: 47.9ms | ActiveRecord: 0.2ms)
922
+
923
+
924
+ Started GET "/mylist/products/1" for ::1 at 2016-08-30 18:03:56 +0900
925
+
926
+ ActionController::RoutingError (No route matches [GET] "/mylist/products/1"):
927
+
928
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
929
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
930
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
931
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
932
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
933
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
934
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
935
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
936
+ sprockets-rails (3.1.1) lib/sprockets/rails/quiet_assets.rb:13:in `call'
937
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
938
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
939
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
940
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
941
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
942
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
943
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
944
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
945
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
946
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
947
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
948
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
949
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
950
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
951
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
952
+ Rendered collection of /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [9 times] (6.5ms)
953
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms)
954
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
955
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
956
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (141.0ms)
957
+ Started GET "/products/1" for ::1 at 2016-08-30 18:06:04 +0900
958
+ Processing by ProductsController#show as HTML
959
+ Parameters: {"id"=>"1"}
960
+ Product Load (6.1ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
961
+ Rendering products/show.html.erb within layouts/application
962
+ Rendered products/show.html.erb within layouts/application (2.7ms)
963
+ Completed 500 Internal Server Error in 276ms (ActiveRecord: 6.1ms)
964
+
965
+
966
+
967
+ ActionView::Template::Error (couldn't find file 'jquery' with type 'application/javascript'
968
+ Checked in these paths:
969
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/spec/dummy/app/assets/config
970
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/spec/dummy/app/assets/images
971
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/spec/dummy/app/assets/javascripts
972
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/spec/dummy/app/assets/stylesheets
973
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/assets/config
974
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/assets/images
975
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/assets/javascripts
976
+ /Users/tricknotes/src/github.com/bm-sms/dayservice_db/daimon-exhibition/app/assets/stylesheets
977
+ /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actioncable-5.0.0.1/lib/assets/compiled):
978
+ 5: <%= csrf_meta_tags %>
979
+ 6:
980
+ 7: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
981
+ 8: <%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
982
+ 9: </head>
983
+ 10:
984
+ 11: <body>
985
+
986
+ app/assets/javascripts/application.js:13
987
+ app/views/layouts/application.html.erb:8:in `_app_views_layouts_application_html_erb___1051338902881759666_70336135267140'
988
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
989
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
990
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.9ms)
991
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
992
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.5ms)
993
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
994
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
995
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (116.0ms)
996
+ Started GET "/products/1" for ::1 at 2016-08-30 18:07:46 +0900
997
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
998
+ Processing by ProductsController#show as HTML
999
+ Parameters: {"id"=>"1"}
1000
+ Product Load (0.8ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1001
+ Rendering products/show.html.erb within layouts/application
1002
+ Rendered products/show.html.erb within layouts/application (116.4ms)
1003
+ Completed 200 OK in 1618ms (Views: 1560.1ms | ActiveRecord: 1.6ms)
1004
+
1005
+
1006
+ Started POST "/mylist/products/1" for ::1 at 2016-08-30 18:07:53 +0900
1007
+ Processing by Mylist::ProductsController#create as HTML
1008
+ Parameters: {"authenticity_token"=>"G37DgUMTUGazUqoYL/pHezJL814okh3PDi0ADMQKmYy8n9aRuY3hnbUvp8vOOvC/RDVB8dzGs6jrcR+mx/eTdQ==", "id"=>"1"}
1009
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1010
+ Redirected to http://localhost:3000/products/1
1011
+ Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
1012
+
1013
+
1014
+ Started GET "/products/1" for ::1 at 2016-08-30 18:07:54 +0900
1015
+ Processing by ProductsController#show as HTML
1016
+ Parameters: {"id"=>"1"}
1017
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1018
+ Rendering products/show.html.erb within layouts/application
1019
+ Rendered products/show.html.erb within layouts/application (2.2ms)
1020
+ Completed 200 OK in 78ms (Views: 72.9ms | ActiveRecord: 0.4ms)
1021
+
1022
+
1023
+ Started DELETE "/mylist/products/1" for ::1 at 2016-08-30 18:07:57 +0900
1024
+ Processing by Mylist::ProductsController#destroy as HTML
1025
+ Parameters: {"authenticity_token"=>"ED8rVH3zM7Dhpu1xZ9cwGTMsXDSocVRJQhEV0lod71O33j5Eh22CS+fb4KKGF4fdRVLum1wl+i6nTQp4WeDlqg==", "id"=>"1"}
1026
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1027
+ Redirected to http://localhost:3000/products/1
1028
+ Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
1029
+
1030
+
1031
+ Started GET "/products/1" for ::1 at 2016-08-30 18:07:57 +0900
1032
+ Processing by ProductsController#show as HTML
1033
+ Parameters: {"id"=>"1"}
1034
+ Product Load (0.8ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
1035
+ Rendering products/show.html.erb within layouts/application
1036
+ Rendered products/show.html.erb within layouts/application (2.9ms)
1037
+ Completed 200 OK in 59ms (Views: 54.7ms | ActiveRecord: 0.8ms)
1038
+
1039
+
1040
+ Started GET "/" for ::1 at 2016-08-30 18:51:50 +0900
1041
+ Processing by WelcomeController#index as HTML
1042
+ Rendering welcome/index.html.erb within layouts/application
1043
+ Rendered welcome/index.html.erb within layouts/application (1.9ms)
1044
+ Completed 200 OK in 219ms (Views: 215.9ms | ActiveRecord: 0.0ms)
1045
+
1046
+
1047
+ Started GET "/products" for ::1 at 2016-08-30 18:51:52 +0900
1048
+ Processing by ProductsController#index as HTML
1049
+ Rendering products/index.html.erb within layouts/application
1050
+ Product Load (0.6ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? [["secret", false]]
1051
+ Rendered products/index.html.erb within layouts/application (13.9ms)
1052
+ Completed 200 OK in 67ms (Views: 53.1ms | ActiveRecord: 2.1ms)
1053
+
1054
+
1055
+ Started GET "/products/1" for ::1 at 2016-08-30 18:51:54 +0900
1056
+ Processing by ProductsController#show as HTML
1057
+ Parameters: {"id"=>"1"}
1058
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 1], ["LIMIT", 1]]
1059
+ Rendering products/show.html.erb within layouts/application
1060
+ Rendered products/show.html.erb within layouts/application (9.1ms)
1061
+ Completed 200 OK in 42ms (Views: 37.4ms | ActiveRecord: 0.2ms)
1062
+
1063
+
1064
+ Started GET "/products/1" for ::1 at 2016-08-30 18:52:26 +0900
1065
+ Processing by ProductsController#show as HTML
1066
+ Parameters: {"id"=>"1"}
1067
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 1], ["LIMIT", 1]]
1068
+ Rendering products/show.html.erb within layouts/application
1069
+ Rendered products/show.html.erb within layouts/application (6127.2ms)
1070
+ Completed 200 OK in 6283ms (Views: 6209.2ms | ActiveRecord: 1.3ms)
1071
+
1072
+
1073
+ Started GET "/products/1" for ::1 at 2016-08-30 18:52:41 +0900
1074
+ Processing by ProductsController#show as HTML
1075
+ Parameters: {"id"=>"1"}
1076
+ Product Load (1.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 1], ["LIMIT", 1]]
1077
+ Rendering products/show.html.erb within layouts/application
1078
+ Rendered products/show.html.erb within layouts/application (2.3ms)
1079
+ Completed 200 OK in 53ms (Views: 46.5ms | ActiveRecord: 1.4ms)
1080
+
1081
+
1082
+ Started GET "/mylist/products" for ::1 at 2016-08-30 18:55:12 +0900
1083
+ Processing by Mylist::ProductsController#index as HTML
1084
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND 1=0 [["secret", false]]
1085
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE 1=0
1086
+ Rendering mylist/products/index.html.erb within layouts/application
1087
+  (0.4ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND 1=0 [["secret", false]]
1088
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND 1=0 [["secret", false]]
1089
+ Rendered mylist/products/index.html.erb within layouts/application (4.1ms)
1090
+ Completed 200 OK in 94ms (Views: 28.8ms | ActiveRecord: 2.1ms)
1091
+
1092
+
1093
+ Started GET "/mylist/products" for ::1 at 2016-08-30 18:55:47 +0900
1094
+ Processing by Mylist::ProductsController#index as HTML
1095
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND 1=0 [["secret", false]]
1096
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE 1=0
1097
+ Rendering mylist/products/index.html.erb within layouts/application
1098
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND 1=0 [["secret", false]]
1099
+ Rendered mylist/products/index.html.erb within layouts/application (1.8ms)
1100
+ Completed 200 OK in 71ms (Views: 60.0ms | ActiveRecord: 0.5ms)
1101
+
1102
+
1103
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1104
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1105
+ Migrating to CreateInquiryItems (20160830081631)
1106
+  (0.2ms) begin transaction
1107
+  (2.1ms) DROP TABLE "inquiry_items"
1108
+ SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = ? [["version", "20160830081631"]]
1109
+  (0.9ms) commit transaction
1110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1111
+ ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
1112
+ Migrating to CreateInquiryItems (20160830081631)
1113
+  (0.0ms) begin transaction
1114
+  (0.7ms) CREATE TABLE "inquiry_items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "inquiry_id" integer, "product_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
1115
+  (0.1ms) select sqlite_version(*)
1116
+  (0.1ms) CREATE INDEX "index_inquiry_items_on_inquiry_id" ON "inquiry_items" ("inquiry_id")
1117
+  (0.1ms)  SELECT sql
1118
+ FROM sqlite_master
1119
+ WHERE name='index_inquiry_items_on_inquiry_id' AND type='index'
1120
+ UNION ALL
1121
+ SELECT sql
1122
+ FROM sqlite_temp_master
1123
+ WHERE name='index_inquiry_items_on_inquiry_id' AND type='index'
1124
+ 
1125
+  (0.1ms) CREATE INDEX "index_inquiry_items_on_product_id" ON "inquiry_items" ("product_id")
1126
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160830081631"]]
1127
+  (0.9ms) commit transaction
1128
+ ActiveRecord::InternalMetadata Load (1.0ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
1129
+  (0.1ms) begin transaction
1130
+  (0.1ms) commit transaction
1131
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
1132
+  (0.1ms)  SELECT sql
1133
+ FROM sqlite_master
1134
+ WHERE name='index_inquiry_items_on_product_id' AND type='index'
1135
+ UNION ALL
1136
+ SELECT sql
1137
+ FROM sqlite_temp_master
1138
+ WHERE name='index_inquiry_items_on_product_id' AND type='index'
1139
+ 
1140
+  (0.1ms)  SELECT sql
1141
+ FROM sqlite_master
1142
+ WHERE name='index_inquiry_items_on_inquiry_id' AND type='index'
1143
+ UNION ALL
1144
+ SELECT sql
1145
+ FROM sqlite_temp_master
1146
+ WHERE name='index_inquiry_items_on_inquiry_id' AND type='index'
1147
+ 
1148
+ Started GET "/" for ::1 at 2016-09-06 10:40:04 +0900
1149
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1150
+ Processing by WelcomeController#index as HTML
1151
+ Rendering welcome/index.html.erb within layouts/application
1152
+ Rendered welcome/index.html.erb within layouts/application (3.0ms)
1153
+ Completed 200 OK in 436ms (Views: 430.6ms | ActiveRecord: 0.0ms)
1154
+
1155
+
1156
+ Started GET "/products" for ::1 at 2016-09-06 10:48:30 +0900
1157
+ Processing by ProductsController#index as HTML
1158
+ Rendering products/index.html.erb within layouts/application
1159
+ Product Load (1.0ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? [["secret", false]]
1160
+ Rendered products/index.html.erb within layouts/application (70.0ms)
1161
+ Completed 200 OK in 243ms (Views: 164.2ms | ActiveRecord: 7.0ms)
1162
+
1163
+
1164
+ Started GET "/products/1" for ::1 at 2016-09-06 10:48:33 +0900
1165
+ Processing by ProductsController#show as HTML
1166
+ Parameters: {"id"=>"1"}
1167
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 1], ["LIMIT", 1]]
1168
+ Rendering products/show.html.erb within layouts/application
1169
+ Rendered products/show.html.erb within layouts/application (9.2ms)
1170
+ Completed 200 OK in 111ms (Views: 78.9ms | ActiveRecord: 0.5ms)
1171
+
1172
+
1173
+ Started POST "/mylist/products/1" for ::1 at 2016-09-06 10:48:36 +0900
1174
+ Processing by Mylist::ProductsController#create as HTML
1175
+ Parameters: {"authenticity_token"=>"JmWC1hXTQkDZnsvIwE3GpVEoHJUXlM/HrYQ+bjnIB+KBhJfG703zu9/jxhshjXFhJ1auOuPAYaBI2CHEOjUNGw==", "id"=>"1"}
1176
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 1], ["LIMIT", 1]]
1177
+ Redirected to http://localhost:3000/products/1
1178
+ Completed 302 Found in 46ms (ActiveRecord: 0.4ms)
1179
+
1180
+
1181
+ Started GET "/products/1" for ::1 at 2016-09-06 10:48:36 +0900
1182
+ Processing by ProductsController#show as HTML
1183
+ Parameters: {"id"=>"1"}
1184
+ Product Load (5.1ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 1], ["LIMIT", 1]]
1185
+ Rendering products/show.html.erb within layouts/application
1186
+ Rendered products/show.html.erb within layouts/application (2.4ms)
1187
+ Completed 200 OK in 64ms (Views: 44.9ms | ActiveRecord: 5.1ms)
1188
+
1189
+
1190
+ Started GET "/mylist/products" for ::1 at 2016-09-06 10:48:39 +0900
1191
+ Processing by Mylist::ProductsController#index as HTML
1192
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1193
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."id" = 1
1194
+ Rendering mylist/products/index.html.erb within layouts/application
1195
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1196
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1197
+ Rendered mylist/products/index.html.erb within layouts/application (4.0ms)
1198
+ Completed 200 OK in 245ms (Views: 74.0ms | ActiveRecord: 2.5ms)
1199
+
1200
+
1201
+ Started GET "/mylist/products" for ::1 at 2016-09-06 10:56:27 +0900
1202
+ Processing by Mylist::ProductsController#index as HTML
1203
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1204
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."id" = 1
1205
+ Rendering mylist/products/index.html.erb within layouts/application
1206
+  (0.4ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1207
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1208
+ Rendered mylist/products/index.html.erb within layouts/application (18.1ms)
1209
+ Completed 200 OK in 283ms (Views: 50.9ms | ActiveRecord: 5.7ms)
1210
+
1211
+
1212
+ Started GET "/mylist/products" for ::1 at 2016-09-06 10:56:45 +0900
1213
+ Processing by Mylist::ProductsController#index as HTML
1214
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1215
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" = 1
1216
+ Rendering mylist/products/index.html.erb within layouts/application
1217
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1218
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1219
+ Rendered mylist/products/index.html.erb within layouts/application (7.3ms)
1220
+ Completed 200 OK in 62ms (Views: 47.7ms | ActiveRecord: 1.1ms)
1221
+
1222
+
1223
+ Started POST "/inquiries" for ::1 at 2016-09-06 10:56:47 +0900
1224
+ Processing by InquiriesController#create as HTML
1225
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"ZjAjw2AfHN3Lk5R3vt5iLCL8kSbiPeSF3xx2xdlipLvB0TbTmoGtJs3umaRfHtXoVIIjiRZpSuI6QGlv2p+uQg==", "commit"=>"Inquiry with these products"}
1226
+ Completed 400 Bad Request in 8ms (ActiveRecord: 0.0ms)
1227
+
1228
+
1229
+
1230
+ ActionController::ParameterMissing (param is missing or the value is empty: inquiry):
1231
+
1232
+ app/controllers/inquiries_controller.rb:19:in `inquiry_params'
1233
+ app/controllers/inquiries_controller.rb:7:in `create'
1234
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1235
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1236
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.9ms)
1237
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1238
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.0ms)
1239
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1240
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms)
1241
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (84.9ms)
1242
+ Started GET "/mylist/products" for ::1 at 2016-09-06 10:59:29 +0900
1243
+ Processing by Mylist::ProductsController#index as HTML
1244
+  (0.6ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1245
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" = 1
1246
+ Rendering mylist/products/index.html.erb within layouts/application
1247
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1248
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1249
+ Rendered mylist/products/index.html.erb within layouts/application (58.6ms)
1250
+ Completed 500 Internal Server Error in 92ms (ActiveRecord: 1.2ms)
1251
+
1252
+
1253
+
1254
+ ActionView::Template::Error (undefined method `inquiry[product_id]' for #<Inquiry:0x007fd01eb7ca78>
1255
+ Did you mean? inquiry_items):
1256
+ 9: <li>
1257
+ 10: <label>
1258
+ 11: <%= product.name %>
1259
+ 12: <%= f.check_box 'inquiry[product_id]', multiple: true %>
1260
+ 13: </label>
1261
+ 14: </li>
1262
+ 15: <% end %>
1263
+
1264
+ app/views/mylist/products/index.html.erb:12:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265899758840'
1265
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265899758840'
1266
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265899758840'
1267
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1268
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1269
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (12.9ms)
1270
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1271
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
1272
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1273
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1274
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (104.9ms)
1275
+ Started GET "/mylist/products" for ::1 at 2016-09-06 10:59:42 +0900
1276
+ Processing by Mylist::ProductsController#index as HTML
1277
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1278
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = 1
1279
+ Rendering mylist/products/index.html.erb within layouts/application
1280
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1281
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = 1 [["secret", false]]
1282
+ Rendered mylist/products/index.html.erb within layouts/application (8.9ms)
1283
+ Completed 200 OK in 41ms (Views: 30.0ms | ActiveRecord: 1.0ms)
1284
+
1285
+
1286
+ Started GET "/products" for ::1 at 2016-09-06 10:59:55 +0900
1287
+ Processing by ProductsController#index as HTML
1288
+ Rendering products/index.html.erb within layouts/application
1289
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? [["secret", false]]
1290
+ Rendered products/index.html.erb within layouts/application (3.0ms)
1291
+ Completed 200 OK in 39ms (Views: 35.0ms | ActiveRecord: 0.4ms)
1292
+
1293
+
1294
+ Started GET "/products/2" for ::1 at 2016-09-06 10:59:57 +0900
1295
+ Processing by ProductsController#show as HTML
1296
+ Parameters: {"id"=>"2"}
1297
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 2], ["LIMIT", 1]]
1298
+ Rendering products/show.html.erb within layouts/application
1299
+ Rendered products/show.html.erb within layouts/application (4.9ms)
1300
+ Completed 200 OK in 53ms (Views: 45.4ms | ActiveRecord: 0.3ms)
1301
+
1302
+
1303
+ Started POST "/mylist/products/2" for ::1 at 2016-09-06 11:00:00 +0900
1304
+ Processing by Mylist::ProductsController#create as HTML
1305
+ Parameters: {"authenticity_token"=>"Fd70dpdAL5y+U0KGaAmhmBLhkDArIPHq8XYDB3jjFZSyP+Fmbd6eZ7guT1WJyRZcZJ8in990X40UKhytex4fbQ==", "id"=>"2"}
1306
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 2], ["LIMIT", 1]]
1307
+ Redirected to http://localhost:3000/products/2
1308
+ Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
1309
+
1310
+
1311
+ Started GET "/products/2" for ::1 at 2016-09-06 11:00:00 +0900
1312
+ Processing by ProductsController#show as HTML
1313
+ Parameters: {"id"=>"2"}
1314
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" = ? LIMIT ? [["secret", false], ["id", 2], ["LIMIT", 1]]
1315
+ Rendering products/show.html.erb within layouts/application
1316
+ Rendered products/show.html.erb within layouts/application (5.1ms)
1317
+ Completed 200 OK in 43ms (Views: 38.1ms | ActiveRecord: 0.2ms)
1318
+
1319
+
1320
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:00:01 +0900
1321
+ Processing by Mylist::ProductsController#index as HTML
1322
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1323
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1324
+ Rendering mylist/products/index.html.erb within layouts/application
1325
+  (0.8ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1326
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1327
+ Rendered mylist/products/index.html.erb within layouts/application (7.2ms)
1328
+ Completed 200 OK in 48ms (Views: 31.2ms | ActiveRecord: 1.7ms)
1329
+
1330
+
1331
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:00:53 +0900
1332
+ Processing by Mylist::ProductsController#index as HTML
1333
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1334
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1335
+ Rendering mylist/products/index.html.erb within layouts/application
1336
+  (0.5ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1337
+ Product Load (19.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1338
+ Rendered mylist/products/index.html.erb within layouts/application (96.8ms)
1339
+ Completed 500 Internal Server Error in 125ms (ActiveRecord: 20.6ms)
1340
+
1341
+
1342
+
1343
+ ActionView::Template::Error (undefined local variable or method `product' for #<#<Class:0x007fd022070b30>:0x007fd01ef785c8>
1344
+ Did you mean? product_url
1345
+ @products):
1346
+ 9: <li>
1347
+ 10: <label>
1348
+ 11: <%= f.check_box 'product_ids', multiple: true %>
1349
+ 12: <%= product.name %>
1350
+ 13: </label>
1351
+ 14: </li>
1352
+ 15: <% end %>
1353
+
1354
+ app/views/mylist/products/index.html.erb:12:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265924733000'
1355
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265924733000'
1356
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265924733000'
1357
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1358
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1359
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.3ms)
1360
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1361
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
1362
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1363
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1364
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (112.7ms)
1365
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:01:23 +0900
1366
+ Processing by Mylist::ProductsController#index as HTML
1367
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1368
+ Product Load (0.7ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1369
+ Rendering mylist/products/index.html.erb within layouts/application
1370
+  (0.7ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1371
+ Rendered mylist/products/index.html.erb within layouts/application (7.1ms)
1372
+ Completed 500 Internal Server Error in 32ms (ActiveRecord: 1.7ms)
1373
+
1374
+
1375
+
1376
+ ActionView::Template::Error (undefined method `id' for nil:NilClass):
1377
+ 8: <%= f.fields_for :products do |ff| %>
1378
+ 9: <li>
1379
+ 10: <label>
1380
+ 11: <%= f.check_box 'product_ids', value: ff.object.id, multiple: true %>
1381
+ 12: <%= ff.object.name %>
1382
+ 13: </label>
1383
+ 14: </li>
1384
+
1385
+ app/views/mylist/products/index.html.erb:11:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265896370960'
1386
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265896370960'
1387
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265896370960'
1388
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1389
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1390
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms)
1391
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1392
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.9ms)
1393
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1394
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1395
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (77.6ms)
1396
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:01:35 +0900
1397
+ Processing by Mylist::ProductsController#index as HTML
1398
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1399
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1400
+ Rendering mylist/products/index.html.erb within layouts/application
1401
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1402
+ Rendered mylist/products/index.html.erb within layouts/application (7.9ms)
1403
+ Completed 500 Internal Server Error in 50ms (ActiveRecord: 1.0ms)
1404
+
1405
+
1406
+
1407
+ ActionView::Template::Error (undefined method `id' for nil:NilClass):
1408
+ 8: <%= f.fields_for :products do |ff| %>
1409
+ 9: <li>
1410
+ 10: <label>
1411
+ 11: <%= ff.check_box 'product_ids', value: ff.object.id, multiple: true %>
1412
+ 12: <%= ff.object.name %>
1413
+ 13: </label>
1414
+ 14: </li>
1415
+
1416
+ app/views/mylist/products/index.html.erb:11:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265947378320'
1417
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265947378320'
1418
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265947378320'
1419
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1420
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1421
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms)
1422
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1423
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
1424
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1425
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1426
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (76.9ms)
1427
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:03:41 +0900
1428
+ Processing by Mylist::ProductsController#index as HTML
1429
+  (1.0ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1430
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1431
+ Rendering mylist/products/index.html.erb within layouts/application
1432
+  (0.6ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1433
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1434
+ Rendered mylist/products/index.html.erb within layouts/application (22.9ms)
1435
+ Completed 200 OK in 133ms (Views: 69.6ms | ActiveRecord: 2.2ms)
1436
+
1437
+
1438
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:04:04 +0900
1439
+ Processing by Mylist::ProductsController#index as HTML
1440
+  (0.5ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1441
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1442
+ Rendering mylist/products/index.html.erb within layouts/application
1443
+  (0.6ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1444
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1445
+ Rendered mylist/products/index.html.erb within layouts/application (15.0ms)
1446
+ Completed 500 Internal Server Error in 40ms (ActiveRecord: 1.6ms)
1447
+
1448
+
1449
+
1450
+ ActionView::Template::Error (undefined method `merge' for 1:Fixnum):
1451
+ 8: <% @products.each do |product| %>
1452
+ 9: <li>
1453
+ 10: <label>
1454
+ 11: <%= f.check_box 'product_ids', product.id, multiple: true %>
1455
+ 12: <%= product.name %>
1456
+ 13: </label>
1457
+ 14: </li>
1458
+
1459
+ app/views/mylist/products/index.html.erb:11:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265951826600'
1460
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265951826600'
1461
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265951826600'
1462
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1463
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1464
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.6ms)
1465
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1466
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
1467
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1468
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
1469
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (81.3ms)
1470
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:04:10 +0900
1471
+ Processing by Mylist::ProductsController#index as HTML
1472
+  (0.5ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1473
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1474
+ Rendering mylist/products/index.html.erb within layouts/application
1475
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1476
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1477
+ Rendered mylist/products/index.html.erb within layouts/application (3.7ms)
1478
+ Completed 200 OK in 56ms (Views: 33.2ms | ActiveRecord: 1.0ms)
1479
+
1480
+
1481
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:04:25 +0900
1482
+ Processing by Mylist::ProductsController#index as HTML
1483
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1484
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1485
+ Rendering mylist/products/index.html.erb within layouts/application
1486
+  (0.5ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1487
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1488
+ Rendered mylist/products/index.html.erb within layouts/application (43465.5ms)
1489
+ Completed 200 OK in 43518ms (Views: 43497.8ms | ActiveRecord: 1.7ms)
1490
+
1491
+
1492
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:05:27 +0900
1493
+ Processing by Mylist::ProductsController#index as HTML
1494
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1495
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1496
+ Rendering mylist/products/index.html.erb within layouts/application
1497
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1498
+ Product Load (0.8ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1499
+ Rendered mylist/products/index.html.erb within layouts/application (7.9ms)
1500
+ Completed 200 OK in 75ms (Views: 54.7ms | ActiveRecord: 1.7ms)
1501
+
1502
+
1503
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:06:02 +0900
1504
+ Processing by Mylist::ProductsController#index as HTML
1505
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1506
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1507
+ Rendering mylist/products/index.html.erb within layouts/application
1508
+  (0.7ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1509
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1510
+ Rendered mylist/products/index.html.erb within layouts/application (8.9ms)
1511
+ Completed 200 OK in 45ms (Views: 33.1ms | ActiveRecord: 1.6ms)
1512
+
1513
+
1514
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:06:17 +0900
1515
+ Processing by Mylist::ProductsController#index as HTML
1516
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1517
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1518
+ Rendering mylist/products/index.html.erb within layouts/application
1519
+  (0.4ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1520
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1521
+ Rendered mylist/products/index.html.erb within layouts/application (6.8ms)
1522
+ Completed 200 OK in 50ms (Views: 33.9ms | ActiveRecord: 1.3ms)
1523
+
1524
+
1525
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:08:05 +0900
1526
+ Processing by Mylist::ProductsController#index as HTML
1527
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1528
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1529
+ Rendering mylist/products/index.html.erb within layouts/application
1530
+  (0.4ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1531
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1532
+ Rendered mylist/products/index.html.erb within layouts/application (13.4ms)
1533
+ Completed 200 OK in 53ms (Views: 36.9ms | ActiveRecord: 1.3ms)
1534
+
1535
+
1536
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:08:21 +0900
1537
+ Processing by Mylist::ProductsController#index as HTML
1538
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1539
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1540
+ Rendering mylist/products/index.html.erb within layouts/application
1541
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1542
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1543
+ Rendered mylist/products/index.html.erb within layouts/application (7.8ms)
1544
+ Completed 200 OK in 38ms (Views: 25.1ms | ActiveRecord: 1.2ms)
1545
+
1546
+
1547
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:08:46 +0900
1548
+ Processing by Mylist::ProductsController#index as HTML
1549
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1550
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1551
+ Rendering mylist/products/index.html.erb within layouts/application
1552
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1553
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1554
+ Rendered mylist/products/index.html.erb within layouts/application (32928.3ms)
1555
+ Completed 200 OK in 32980ms (Views: 32965.5ms | ActiveRecord: 1.1ms)
1556
+
1557
+
1558
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:10:17 +0900
1559
+ Processing by Mylist::ProductsController#index as HTML
1560
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1561
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1562
+ Rendering mylist/products/index.html.erb within layouts/application
1563
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1564
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1565
+ Rendered mylist/products/index.html.erb within layouts/application (7.8ms)
1566
+ Completed 500 Internal Server Error in 52ms (ActiveRecord: 1.4ms)
1567
+
1568
+
1569
+
1570
+ ActionView::Template::Error (wrong number of arguments (given 2, expected 0..1)):
1571
+ 8: <%= f.collection_check_boxes :product_ids, @products, :id, :name do |ff| %>
1572
+ 9: <li>
1573
+ 10: <label>
1574
+ 11: <%= ff.check_box :id, name: 'product_ids', multiple: true %>
1575
+ 12: <%= ff.object.name %>
1576
+ 13: </label>
1577
+ 14: </li>
1578
+
1579
+ app/views/mylist/products/index.html.erb:11:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265959524380'
1580
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265959524380'
1581
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265959524380'
1582
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1583
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1584
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (8.4ms)
1585
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1586
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
1587
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1588
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1589
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (78.4ms)
1590
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:10:29 +0900
1591
+ Processing by Mylist::ProductsController#index as HTML
1592
+  (0.5ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1593
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1594
+ Rendering mylist/products/index.html.erb within layouts/application
1595
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1596
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1597
+ Rendered mylist/products/index.html.erb within layouts/application (13.5ms)
1598
+ Completed 500 Internal Server Error in 38ms (ActiveRecord: 1.4ms)
1599
+
1600
+
1601
+
1602
+ ActionView::Template::Error (undefined method `merge' for :id:Symbol):
1603
+ 8: <%= f.collection_check_boxes :product_ids, @products, :id, :name do |ff| %>
1604
+ 9: <li>
1605
+ 10: <label>
1606
+ 11: <%= ff.check_box :id %>
1607
+ 12: <%= ff.object.name %>
1608
+ 13: </label>
1609
+ 14: </li>
1610
+
1611
+ app/views/mylist/products/index.html.erb:11:in `block (2 levels) in _app_views_mylist_products_index_html_erb__2691527047028168760_70265946241820'
1612
+ app/views/mylist/products/index.html.erb:8:in `block in _app_views_mylist_products_index_html_erb__2691527047028168760_70265946241820'
1613
+ app/views/mylist/products/index.html.erb:6:in `_app_views_mylist_products_index_html_erb__2691527047028168760_70265946241820'
1614
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
1615
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1616
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms)
1617
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1618
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1619
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1620
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1621
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (90.0ms)
1622
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:10:35 +0900
1623
+ Processing by Mylist::ProductsController#index as HTML
1624
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1625
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1626
+ Rendering mylist/products/index.html.erb within layouts/application
1627
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1628
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1629
+ Rendered mylist/products/index.html.erb within layouts/application (5.1ms)
1630
+ Completed 200 OK in 52ms (Views: 30.3ms | ActiveRecord: 1.3ms)
1631
+
1632
+
1633
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:11:23 +0900
1634
+ Processing by Mylist::ProductsController#index as HTML
1635
+  (0.5ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1636
+ Product Load (1.0ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1637
+ Rendering mylist/products/index.html.erb within layouts/application
1638
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1639
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1640
+ Rendered mylist/products/index.html.erb within layouts/application (8.8ms)
1641
+ Completed 200 OK in 50ms (Views: 34.9ms | ActiveRecord: 2.4ms)
1642
+
1643
+
1644
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:12:02 +0900
1645
+ Processing by Mylist::ProductsController#index as HTML
1646
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1647
+ Product Load (0.1ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1648
+ Rendering mylist/products/index.html.erb within layouts/application
1649
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1650
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1651
+ Rendered mylist/products/index.html.erb within layouts/application (9.5ms)
1652
+ Completed 200 OK in 43ms (Views: 30.3ms | ActiveRecord: 0.9ms)
1653
+
1654
+
1655
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:12:58 +0900
1656
+ Processing by Mylist::ProductsController#index as HTML
1657
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1658
+ Product Load (2.8ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1659
+ Rendering mylist/products/index.html.erb within layouts/application
1660
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1661
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1662
+ Rendered mylist/products/index.html.erb within layouts/application (24.2ms)
1663
+ Completed 200 OK in 117ms (Views: 84.4ms | ActiveRecord: 3.8ms)
1664
+
1665
+
1666
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:14:27 +0900
1667
+ Processing by Mylist::ProductsController#index as HTML
1668
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1669
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1670
+ Rendering mylist/products/index.html.erb within layouts/application
1671
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1672
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1673
+ Rendered mylist/products/index.html.erb within layouts/application (7.5ms)
1674
+ Completed 200 OK in 53ms (Views: 34.8ms | ActiveRecord: 1.2ms)
1675
+
1676
+
1677
+ Started POST "/inquiries" for ::1 at 2016-09-06 11:14:30 +0900
1678
+ Processing by InquiriesController#create as HTML
1679
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"cSwoFkXzTQ0kwk2JhWNjy7yNuNW/5p0cgfsIVEpyKUrWzT0Gv2389iK/QFpko9QPyvMKekuyM3tkpxf+SY8jsw==", "inquiry"=>{"product_ids"=>["0", "1", "0", "2"]}, "commit"=>"Inquiry with these products"}
1680
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (0, 1, 0, 2)
1681
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.3ms)
1682
+
1683
+
1684
+
1685
+ ActiveRecord::AssociationTypeMismatch (Product(#70265889130900) expected, got NilClass(#70265887711240)):
1686
+
1687
+ app/controllers/inquiries_controller.rb:7:in `create'
1688
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1689
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1690
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.0ms)
1691
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1692
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1693
+ Rendering /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1694
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
1695
+ Rendered /Users/tricknotes/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (77.8ms)
1696
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:14:37 +0900
1697
+ Processing by Mylist::ProductsController#index as HTML
1698
+  (0.7ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1699
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1700
+ Rendering mylist/products/index.html.erb within layouts/application
1701
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1702
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1703
+ Rendered mylist/products/index.html.erb within layouts/application (5.6ms)
1704
+ Completed 200 OK in 47ms (Views: 31.2ms | ActiveRecord: 1.4ms)
1705
+
1706
+
1707
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:14:42 +0900
1708
+ Processing by Mylist::ProductsController#index as HTML
1709
+  (0.3ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1710
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1711
+ Rendering mylist/products/index.html.erb within layouts/application
1712
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1713
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1714
+ Rendered mylist/products/index.html.erb within layouts/application (8.4ms)
1715
+ Completed 200 OK in 47ms (Views: 29.1ms | ActiveRecord: 1.4ms)
1716
+
1717
+
1718
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:15:26 +0900
1719
+ Processing by Mylist::ProductsController#index as HTML
1720
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1721
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1722
+ Rendering mylist/products/index.html.erb within layouts/application
1723
+  (0.2ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1724
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1725
+ Rendered mylist/products/index.html.erb within layouts/application (7.8ms)
1726
+ Completed 200 OK in 114ms (Views: 28.9ms | ActiveRecord: 3.6ms)
1727
+
1728
+
1729
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:15:33 +0900
1730
+ Processing by Mylist::ProductsController#index as HTML
1731
+  (0.8ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1732
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1733
+ Rendering mylist/products/index.html.erb within layouts/application
1734
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1735
+ Product Load (0.5ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1736
+ Rendered mylist/products/index.html.erb within layouts/application (8.5ms)
1737
+ Completed 200 OK in 83ms (Views: 63.5ms | ActiveRecord: 1.9ms)
1738
+
1739
+
1740
+ Started POST "/inquiries" for ::1 at 2016-09-06 11:15:46 +0900
1741
+ Processing by InquiriesController#create as HTML
1742
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"9C2Z1hSDzNVDD4FxwwszAA0uGInRm+yjPRcQPfNBVBNTzIzG7h19LkVyjKIiy4TEe1CqJiXPQsTYSw+X8Lxe6g==", "inquiry"=>{"product_ids"=>["1", "2"]}, "commit"=>"Inquiry with these products"}
1743
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1744
+  (0.4ms) begin transaction
1745
+ SQL (1.2ms) INSERT INTO "inquiries" ("created_at", "updated_at") VALUES (?, ?) [["created_at", 2016-09-06 02:15:46 UTC], ["updated_at", 2016-09-06 02:15:46 UTC]]
1746
+ SQL (1.1ms) INSERT INTO "inquiry_items" ("inquiry_id", "product_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["inquiry_id", 1], ["product_id", 1], ["created_at", 2016-09-06 02:15:46 UTC], ["updated_at", 2016-09-06 02:15:46 UTC]]
1747
+ SQL (0.1ms) INSERT INTO "inquiry_items" ("inquiry_id", "product_id", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["inquiry_id", 1], ["product_id", 2], ["created_at", 2016-09-06 02:15:46 UTC], ["updated_at", 2016-09-06 02:15:46 UTC]]
1748
+  (0.8ms) commit transaction
1749
+ Redirected to http://localhost:3000/
1750
+ Completed 302 Found in 29ms (ActiveRecord: 3.9ms)
1751
+
1752
+
1753
+ Started GET "/" for ::1 at 2016-09-06 11:15:46 +0900
1754
+ Processing by WelcomeController#index as HTML
1755
+ Rendering welcome/index.html.erb within layouts/application
1756
+ Rendered welcome/index.html.erb within layouts/application (0.7ms)
1757
+ Completed 200 OK in 29ms (Views: 26.7ms | ActiveRecord: 0.0ms)
1758
+
1759
+
1760
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:15:50 +0900
1761
+ Processing by Mylist::ProductsController#index as HTML
1762
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1763
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1764
+ Rendering mylist/products/index.html.erb within layouts/application
1765
+  (0.4ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1766
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1767
+ Rendered mylist/products/index.html.erb within layouts/application (6.6ms)
1768
+ Completed 200 OK in 61ms (Views: 32.3ms | ActiveRecord: 1.0ms)
1769
+
1770
+
1771
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:16:55 +0900
1772
+ Processing by Mylist::ProductsController#index as HTML
1773
+  (0.2ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1774
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1775
+ Rendering mylist/products/index.html.erb within layouts/application
1776
+  (0.4ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1777
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1778
+ Rendered mylist/products/index.html.erb within layouts/application (19.1ms)
1779
+ Completed 200 OK in 116ms (Views: 49.1ms | ActiveRecord: 6.1ms)
1780
+
1781
+
1782
+ Started GET "/mylist/products" for ::1 at 2016-09-06 11:18:54 +0900
1783
+ Processing by Mylist::ProductsController#index as HTML
1784
+  (0.4ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1785
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1786
+ Rendering mylist/products/index.html.erb within layouts/application
1787
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1788
+ Product Load (0.4ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1789
+ Rendered mylist/products/index.html.erb within layouts/application (6.4ms)
1790
+ Completed 200 OK in 47ms (Views: 31.3ms | ActiveRecord: 1.3ms)
1791
+
1792
+
1793
+ Started GET "/inquiries/new?utf8=%E2%9C%93&inquiry%5Bproduct_ids%5D%5B%5D=1&inquiry%5Bproduct_ids%5D%5B%5D=2&commit=Inquiry+with+these+products" for ::1 at 2016-09-06 11:18:57 +0900
1794
+ Processing by InquiriesController#new as HTML
1795
+ Parameters: {"utf8"=>"✓", "inquiry"=>{"product_ids"=>["1", "2"]}, "commit"=>"Inquiry with these products"}
1796
+ Rendering inquiries/new.html.erb within layouts/application
1797
+ Rendered inquiries/new.html.erb within layouts/application (9.2ms)
1798
+ Completed 200 OK in 56ms (Views: 42.8ms | ActiveRecord: 0.0ms)
1799
+
1800
+
1801
+ Started GET "/mylist/products" for ::1 at 2016-09-06 12:11:54 +0900
1802
+ Processing by Mylist::ProductsController#index as HTML
1803
+  (0.6ms) SELECT "products"."id" FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1804
+ Product Load (1.3ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1805
+ Rendering mylist/products/index.html.erb within layouts/application
1806
+  (0.3ms) SELECT COUNT(*) FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1807
+ Product Load (0.3ms) SELECT "products".* FROM "products" WHERE "products"."secret" = ? AND "products"."id" IN (1, 2) [["secret", false]]
1808
+ Rendered mylist/products/index.html.erb within layouts/application (13.9ms)
1809
+ Completed 200 OK in 392ms (Views: 80.8ms | ActiveRecord: 8.3ms)
1810
+
1811
+
1812
+ Started GET "/inquiries/new?utf8=%E2%9C%93&inquiry%5Bproduct_ids%5D%5B%5D=1&inquiry%5Bproduct_ids%5D%5B%5D=2&commit=Inquiry+with+these+products" for ::1 at 2016-09-06 12:12:07 +0900
1813
+ Processing by InquiriesController#new as HTML
1814
+ Parameters: {"utf8"=>"✓", "inquiry"=>{"product_ids"=>["1", "2"]}, "commit"=>"Inquiry with these products"}
1815
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" IN (1, 2)
1816
+ Rendering inquiries/new.html.erb within layouts/application
1817
+ Rendered inquiries/new.html.erb within layouts/application (30.2ms)
1818
+ Completed 200 OK in 232ms (Views: 57.3ms | ActiveRecord: 5.6ms)
1819
+
1820
+
1821
+ Product Load (0.2ms) SELECT "products".* FROM "products" WHERE "products"."id" = ? LIMIT ? [["id", 99], ["LIMIT", 1]]