notee 0.4.0 → 1.0.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 (246) hide show
  1. checksums.yaml +4 -4
  2. data/app/assets/javascripts/notee/application.js +19539 -17294
  3. data/app/controllers/notee/application_controller.rb +5 -0
  4. data/app/controllers/notee/categories_controller.rb +7 -3
  5. data/app/controllers/notee/comments_controller.rb +9 -4
  6. data/app/controllers/notee/images_controller.rb +2 -2
  7. data/app/controllers/notee/posts_controller.rb +11 -4
  8. data/app/controllers/notee/roles_controller.rb +1 -1
  9. data/app/controllers/notee/tokens_controller.rb +9 -15
  10. data/app/controllers/notee/trashes_controller.rb +60 -0
  11. data/app/controllers/notee/users_controller.rb +26 -6
  12. data/app/models/notee/application_record.rb +27 -0
  13. data/app/models/notee/authority.rb +377 -0
  14. data/app/models/notee/category.rb +15 -2
  15. data/app/models/notee/comment.rb +6 -0
  16. data/app/models/notee/image.rb +2 -2
  17. data/app/models/notee/post.rb +7 -5
  18. data/app/models/notee/user.rb +97 -41
  19. data/app/views/layouts/notee/application.html.erb +3 -1
  20. data/config/routes.rb +19 -9
  21. data/db/migrate/20160605141437_create_notee_posts.rb +1 -0
  22. data/db/migrate/20160605141510_create_notee_categories.rb +4 -1
  23. data/db/migrate/20160605141547_create_notee_images.rb +4 -2
  24. data/db/migrate/20160803154954_create_notee_comments.rb +2 -1
  25. data/db/migrate/20160809145754_create_notee_users.rb +1 -0
  26. data/lib/notee/helpers/notee_helper.rb +65 -46
  27. data/lib/notee/helpers/view_helper.rb +10 -2
  28. data/lib/notee/status.rb +1 -2
  29. data/lib/notee/version.rb +1 -1
  30. data/lib/tasks/config/notee.rb +26 -0
  31. data/lib/tasks/config/schedule.rb +7 -0
  32. data/lib/tasks/controllers/notee_controller.rb +65 -0
  33. data/lib/tasks/javascripts/notee/highlight.pack.js +2 -0
  34. data/lib/tasks/notee_tasks.rake +105 -51
  35. data/lib/tasks/stylesheets/notee/highlight/agate.css +108 -0
  36. data/lib/tasks/stylesheets/notee/highlight/androidstudio.css +66 -0
  37. data/lib/tasks/stylesheets/notee/highlight/arduino-light.css +88 -0
  38. data/lib/tasks/stylesheets/notee/highlight/arta.css +73 -0
  39. data/lib/tasks/stylesheets/notee/highlight/ascetic.css +45 -0
  40. data/lib/tasks/stylesheets/notee/highlight/atelier-cave-dark.css +83 -0
  41. data/lib/tasks/stylesheets/notee/highlight/atelier-cave-light.css +85 -0
  42. data/lib/tasks/stylesheets/notee/highlight/atelier-dune-dark.css +69 -0
  43. data/lib/tasks/stylesheets/notee/highlight/atelier-dune-light.css +69 -0
  44. data/lib/tasks/stylesheets/notee/highlight/atelier-estuary-dark.css +84 -0
  45. data/lib/tasks/stylesheets/notee/highlight/atelier-estuary-light.css +84 -0
  46. data/lib/tasks/stylesheets/notee/highlight/atelier-forest-dark.css +69 -0
  47. data/lib/tasks/stylesheets/notee/highlight/atelier-forest-light.css +69 -0
  48. data/lib/tasks/stylesheets/notee/highlight/atelier-heath-dark.css +69 -0
  49. data/lib/tasks/stylesheets/notee/highlight/atelier-heath-light.css +69 -0
  50. data/lib/tasks/stylesheets/notee/highlight/atelier-lakeside-dark.css +69 -0
  51. data/lib/tasks/stylesheets/notee/highlight/atelier-lakeside-light.css +69 -0
  52. data/lib/tasks/stylesheets/notee/highlight/atelier-plateau-dark.css +84 -0
  53. data/lib/tasks/stylesheets/notee/highlight/atelier-plateau-light.css +84 -0
  54. data/lib/tasks/stylesheets/notee/highlight/atelier-savanna-dark.css +84 -0
  55. data/lib/tasks/stylesheets/notee/highlight/atelier-savanna-light.css +84 -0
  56. data/lib/tasks/stylesheets/notee/highlight/atelier-seaside-dark.css +69 -0
  57. data/lib/tasks/stylesheets/notee/highlight/atelier-seaside-light.css +69 -0
  58. data/lib/tasks/stylesheets/notee/highlight/atelier-sulphurpool-dark.css +69 -0
  59. data/lib/tasks/stylesheets/notee/highlight/atelier-sulphurpool-light.css +69 -0
  60. data/lib/tasks/stylesheets/notee/highlight/atom-one-dark.css +96 -0
  61. data/lib/tasks/stylesheets/notee/highlight/atom-one-light.css +96 -0
  62. data/lib/tasks/stylesheets/notee/highlight/brown-paper.css +64 -0
  63. data/lib/tasks/stylesheets/notee/highlight/brown-papersq.png +0 -0
  64. data/lib/tasks/stylesheets/notee/highlight/codepen-embed.css +60 -0
  65. data/lib/tasks/stylesheets/notee/highlight/color-brewer.css +71 -0
  66. data/lib/tasks/stylesheets/notee/highlight/darcula.css +77 -0
  67. data/lib/tasks/stylesheets/notee/highlight/dark.css +63 -0
  68. data/lib/tasks/stylesheets/notee/highlight/darkula.css +6 -0
  69. data/lib/tasks/stylesheets/notee/highlight/default.css +99 -0
  70. data/lib/tasks/stylesheets/notee/highlight/docco.css +97 -0
  71. data/lib/tasks/stylesheets/notee/highlight/dracula.css +76 -0
  72. data/lib/tasks/stylesheets/notee/highlight/far.css +71 -0
  73. data/lib/tasks/stylesheets/notee/highlight/foundation.css +88 -0
  74. data/lib/tasks/stylesheets/notee/highlight/github-gist.css +71 -0
  75. data/lib/tasks/stylesheets/notee/highlight/github.css +99 -0
  76. data/lib/tasks/stylesheets/notee/highlight/googlecode.css +89 -0
  77. data/lib/tasks/stylesheets/notee/highlight/grayscale.css +101 -0
  78. data/lib/tasks/stylesheets/notee/highlight/gruvbox-dark.css +108 -0
  79. data/lib/tasks/stylesheets/notee/highlight/gruvbox-light.css +108 -0
  80. data/lib/tasks/stylesheets/notee/highlight/hopscotch.css +83 -0
  81. data/lib/tasks/stylesheets/notee/highlight/hybrid.css +102 -0
  82. data/lib/tasks/stylesheets/notee/highlight/idea.css +97 -0
  83. data/lib/tasks/stylesheets/notee/highlight/ir-black.css +73 -0
  84. data/lib/tasks/stylesheets/notee/highlight/kimbie.dark.css +74 -0
  85. data/lib/tasks/stylesheets/notee/highlight/kimbie.light.css +74 -0
  86. data/lib/tasks/stylesheets/notee/highlight/magula.css +70 -0
  87. data/lib/tasks/stylesheets/notee/highlight/mono-blue.css +59 -0
  88. data/lib/tasks/stylesheets/notee/highlight/monokai-sublime.css +83 -0
  89. data/lib/tasks/stylesheets/notee/highlight/monokai.css +70 -0
  90. data/lib/tasks/stylesheets/notee/highlight/obsidian.css +88 -0
  91. data/lib/tasks/stylesheets/notee/highlight/ocean.css +74 -0
  92. data/lib/tasks/stylesheets/notee/highlight/paraiso-dark.css +72 -0
  93. data/lib/tasks/stylesheets/notee/highlight/paraiso-light.css +72 -0
  94. data/lib/tasks/stylesheets/notee/highlight/pojoaque.css +83 -0
  95. data/lib/tasks/stylesheets/notee/highlight/pojoaque.jpg +0 -0
  96. data/lib/tasks/stylesheets/notee/highlight/purebasic.css +96 -0
  97. data/lib/tasks/stylesheets/notee/highlight/qtcreator_dark.css +83 -0
  98. data/lib/tasks/stylesheets/notee/highlight/qtcreator_light.css +83 -0
  99. data/lib/tasks/stylesheets/notee/highlight/railscasts.css +106 -0
  100. data/lib/tasks/stylesheets/notee/highlight/rainbow.css +85 -0
  101. data/lib/tasks/stylesheets/notee/highlight/school-book.css +72 -0
  102. data/lib/tasks/stylesheets/notee/highlight/school-book.png +0 -0
  103. data/lib/tasks/stylesheets/notee/highlight/solarized-dark.css +84 -0
  104. data/lib/tasks/stylesheets/notee/highlight/solarized-light.css +84 -0
  105. data/lib/tasks/stylesheets/notee/highlight/sunburst.css +102 -0
  106. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night-blue.css +75 -0
  107. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night-bright.css +74 -0
  108. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night-eighties.css +74 -0
  109. data/lib/tasks/stylesheets/notee/highlight/tomorrow-night.css +75 -0
  110. data/lib/tasks/stylesheets/notee/highlight/tomorrow.css +72 -0
  111. data/lib/tasks/stylesheets/notee/highlight/vs.css +68 -0
  112. data/lib/tasks/stylesheets/notee/highlight/xcode.css +93 -0
  113. data/lib/tasks/stylesheets/notee/highlight/xt256.css +92 -0
  114. data/lib/tasks/stylesheets/notee/highlight/zenburn.css +80 -0
  115. data/lib/tasks/stylesheets/notee/normalize.css +427 -0
  116. data/lib/tasks/stylesheets/notee/notee_default.css +386 -0
  117. data/lib/tasks/views/notee/about.html.erb +43 -0
  118. data/lib/tasks/views/notee/archives.html.erb +16 -0
  119. data/lib/tasks/views/notee/categories.html.erb +15 -0
  120. data/lib/tasks/views/notee/partials/_foote.html.erb +3 -0
  121. data/lib/tasks/views/notee/partials/_header.html.erb +17 -0
  122. data/lib/tasks/views/notee/partials/_profile.html.erb +9 -0
  123. data/lib/tasks/views/notee/partials/_sidebar.html.erb +23 -0
  124. data/lib/tasks/views/notee/posts.html.erb +53 -0
  125. data/lib/tasks/views/notee/show.html.erb +42 -0
  126. data/lib/tasks/views/notee/writers.html.erb +11 -0
  127. metadata +115 -240
  128. data/lib/tasks/css/notee_default.css +0 -59
  129. data/test/dummy/db/development.sqlite3 +0 -0
  130. data/test/dummy/db/test.sqlite3 +0 -0
  131. data/test/dummy/log/development.log +0 -3087
  132. data/test/dummy/log/test.log +0 -872
  133. data/test/dummy/tmp/cache/assets/sprockets/v3.0/-t/-tdJTrCcY92VpiO_z6SIt_iHkHDtn1-8Vf__p-Ve9lU.cache +0 -1
  134. data/test/dummy/tmp/cache/assets/sprockets/v3.0/0K/0KQJQyRy3gQkymW0xnPhM4_OpLtoTcw9Rutx4F4IajE.cache +0 -1
  135. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1B/1Bb2_fhXoTmM27WcuQJ2sr0UCMHh6TjrBIwd6Ks8qJ0.cache +0 -1
  136. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1N/1NYje2ld9grEMpvxBFjocEWWMPi4jNPuPLdlkV1Wq5A.cache +0 -0
  137. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1s/1sPuKGE0jImBtnCnczIk6NpOn9cYeyBZsXHvpXJ1tGA.cache +0 -2
  138. data/test/dummy/tmp/cache/assets/sprockets/v3.0/1s/1sRxHck-81_JSGvEidXPx2S86Cbe0UjizohTg5lkd-U.cache +0 -0
  139. data/test/dummy/tmp/cache/assets/sprockets/v3.0/3d/3dw9fS6dak9HSgJqviXZ6CCibFx8--QDKyWjrqKqraI.cache +0 -0
  140. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4S/4SCYKO2aAiXfZPZF1vTYeIQegrrqvH-2jlfGl1I6juQ.cache +0 -1
  141. data/test/dummy/tmp/cache/assets/sprockets/v3.0/4z/4zE2reLAwChLIBivfo5JfQjRwOM2sBvlDLXftsA772o.cache +0 -1
  142. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5L/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  143. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5p/5pDjSjY69Pd-A64UKCqQ_yxQouHkmBElVBKf1IZT2HM.cache +0 -1
  144. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5p/5pnvfhvSgahCnLPLbhB7dM8lSEhk2w39UTDXe83gYng.cache +0 -0
  145. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5r/5r2K8e-LRVnmo3VUaNdNx3K1b_BgFMOboxlnTQC_Ckk.cache +0 -1
  146. data/test/dummy/tmp/cache/assets/sprockets/v3.0/5u/5ue4ZdF425UevYa9Danha84KDME2s4InW-zR-y-Y0SM.cache +0 -2
  147. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6Q/6Qq8Rnvquz8oH8ojJlj79pSAhSHH_VoWRS0Cn-d-yLQ.cache +0 -1
  148. data/test/dummy/tmp/cache/assets/sprockets/v3.0/6Y/6Y--Gdy-iDkVFcgE3j660zOA3sf_osOedfJpeV_Kxh4.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/sprockets/v3.0/7G/7GrmDrSvjAFvLUcaRN95cQLmvkzf8D_cvGlhRyL01HA.cache +0 -1
  150. data/test/dummy/tmp/cache/assets/sprockets/v3.0/83/83mXRYYdvGZS4tNS_IFZLa5P6e-fg9MSMqWG4MJ-Jks.cache +0 -1
  151. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8H/8HKewCH2XL9errlVDVPK8QZg0LoH-_Q3zqQ1pjCYBEU.cache +0 -1
  152. data/test/dummy/tmp/cache/assets/sprockets/v3.0/8v/8vJIODLLCFZwV8yIF98dlb5_CQZlgBdCLiM8UA6WiSA.cache +0 -1
  153. data/test/dummy/tmp/cache/assets/sprockets/v3.0/9W/9WtQTxW8TE4CQvkem1QkHVjZFB93XAJo3ioPSt6U5wM.cache +0 -0
  154. data/test/dummy/tmp/cache/assets/sprockets/v3.0/AH/AHLaBPz-xNABgeh1V66iU7wJ6FCxvFIie5V05wRvI84.cache +0 -1
  155. data/test/dummy/tmp/cache/assets/sprockets/v3.0/C1/C1S3q8MtvUImrUe70fZPf9wxMfxdcWPSRXRrv4H6_lo.cache +0 -1
  156. data/test/dummy/tmp/cache/assets/sprockets/v3.0/D4/D4ftsVSRtZadejqqBmur8bfiHLhZFCaIjpsAdJT28Iw.cache +0 -1
  157. data/test/dummy/tmp/cache/assets/sprockets/v3.0/DS/DSOLSc6A5RVSmvM415eEWAWG_AgOvZcLZOXQjsXyWQA.cache +0 -2
  158. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fr/FrWiXIfDo2-fsKFSgef9Bs-0HjC7dOgBY8IVBLCq9ag.cache +0 -1
  159. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Fz/FzjTR8U_FOgMIbfYBgJfzujyNBozRZd-3YYTkiAQTOg.cache +0 -1
  160. data/test/dummy/tmp/cache/assets/sprockets/v3.0/G6/G6nKI6E9cfkIZqH5EnbMJtS4DKHApFlNTKh__ZuK774.cache +0 -2
  161. data/test/dummy/tmp/cache/assets/sprockets/v3.0/HH/HHQp4rqJ3kx9sfFo3AAW2DS6zHl28lCqALB5YnKXeG8.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/sprockets/v3.0/IN/INpQmG9J4AOUCg2YWypvnwq9ce01SFPnDGidI2qcU_8.cache +0 -1
  163. data/test/dummy/tmp/cache/assets/sprockets/v3.0/J0/J038M_TjhJBb-678LCin4jaJSkSaaXy7XHJbEp1Bo5I.cache +0 -2
  164. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JI/JIHr2A9bWoln5XahhS15lRxvHSXdQZ7OrlbAW1IzayM.cache +0 -1
  165. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JI/JId5JhtAhhN90V7z1OSItT9m4n4H_Nfk3IGtOW0mA_s.cache +0 -3
  166. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JP/JPylOhsUjr9NtL1AViDe-Sz0-iLPZGPww463ChRqhEw.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/sprockets/v3.0/JU/JUdbchVNMjz67zIvPztSzFfpU_VO4Rl9V86GzJH28_A.cache +0 -2
  168. data/test/dummy/tmp/cache/assets/sprockets/v3.0/K0/K0Ou5PNqxeODBFSEnIeg7EaidQVBRvPH-SPrTF1tRVA.cache +0 -1
  169. data/test/dummy/tmp/cache/assets/sprockets/v3.0/KS/KSTuVqjLw0xUGYH5WcnAloHDphCDQr4cFjXKKl5vW7M.cache +0 -0
  170. data/test/dummy/tmp/cache/assets/sprockets/v3.0/L-/L--JLWiCS6RZ0l_EciZOoY0eTEs6BGBED1YZ7hj13vQ.cache +0 -1
  171. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ME/META30ksADpNoAnM_vlhKhlLOfxBlo5uJjJKSJa264o.cache +0 -1
  172. data/test/dummy/tmp/cache/assets/sprockets/v3.0/MH/MHQULHaqwmMfm67LLiF_ZDlM6Zix3aPput7pxTViWQ0.cache +0 -1
  173. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NK/NKXg7894FsAVQJxXzYkUOgd131zYAeWOIxmegdT-LFk.cache +0 -2
  174. data/test/dummy/tmp/cache/assets/sprockets/v3.0/NW/NWx4g28WkpCPeRLdgMDaUuLO2e4UIw2bs-HKy-ixIlU.cache +0 -1
  175. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Nj/NjPNj--fkweGPvPTHkDlefKtB5bpFaGG9X60M_goNUo.cache +0 -2
  176. data/test/dummy/tmp/cache/assets/sprockets/v3.0/OI/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  177. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Oh/Ohok7uysixzjxK1FE7m-KJv6gqYQH4svN8nZyRBOgwA.cache +0 -1
  178. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ot/Ot7COhZjTueyAONhzjXiOOwv0uTS9EtXGgxYznVMIvs.cache +0 -3
  179. data/test/dummy/tmp/cache/assets/sprockets/v3.0/P4/P4KZGx6J2yGIq1PMq13fnsaXrS47R-S_sYrQrcUL59I.cache +0 -3
  180. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Pn/Pn9eXmle4fRjakm_xgwyXs5YzlWELSuhbi3nnV2-Ink.cache +0 -0
  181. data/test/dummy/tmp/cache/assets/sprockets/v3.0/QY/QYNLSW9XctrfttzhOfkik5INswRo-qBjjwQvA7S_lyc.cache +0 -1
  182. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Qb/Qbb4ATlvuCS0fudaTweqJoma2S99Mr2Q6ISbIpDoMso.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/sprockets/v3.0/R6/R6E4Q8O1upT5p_U-ySDbO3dFY6SMeSwmubqJUfSJedo.cache +0 -0
  184. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Rv/RvcRQ_I7meCLqBRooErlcPwcbH0tdDuvO5SQ_Xy45Qk.cache +0 -2
  185. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Sz/SzRmx7uSmniNAGO1zMPd4qzEgM8eAaWBqaxestc32Jg.cache +0 -0
  186. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Tk/TkRyIpbn-1DcVexPTWUljWQOek0D_q6yO_jYNGwKM_o.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/sprockets/v3.0/U1/U1E_3Z4bItTBl9s8aX6O2rceqAD5GfoNzF8AqYs9Hig.cache +0 -0
  188. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UC/UCe1qLwGTD6W2etoFOMln6E2DgTq8Xnm7eGvCs6YGEE.cache +0 -1
  189. data/test/dummy/tmp/cache/assets/sprockets/v3.0/UZ/UZhrzLOgNG132Xf1yJ7H7lSq4S3TyDoPphdzwKU8fqQ.cache +0 -3
  190. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Ud/UdBXq-s3u32R-gjMCYZv9RJH4n1xSt8PnBpWxg-JzGE.cache +0 -1
  191. data/test/dummy/tmp/cache/assets/sprockets/v3.0/VD/VDaYJQJdErZ0zVg9KgvidORf7a13jqM72Uk97zzuUZU.cache +0 -2
  192. data/test/dummy/tmp/cache/assets/sprockets/v3.0/WT/WTExV_4iBOBS-SWMh6jqm61uSp83ezH5DPIkjfktls4.cache +0 -3
  193. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wi/Wia5tzg4hJNhNhKWgY7pkrxWbvr6n0YaKXl80wh6qPg.cache +0 -1
  194. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wl/WldqQqssrkJedTdiFt86Y6FDn5ww1MirVAAnOpRqeCE.cache +0 -3
  195. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wv/WvAZ72pGsB5VpmTmGBucm1eztH129yQ1YmrRMy-yS4g.cache +0 -0
  196. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Wz/WzSkff9VUQsb0DJ5RB3m3SfxRTMU97qhyNCqiIHlJPw.cache +0 -1
  197. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Yx/Yx6fZ9ju2qCb4Ps_0iEzNR7KgDNTE2gIRjcdOMFXNlo.cache +0 -2
  198. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZO/ZOUPFk5_ZB8Wtn42g9PiY6Qu7KSbipNG04Qa5YSP6sw.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ZT/ZT-4a7lIKMm0Swxyt7MdXMz5v6r5MaVvtHvqAT6T8Ts.cache +0 -0
  200. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zb/ZbvOW6HdEiql0zdGkCPG-EK8beJAmp1ovBR1Oy1V6Fw.cache +0 -1
  201. data/test/dummy/tmp/cache/assets/sprockets/v3.0/Zu/ZuAoFB2A_kFOIb19dNUzEU5jP-SzQLmauPCURINz2Fo.cache +0 -0
  202. data/test/dummy/tmp/cache/assets/sprockets/v3.0/_r/_rmEe1ir-igQN0twVhxrxngbLIFJkINITWVGNye4-MM.cache +0 -2
  203. data/test/dummy/tmp/cache/assets/sprockets/v3.0/aE/aEQNT9eY4cAc2ACQnD35BkLV5dEezB-drcCoF1SzjAc.cache +0 -0
  204. data/test/dummy/tmp/cache/assets/sprockets/v3.0/bK/bKPdLlYXb5ZZU8vrzCdKqLgCXyeiXHExSl9lwGIofU0.cache +0 -0
  205. data/test/dummy/tmp/cache/assets/sprockets/v3.0/br/brGLDCuoxhnIrvwsuWmzjnwDV7Bn_nezqOrXiI0oco0.cache +0 -3
  206. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c3/c3Jo7UkNggNJH21U9HD-Y5Lipd68yZXcl6FGMbzFEeM.cache +0 -0
  207. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c4/c4YjuvK4zQOjr5Q6N7A_-NHM59NF0kGApLBxSZ5JgqA.cache +0 -1
  208. data/test/dummy/tmp/cache/assets/sprockets/v3.0/c9/c9B4H9i5OvdAnZpel-KocssCcsd3TS2Gqe4uKAFjiKQ.cache +0 -1
  209. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dM/dMJ_N4wD6R1wforGNMdyz6wec-5a7_H03vxu0pgPhLc.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/sprockets/v3.0/dr/drYndmRIbBKroImntO4XhUYV5kqxE2q2qE_aYRwYj4Q.cache +0 -0
  211. data/test/dummy/tmp/cache/assets/sprockets/v3.0/du/dumQ6K8NP4rz74ofF4DxxFRetR-K07c75MhZrUQDbqY.cache +0 -3
  212. data/test/dummy/tmp/cache/assets/sprockets/v3.0/fn/fns6a_EwXvrlRyeQjB9lcYXHfIZi0guP75oUWPuz4Z0.cache +0 -0
  213. data/test/dummy/tmp/cache/assets/sprockets/v3.0/g3/g3NfArxOfOGHlWIGK-Znm2-gh1Oyud_f5ZEFuGrOv2g.cache +0 -0
  214. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gF/gFErWaVWbjefUiSe3yI-bWCrUD3SsMHomSjTacMlSDM.cache +0 -2
  215. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gG/gGCsoohK0vflREMUeOrfW4KZeI73jU9ld5t0pzfjh4U.cache +0 -0
  216. data/test/dummy/tmp/cache/assets/sprockets/v3.0/gZ/gZp3uXMHuYQC4hzCr7bQfetKNdJAtbQmg3so2KpW1Dw.cache +0 -2
  217. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/Hz6pNt28QsuyrFcIx0afHONIVEGdLBEC64cV2zh2xAM.cache +0 -2
  218. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hZ/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  219. data/test/dummy/tmp/cache/assets/sprockets/v3.0/hv/hvw4qAvufcLTOeT9ie13DTIDt3SOLih2iH9P603ZOFQ.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/sprockets/v3.0/iZ/iZGxFM6U5PSEZmHGlksi8vAVBMlMiyjOBaL8HIGcOPE.cache +0 -0
  221. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ig/iguUMDAVIm9pfM52njpM4hqpnNYkwKTWvNXQyolgR74.cache +0 -0
  222. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jJ/jJTo0slnuZqKDbuFGjyBEkenWViH1MiTvb7gNjc4SL4.cache +0 -1
  223. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jN/jNM9mSzc6sg9yU7srXH0l2_bPIXbqLtJVBML2umXb9w.cache +0 -0
  224. data/test/dummy/tmp/cache/assets/sprockets/v3.0/jh/jhx8TAOiUaenqesmOiahNzaVcnpiciOE8VKZdrxGerc.cache +0 -1
  225. data/test/dummy/tmp/cache/assets/sprockets/v3.0/kT/kTif4yPNd0vB6fWie0kxsN5Gwubl8sqAOyydwpiyHzo.cache +0 -1
  226. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m3/m3lSeIbfcyVVkENoCOiz_6LvNubosVesCJBkdI88aNk.cache +0 -1
  227. data/test/dummy/tmp/cache/assets/sprockets/v3.0/m6/m6kJHQNOyyMHxod8TObJKAp8iV_noMwYPWsBh-CCG0k.cache +0 -1
  228. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mX/mXJ655Gxgvg2C08jNcMFB9OQ2G6HrtGc_MfVIpYycsg.cache +0 -3
  229. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mr/MrG8zKUbpqoyxO2GdEOuWmFBUIpOKL3upEtfOWsYluQ.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/sprockets/v3.0/mr/mr-hjupF6Lf8wABiaoi8L9823j20yjhhTnrn4FNsEZI.cache +0 -1
  231. data/test/dummy/tmp/cache/assets/sprockets/v3.0/n2/n2T4JbhKpnbSE5uhnXyPzu4WnDOkMu78BrJ-Huhn7YU.cache +0 -2
  232. data/test/dummy/tmp/cache/assets/sprockets/v3.0/nC/nCuKY2iJdzgSyWS09dThZ5T57F8vGBo0w-ycyuEidUk.cache +0 -1
  233. data/test/dummy/tmp/cache/assets/sprockets/v3.0/og/ogVEMp7SPQ-wAJz4mNXdRrx52GXFvHKpSx3bS7dr_t8.cache +0 -1
  234. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pE/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  235. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pO/pOOGu7nAdun08PmdiHZas85h5Kqbgs6_M5vHQQKJgW8.cache +0 -1
  236. data/test/dummy/tmp/cache/assets/sprockets/v3.0/pX/pXIDW5zCrR8MxxTON9elPRDkMBEefpa-fWViSmyJGns.cache +0 -2
  237. data/test/dummy/tmp/cache/assets/sprockets/v3.0/qF/qFG1ZnUOHTHsxMxvN1iTKNCA05nrecKPlygtJzvMdSs.cache +0 -2
  238. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sS/sS00IDFTJ19zoTjrB2-Sypybo0I1qXoTtW8JabBMoAo.cache +0 -0
  239. data/test/dummy/tmp/cache/assets/sprockets/v3.0/sb/sbB7Wbcww5hxA8e-5K0oBKQDnlNNnY90t0YUIdYE138.cache +0 -1
  240. data/test/dummy/tmp/cache/assets/sprockets/v3.0/xX/xXo4fouecqy2oZpxsgtkqL6uyIDuKLwBUwmzddno9hw.cache +0 -0
  241. data/test/dummy/tmp/cache/assets/sprockets/v3.0/x_/x_WcnsWyMV1QzLUnFW5J4gZHs0gACREYGaSom7xcaBQ.cache +0 -1
  242. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yC/yCp-2wuXWORHGqxfwG37-mb00X8GpHiRjrlo2QQX3lU.cache +0 -1
  243. data/test/dummy/tmp/cache/assets/sprockets/v3.0/yW/yWtPpcB-kB8_hw5k0prtaOvTW5A5PaCT0ZaJSdh8Zkw.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/sprockets/v3.0/ys/ysFM6FIJniGme1T62LOmRFt3h7g0scd6o6BFIjS5Ppg.cache +0 -0
  245. data/test/dummy/tmp/cache/assets/sprockets/v3.0/z4/z4i9WzpZRzFXynWsqewNMikNdcZ9f9mGFdlrIP5N6Gs.cache +0 -1
  246. data/test/dummy/tmp/cache/assets/sprockets/v3.0/zN/zNfQXfFXMTyOoz3HbVM-_4m-46rWO7XrZPvGs4aJCQc.cache +0 -2
@@ -1,59 +0,0 @@
1
-
2
- /* notee_comment_box */
3
-
4
- .notee_comment_box {
5
- width: 100%;
6
- margin: 30px auto;
7
- float: left;
8
- }
9
-
10
- .notee_comments {
11
- width: 94%;
12
- padding: 3%;
13
- margin_bottom: 20px;
14
- float: left;
15
- }
16
-
17
- .notee_comment {
18
- width: 98%;
19
- padding: 1%;
20
- margin_bottom: 10px;
21
- border-bottom: 1px solid #dcdcdc;
22
- float: left;
23
- }
24
- .notee_comment_form {
25
- width: 60%;
26
- padding: 4%;
27
- margin_bottom: 20px;
28
- float: left;
29
- }
30
-
31
- .notee_label {
32
- width: 60%;
33
- margin-bottom: 15px;
34
- float: left;
35
- }
36
-
37
- .notee_text_field {
38
- width: 60%;
39
- height: 26px;
40
- min-width: 300px;
41
- margin-bottom: 15px;
42
- float: left;
43
- font-size: 14px;
44
- }
45
-
46
- .notee_text_area {
47
- width: 100%;
48
- height: 78px;
49
- margin-bottom: 15px;
50
- float: left;
51
- font-size: 14px;
52
- }
53
-
54
- .notee_submit {
55
- width: 100%;
56
- margin-bottom: 15px;
57
- float: left;
58
- font-size: 30px;
59
- }
Binary file
File without changes
@@ -1,3087 +0,0 @@
1
- Started GET "/" for ::1 at 2016-07-13 19:20:45 +0900
2
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
3
- Processing by Rails::WelcomeController#index as HTML
4
- Parameters: {"internal"=>true}
5
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb
6
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb (5.6ms)
7
- Completed 200 OK in 22ms (Views: 14.2ms | ActiveRecord: 0.0ms)
8
-
9
-
10
- Started GET "/" for ::1 at 2016-07-13 19:20:46 +0900
11
- Processing by Rails::WelcomeController#index as HTML
12
- Parameters: {"internal"=>true}
13
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb
14
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb (3.6ms)
15
- Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.0ms)
16
-
17
-
18
- Started GET "/s" for ::1 at 2016-07-13 19:20:54 +0900
19
-
20
- ActionController::RoutingError (No route matches [GET] "/s"):
21
-
22
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
23
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
24
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
25
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
26
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
27
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
28
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
29
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
30
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
31
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
32
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
33
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
34
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
35
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
36
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
37
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
38
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
39
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
40
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
41
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
42
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
43
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
44
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
45
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (11.5ms)
46
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (6.3ms)
47
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.5ms)
48
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
49
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.6ms)
50
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (144.4ms)
51
- Started GET "/notee" for ::1 at 2016-07-13 19:21:01 +0900
52
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
53
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
54
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:7)
55
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:8)
56
- Processing by Notee::PostsController#notee as HTML
57
- Completed 500 Internal Server Error in 85ms (ActiveRecord: 2.8ms)
58
-
59
-
60
-
61
- ActiveRecord::StatementInvalid (Could not find table 'notee_tokens'):
62
-
63
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:429:in `table_structure'
64
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:304:in `columns'
65
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
66
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:62:in `columns_hash'
67
- activerecord (5.0.0) lib/active_record/model_schema.rb:354:in `load_schema!'
68
- activerecord (5.0.0) lib/active_record/attributes.rb:233:in `load_schema!'
69
- activerecord (5.0.0) lib/active_record/attribute_decorators.rb:28:in `load_schema!'
70
- activerecord (5.0.0) lib/active_record/model_schema.rb:349:in `load_schema'
71
- activerecord (5.0.0) lib/active_record/model_schema.rb:266:in `attribute_types'
72
- activerecord (5.0.0) lib/active_record/attribute_methods.rb:179:in `has_attribute?'
73
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1106:in `block in arel_columns'
74
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `map'
75
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `arel_columns'
76
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1098:in `build_select'
77
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:979:in `build_arel'
78
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:949:in `arel'
79
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:118:in `bound_attributes'
80
- activerecord (5.0.0) lib/active_record/relation/finder_methods.rb:335:in `exists?'
81
- activerecord (5.0.0) lib/active_record/querying.rb:3:in `exists?'
82
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:69:in `restrict_access'
83
- activesupport (5.0.0) lib/active_support/callbacks.rb:382:in `block in make_lambda'
84
- activesupport (5.0.0) lib/active_support/callbacks.rb:150:in `block (2 levels) in halting_and_conditional'
85
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
86
- activesupport (5.0.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
87
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `block in call'
88
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `each'
89
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `call'
90
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
91
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
92
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
93
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
94
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
95
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
96
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
97
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
98
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
99
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
100
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
101
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
102
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
103
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
104
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
105
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
106
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
107
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
108
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
109
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
110
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
111
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
112
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
113
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
114
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
115
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
116
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
117
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
118
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
119
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
120
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
121
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
122
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
123
- rack (2.0.1) lib/rack/head.rb:12:in `call'
124
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
125
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
126
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
127
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
128
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
129
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
130
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
131
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
132
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
133
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
134
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
135
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
136
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
137
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
138
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
139
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
140
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
141
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
142
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
143
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
144
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
145
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
146
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
147
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
148
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
149
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
150
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
151
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
152
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
153
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
154
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
155
- Started GET "/notee" for ::1 at 2016-07-13 19:21:01 +0900
156
- Processing by Notee::PostsController#notee as HTML
157
- Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.6ms)
158
-
159
-
160
-
161
- ActiveRecord::StatementInvalid (Could not find table 'notee_tokens'):
162
-
163
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:429:in `table_structure'
164
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:304:in `columns'
165
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
166
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:62:in `columns_hash'
167
- activerecord (5.0.0) lib/active_record/model_schema.rb:354:in `load_schema!'
168
- activerecord (5.0.0) lib/active_record/attributes.rb:233:in `load_schema!'
169
- activerecord (5.0.0) lib/active_record/attribute_decorators.rb:28:in `load_schema!'
170
- activerecord (5.0.0) lib/active_record/model_schema.rb:349:in `load_schema'
171
- activerecord (5.0.0) lib/active_record/model_schema.rb:266:in `attribute_types'
172
- activerecord (5.0.0) lib/active_record/attribute_methods.rb:179:in `has_attribute?'
173
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1106:in `block in arel_columns'
174
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `map'
175
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `arel_columns'
176
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1098:in `build_select'
177
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:979:in `build_arel'
178
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:949:in `arel'
179
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:118:in `bound_attributes'
180
- activerecord (5.0.0) lib/active_record/relation/finder_methods.rb:335:in `exists?'
181
- activerecord (5.0.0) lib/active_record/querying.rb:3:in `exists?'
182
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:69:in `restrict_access'
183
- activesupport (5.0.0) lib/active_support/callbacks.rb:382:in `block in make_lambda'
184
- activesupport (5.0.0) lib/active_support/callbacks.rb:150:in `block (2 levels) in halting_and_conditional'
185
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
186
- activesupport (5.0.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
187
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `block in call'
188
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `each'
189
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `call'
190
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
191
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
192
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
193
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
194
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
195
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
196
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
197
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
198
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
199
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
200
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
201
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
202
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
203
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
204
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
205
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
206
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
207
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
208
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
209
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
210
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
211
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
212
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
213
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
214
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
215
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
216
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
217
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
218
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
219
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
220
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
221
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
222
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
223
- rack (2.0.1) lib/rack/head.rb:12:in `call'
224
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
225
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
226
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
227
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
228
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
229
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
230
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
231
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
232
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
233
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
234
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
235
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
236
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
237
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
238
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
239
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
240
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
241
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
242
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
243
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
244
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
245
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
246
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
247
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
248
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
249
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
250
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
251
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
252
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
253
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
254
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
255
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
256
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
257
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
258
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
259
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.2ms)
260
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms)
261
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
262
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
263
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
264
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
265
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
266
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
267
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (120.3ms)
268
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
269
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
270
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (157.1ms)
271
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from block in execute at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/rake-11.2.2/lib/rake/task.rb:248)
272
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
273
-  (0.9ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
274
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
275
-  (0.0ms) begin transaction
276
- SQL (0.2ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-07-13 10:22:01 UTC], ["updated_at", 2016-07-13 10:22:01 UTC]]
277
-  (0.8ms) commit transaction
278
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
279
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <top (required)> at /Users/takujifunao/Hack/01_mine/02_lib/notee/test/dummy/config/environment.rb:5)
280
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
281
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
282
-  (1.0ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
283
-  (0.8ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
284
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
285
-  (0.0ms) begin transaction
286
- SQL (0.5ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-07-13 10:22:18 UTC], ["updated_at", 2016-07-13 10:22:18 UTC]]
287
-  (0.7ms) commit transaction
288
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
289
- Started GET "/notee" for ::1 at 2016-07-13 19:22:30 +0900
290
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
291
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
292
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
293
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:7)
294
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:8)
295
- Processing by Notee::PostsController#notee as HTML
296
- Completed 500 Internal Server Error in 70ms (ActiveRecord: 1.6ms)
297
-
298
-
299
-
300
- ActiveRecord::StatementInvalid (Could not find table 'notee_tokens'):
301
-
302
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:429:in `table_structure'
303
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:304:in `columns'
304
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
305
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:62:in `columns_hash'
306
- activerecord (5.0.0) lib/active_record/model_schema.rb:354:in `load_schema!'
307
- activerecord (5.0.0) lib/active_record/attributes.rb:233:in `load_schema!'
308
- activerecord (5.0.0) lib/active_record/attribute_decorators.rb:28:in `load_schema!'
309
- activerecord (5.0.0) lib/active_record/model_schema.rb:349:in `load_schema'
310
- activerecord (5.0.0) lib/active_record/model_schema.rb:266:in `attribute_types'
311
- activerecord (5.0.0) lib/active_record/attribute_methods.rb:179:in `has_attribute?'
312
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1106:in `block in arel_columns'
313
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `map'
314
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `arel_columns'
315
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1098:in `build_select'
316
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:979:in `build_arel'
317
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:949:in `arel'
318
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:118:in `bound_attributes'
319
- activerecord (5.0.0) lib/active_record/relation/finder_methods.rb:335:in `exists?'
320
- activerecord (5.0.0) lib/active_record/querying.rb:3:in `exists?'
321
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:69:in `restrict_access'
322
- activesupport (5.0.0) lib/active_support/callbacks.rb:382:in `block in make_lambda'
323
- activesupport (5.0.0) lib/active_support/callbacks.rb:150:in `block (2 levels) in halting_and_conditional'
324
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
325
- activesupport (5.0.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
326
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `block in call'
327
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `each'
328
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `call'
329
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
330
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
331
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
332
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
333
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
334
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
335
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
336
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
337
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
338
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
339
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
340
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
341
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
342
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
343
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
344
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
345
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
346
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
347
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
348
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
349
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
350
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
351
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
352
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
353
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
354
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
355
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
356
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
357
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
358
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
359
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
360
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
361
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
362
- rack (2.0.1) lib/rack/head.rb:12:in `call'
363
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
364
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
365
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
366
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
367
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
368
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
369
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
370
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
371
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
372
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
373
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
374
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
375
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
376
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
377
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
378
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
379
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
380
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
381
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
382
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
383
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
384
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
385
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
386
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
387
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
388
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
389
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
390
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
391
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
392
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
393
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
394
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
395
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
396
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms)
397
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
398
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
399
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
400
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
401
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (78.3ms)
402
- Started GET "/notee/" for ::1 at 2016-07-13 19:22:42 +0900
403
- Processing by Notee::PostsController#notee as HTML
404
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
405
-
406
-
407
-
408
- ActiveRecord::StatementInvalid (Could not find table 'notee_tokens'):
409
-
410
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:429:in `table_structure'
411
- activerecord (5.0.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:304:in `columns'
412
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:56:in `columns'
413
- activerecord (5.0.0) lib/active_record/connection_adapters/schema_cache.rb:62:in `columns_hash'
414
- activerecord (5.0.0) lib/active_record/model_schema.rb:354:in `load_schema!'
415
- activerecord (5.0.0) lib/active_record/attributes.rb:233:in `load_schema!'
416
- activerecord (5.0.0) lib/active_record/attribute_decorators.rb:28:in `load_schema!'
417
- activerecord (5.0.0) lib/active_record/model_schema.rb:349:in `load_schema'
418
- activerecord (5.0.0) lib/active_record/model_schema.rb:266:in `attribute_types'
419
- activerecord (5.0.0) lib/active_record/attribute_methods.rb:179:in `has_attribute?'
420
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1106:in `block in arel_columns'
421
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `map'
422
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1105:in `arel_columns'
423
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:1098:in `build_select'
424
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:979:in `build_arel'
425
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:949:in `arel'
426
- activerecord (5.0.0) lib/active_record/relation/query_methods.rb:118:in `bound_attributes'
427
- activerecord (5.0.0) lib/active_record/relation/finder_methods.rb:335:in `exists?'
428
- activerecord (5.0.0) lib/active_record/querying.rb:3:in `exists?'
429
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:69:in `restrict_access'
430
- activesupport (5.0.0) lib/active_support/callbacks.rb:382:in `block in make_lambda'
431
- activesupport (5.0.0) lib/active_support/callbacks.rb:150:in `block (2 levels) in halting_and_conditional'
432
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
433
- activesupport (5.0.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
434
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `block in call'
435
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `each'
436
- activesupport (5.0.0) lib/active_support/callbacks.rb:454:in `call'
437
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
438
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
439
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
440
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
441
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
442
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
443
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
444
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
445
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
446
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
447
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
448
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
449
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
450
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
451
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
452
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
453
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
454
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
455
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
456
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
457
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
458
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
459
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
460
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
461
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
462
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
463
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
464
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
465
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
466
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
467
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
468
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
469
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
470
- rack (2.0.1) lib/rack/head.rb:12:in `call'
471
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
472
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
473
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
474
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
475
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
476
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
477
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
478
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
479
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
480
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
481
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
482
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
483
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
484
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
485
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
486
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
487
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
488
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
489
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
490
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
491
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
492
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
493
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
494
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
495
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
496
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
497
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
498
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
499
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
500
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
501
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
502
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
503
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
504
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms)
505
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
506
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
507
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
508
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
509
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (95.8ms)
510
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:22:43 +0900
511
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:TokensController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/tokens_controller.rb:6)
512
- Processing by Notee::TokensController#new as HTML
513
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
514
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (1.7ms)
515
- Completed 500 Internal Server Error in 200ms (ActiveRecord: 0.0ms)
516
-
517
-
518
-
519
- LoadError (cannot load such file -- sass):
520
-
521
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
522
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
523
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
524
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
525
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
526
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
527
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
528
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
529
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
530
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
531
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
532
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
533
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
534
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
535
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
536
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
537
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
538
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
539
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
540
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
541
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
542
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
543
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
544
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
545
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
546
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
547
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
548
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
549
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
550
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
551
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
552
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
553
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
554
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
555
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
556
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
557
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
558
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
559
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
560
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
561
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
562
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
563
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
564
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
565
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
566
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
567
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
568
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
569
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
570
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb__761128403471535839_70245195691500'
571
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
572
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
573
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
574
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
575
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
576
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
577
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
578
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
579
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
580
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
581
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
582
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
583
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
584
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
585
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
586
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
587
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
588
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
589
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
590
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
591
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
592
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
593
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
594
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
595
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
596
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
597
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
598
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
599
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
600
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
601
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
602
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
603
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
604
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
605
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
606
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
607
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
608
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
609
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
610
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
611
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
612
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
613
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
614
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
615
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
616
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
617
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
618
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
619
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
620
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
621
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
622
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
623
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
624
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
625
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
626
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
627
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
628
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
629
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
630
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
631
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
632
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
633
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
634
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
635
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
636
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
637
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
638
- rack (2.0.1) lib/rack/head.rb:12:in `call'
639
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
640
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
641
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
642
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
643
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
644
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
645
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
646
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
647
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
648
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
649
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
650
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
651
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
652
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
653
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
654
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
655
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
656
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
657
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
658
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
659
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
660
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
661
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
662
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
663
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
664
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
665
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
666
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
667
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
668
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
669
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
670
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
671
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
672
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.5ms)
673
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
674
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.8ms)
675
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
676
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
677
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.1ms)
678
- Started GET "/" for ::1 at 2016-07-13 19:23:20 +0900
679
- Processing by Rails::WelcomeController#index as HTML
680
- Parameters: {"internal"=>true}
681
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb
682
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb (3.4ms)
683
- Completed 200 OK in 9ms (Views: 5.9ms | ActiveRecord: 0.0ms)
684
-
685
-
686
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <top (required)> at /Users/takujifunao/Hack/01_mine/02_lib/notee/test/dummy/config/environment.rb:5)
687
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
688
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
689
-  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
690
-  (1.0ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
691
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
692
- Migrating to CreateNoteePosts (20160713102620)
693
-  (0.1ms) begin transaction
694
- DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
695
-
696
- class CreateNoteePosts < ActiveRecord::Migration[4.2] (called from load at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/bin/rake:23)
697
-  (0.9ms) CREATE TABLE "notee_posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar DEFAULT 'no title', "content" text, "slug" varchar DEFAULT '2016-19-26-54', "status" integer DEFAULT 0, "category_id" integer DEFAULT 0, "thumbnail_id" integer DEFAULT 0, "published_at" datetime DEFAULT '2016-07-13 10:26:54.346059', "seo_keyword" varchar DEFAULT '', "seo_description" varchar DEFAULT '', "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
698
-  (0.8ms) select sqlite_version(*)
699
-  (0.5ms) CREATE UNIQUE INDEX "index_notee_posts_on_slug" ON "notee_posts" ("slug")
700
- SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713102620"]]
701
-  (2.7ms) commit transaction
702
- Migrating to CreateNoteeCategories (20160713102621)
703
-  (0.1ms) begin transaction
704
- DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
705
-
706
- class CreateNoteeCategories < ActiveRecord::Migration[4.2] (called from load at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/bin/rake:23)
707
-  (0.4ms) CREATE TABLE "notee_categories" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar DEFAULT 'category_name' NOT NULL, "slug" varchar DEFAULT '2016-19-26-54' NOT NULL, "parent_id" integer, "status" integer DEFAULT 0 NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
708
-  (0.3ms) CREATE UNIQUE INDEX "index_notee_categories_on_slug" ON "notee_categories" ("slug")
709
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713102621"]]
710
-  (0.9ms) commit transaction
711
- Migrating to CreateNoteeImages (20160713102622)
712
-  (0.1ms) begin transaction
713
- DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
714
-
715
- class CreateNoteeImages < ActiveRecord::Migration[4.2] (called from load at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/bin/rake:23)
716
-  (0.4ms) CREATE TABLE "notee_images" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "content" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
717
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713102622"]]
718
-  (0.7ms) commit transaction
719
- Migrating to CreateNoteeTokens (20160713102623)
720
-  (0.1ms) begin transaction
721
- DEPRECATION WARNING: Directly inheriting from ActiveRecord::Migration is deprecated. Please specify the Rails release the migration was written for:
722
-
723
- class CreateNoteeTokens < ActiveRecord::Migration[4.2] (called from load at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/bin/rake:23)
724
-  (0.4ms) CREATE TABLE "notee_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "access_token" varchar NOT NULL, "expires_at" datetime NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
725
-  (0.7ms) CREATE UNIQUE INDEX "index_notee_tokens_on_access_token" ON "notee_tokens" ("access_token")
726
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20160713102623"]]
727
-  (1.5ms) commit transaction
728
- ActiveRecord::InternalMetadata Load (0.2ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
729
-  (0.1ms) begin transaction
730
- SQL (0.3ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-07-13 10:26:54 UTC], ["updated_at", 2016-07-13 10:26:54 UTC]]
731
-  (0.8ms) commit transaction
732
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
733
-  (0.3ms)  SELECT sql
734
- FROM sqlite_master
735
- WHERE name='index_notee_categories_on_slug' AND type='index'
736
- UNION ALL
737
- SELECT sql
738
- FROM sqlite_temp_master
739
- WHERE name='index_notee_categories_on_slug' AND type='index'
740
- 
741
-  (0.1ms)  SELECT sql
742
- FROM sqlite_master
743
- WHERE name='index_notee_posts_on_slug' AND type='index'
744
- UNION ALL
745
- SELECT sql
746
- FROM sqlite_temp_master
747
- WHERE name='index_notee_posts_on_slug' AND type='index'
748
- 
749
-  (0.1ms)  SELECT sql
750
- FROM sqlite_master
751
- WHERE name='index_notee_tokens_on_access_token' AND type='index'
752
- UNION ALL
753
- SELECT sql
754
- FROM sqlite_temp_master
755
- WHERE name='index_notee_tokens_on_access_token' AND type='index'
756
- 
757
- Started GET "/" for ::1 at 2016-07-13 19:27:11 +0900
758
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
759
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
760
- Processing by Rails::WelcomeController#index as HTML
761
- Parameters: {"internal"=>true}
762
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb
763
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/railties-5.0.0/lib/rails/templates/rails/welcome/index.html.erb (4.7ms)
764
- Completed 200 OK in 15ms (Views: 11.5ms | ActiveRecord: 0.0ms)
765
-
766
-
767
- Started GET "/notee" for ::1 at 2016-07-13 19:27:14 +0900
768
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
769
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
770
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:7)
771
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:8)
772
- Processing by Notee::PostsController#notee as HTML
773
- Notee::Token Exists (0.7ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" IS NULL LIMIT ? [["LIMIT", 1]]
774
- Redirected to http://localhost:3000/notee/tokens/new
775
- Filter chain halted as :restrict_access rendered or redirected
776
- Completed 302 Found in 29ms (ActiveRecord: 1.0ms)
777
-
778
-
779
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:27:14 +0900
780
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:TokensController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/tokens_controller.rb:6)
781
- Processing by Notee::TokensController#new as HTML
782
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
783
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (1.9ms)
784
- Started GET "/notee" for ::1 at 2016-07-13 19:27:14 +0900
785
- Processing by Notee::PostsController#notee as HTML
786
- Notee::Token Exists (0.3ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" IS NULL LIMIT ? [["LIMIT", 1]]
787
- Redirected to http://localhost:3000/notee/tokens/new
788
- Filter chain halted as :restrict_access rendered or redirected
789
- Completed 302 Found in 4ms (ActiveRecord: 0.3ms)
790
-
791
-
792
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:27:14 +0900
793
- Processing by Notee::TokensController#new as HTML
794
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
795
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (1.3ms)
796
- Completed 500 Internal Server Error in 263ms (ActiveRecord: 0.0ms)
797
-
798
-
799
- Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
800
-
801
-
802
-
803
-
804
- LoadError (cannot load such file -- sass):
805
- LoadError (cannot load such file -- sass):
806
-
807
-
808
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
809
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
810
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
811
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
812
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
813
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
814
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
815
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
816
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
817
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
818
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
819
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
820
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
821
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
822
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
823
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
824
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
825
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
826
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
827
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
828
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
829
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
830
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
831
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
832
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
833
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
834
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
835
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
836
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
837
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
838
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
839
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
840
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
841
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
842
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
843
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
844
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
845
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
846
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
847
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
848
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
849
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
850
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
851
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
852
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
853
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
854
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
855
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
856
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
857
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
858
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
859
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
860
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
861
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
862
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
863
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
864
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
865
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
866
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
867
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
868
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
869
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
870
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
871
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
872
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
873
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
874
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
875
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
876
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
877
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
878
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
879
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
880
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
881
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
882
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
883
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
884
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
885
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
886
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
887
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
888
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
889
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
890
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
891
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
892
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
893
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
894
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
895
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
896
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
897
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
898
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
899
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
900
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
901
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
902
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
903
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
904
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
905
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
906
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb__664293615572241770_70307606505760'
907
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb__664293615572241770_70307616866600'
908
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
909
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
910
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
911
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
912
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
913
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
914
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
915
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
916
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
917
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
918
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
919
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
920
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
921
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
922
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
923
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
924
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
925
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
926
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
927
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
928
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
929
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
930
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
931
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
932
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
933
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
934
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
935
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
936
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
937
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
938
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
939
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
940
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
941
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
942
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
943
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
944
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
945
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
946
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
947
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
948
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
949
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
950
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
951
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
952
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
953
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
954
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
955
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
956
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
957
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
958
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
959
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
960
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
961
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
962
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
963
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
964
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
965
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
966
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
967
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
968
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
969
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
970
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
971
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
972
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
973
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
974
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
975
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
976
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
977
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
978
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
979
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
980
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
981
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
982
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
983
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
984
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
985
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
986
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
987
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
988
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
989
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
990
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
991
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
992
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
993
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
994
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
995
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
996
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
997
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
998
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
999
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1000
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1001
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1002
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1003
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1004
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1005
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1006
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1007
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1008
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1009
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1010
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1011
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1012
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1013
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1014
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1015
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1016
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1017
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1018
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1019
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1020
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1021
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1022
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1023
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1024
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1025
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1026
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1027
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1028
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1029
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1030
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1031
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1032
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1033
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1034
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1035
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1036
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1037
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1038
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1039
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1040
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1041
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1042
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1043
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1044
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1045
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1046
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1047
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1048
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1049
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1050
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1051
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1052
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1053
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1054
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1055
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1056
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1057
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1058
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1059
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1060
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1061
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1062
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1063
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1064
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1065
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1066
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1067
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1068
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1069
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1070
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1071
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1072
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1073
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1074
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1075
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1076
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1077
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1078
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1079
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1080
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1081
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1082
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1083
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1084
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1085
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1086
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1087
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1088
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1089
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1090
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1091
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1092
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1093
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1094
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1095
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1096
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1097
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1098
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1099
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1100
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1101
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1102
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1103
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1104
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1105
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1106
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1107
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1108
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1109
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (7.7ms)
1110
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1111
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.7ms)
1112
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1113
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
1114
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1115
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
1116
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1117
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1118
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1119
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1120
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (115.0ms)
1121
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (132.8ms)
1122
- Started GET "/notee/" for ::1 at 2016-07-13 19:28:14 +0900
1123
- Processing by Notee::PostsController#notee as HTML
1124
- Notee::Token Exists (1.3ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" IS NULL LIMIT ? [["LIMIT", 1]]
1125
- Redirected to http://localhost:3000/notee/tokens/new
1126
- Filter chain halted as :restrict_access rendered or redirected
1127
- Completed 302 Found in 39ms (ActiveRecord: 1.3ms)
1128
-
1129
-
1130
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:28:14 +0900
1131
- Processing by Notee::TokensController#new as HTML
1132
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
1133
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (6.4ms)
1134
- Completed 500 Internal Server Error in 41ms (ActiveRecord: 0.0ms)
1135
-
1136
-
1137
-
1138
- LoadError (cannot load such file -- sass):
1139
-
1140
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1141
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1142
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1143
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1144
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
1145
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1146
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1147
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1148
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1149
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
1150
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
1151
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
1152
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
1153
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1154
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1155
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1156
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1157
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1158
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1159
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1160
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1161
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1162
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1163
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
1164
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
1165
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
1166
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1167
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1168
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1169
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1170
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1171
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1172
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1173
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1174
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1175
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1176
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
1177
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
1178
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
1179
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
1180
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
1181
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
1182
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
1183
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
1184
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
1185
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
1186
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
1187
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
1188
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
1189
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb__664293615572241770_70307633547700'
1190
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
1191
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
1192
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
1193
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
1194
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
1195
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1196
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
1197
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1198
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
1199
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
1200
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1201
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
1202
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
1203
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
1204
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
1205
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
1206
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
1207
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1208
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
1209
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1210
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
1211
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
1212
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1213
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
1214
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
1215
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
1216
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
1217
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1218
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
1219
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
1220
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1221
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
1222
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1223
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
1224
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1225
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1226
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1227
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1228
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
1229
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1230
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
1231
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1232
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
1233
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1234
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1235
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1236
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1237
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1238
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1239
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1240
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1241
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1242
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1243
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1244
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1245
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1246
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1247
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1248
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1249
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1250
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1251
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1252
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1253
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1254
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1255
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1256
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1257
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1258
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1259
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1260
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1261
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1262
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1263
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1264
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1265
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1266
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1267
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1268
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1269
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1270
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1271
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1272
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1273
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1274
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1275
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1276
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1277
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1278
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1279
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1280
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1281
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1282
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1283
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1284
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1285
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1286
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1287
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1288
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1289
- Started GET "/notee/" for ::1 at 2016-07-13 19:28:15 +0900
1290
- Processing by Notee::PostsController#notee as HTML
1291
- Notee::Token Exists (0.1ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" IS NULL LIMIT ? [["LIMIT", 1]]
1292
- Redirected to http://localhost:3000/notee/tokens/new
1293
- Filter chain halted as :restrict_access rendered or redirected
1294
- Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
1295
-
1296
-
1297
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:28:15 +0900
1298
- Processing by Notee::TokensController#new as HTML
1299
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
1300
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (1.7ms)
1301
- Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
1302
-
1303
-
1304
-
1305
- LoadError (cannot load such file -- sass):
1306
-
1307
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1308
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1309
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1310
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1311
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
1312
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1313
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1314
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1315
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1316
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
1317
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
1318
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
1319
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
1320
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1321
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1322
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1323
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1324
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1325
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1326
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1327
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1328
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1329
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1330
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
1331
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
1332
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
1333
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1334
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1335
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1336
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1337
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1338
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1339
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1340
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1341
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1342
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1343
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
1344
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
1345
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
1346
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
1347
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
1348
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
1349
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
1350
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
1351
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
1352
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
1353
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
1354
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
1355
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
1356
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb__664293615572241770_70307581954760'
1357
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
1358
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
1359
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
1360
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
1361
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
1362
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1363
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
1364
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1365
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
1366
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
1367
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1368
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
1369
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
1370
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
1371
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
1372
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
1373
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
1374
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1375
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
1376
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1377
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
1378
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
1379
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1380
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
1381
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
1382
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
1383
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
1384
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1385
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
1386
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
1387
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1388
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
1389
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1390
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
1391
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1392
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1393
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1394
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1395
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
1396
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1397
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
1398
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1399
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
1400
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1401
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1402
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1403
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1404
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1405
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1406
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1407
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1408
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1409
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1410
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1411
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1412
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1413
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1414
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1415
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1416
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1417
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1418
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1419
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1420
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1421
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1422
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1423
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1424
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1425
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1426
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1427
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1428
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1429
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1430
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1431
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1432
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1433
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1434
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1435
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1436
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1437
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1438
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1439
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1440
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1441
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1442
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1443
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1444
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1445
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1446
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1447
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1448
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1449
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1450
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1451
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1452
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1453
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1454
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1455
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1456
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1457
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1458
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1459
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.1ms)
1460
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1461
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (6.4ms)
1462
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1463
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1464
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms)
1465
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
1466
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1467
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1468
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
1469
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1470
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (127.8ms)
1471
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (111.2ms)
1472
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:28:51 +0900
1473
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
1474
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1475
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
1476
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
1477
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:TokensController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/tokens_controller.rb:6)
1478
- Processing by Notee::TokensController#new as HTML
1479
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
1480
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (21.0ms)
1481
- Completed 500 Internal Server Error in 260ms (ActiveRecord: 0.0ms)
1482
-
1483
-
1484
-
1485
- LoadError (cannot load such file -- sass):
1486
-
1487
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1488
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1489
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1490
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1491
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
1492
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1493
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1494
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1495
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1496
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
1497
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
1498
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
1499
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
1500
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1501
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1502
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1503
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1504
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1505
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1506
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1507
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1508
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1509
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1510
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
1511
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
1512
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
1513
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1514
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1515
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1516
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1517
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1518
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1519
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1520
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1521
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1522
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1523
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
1524
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
1525
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
1526
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
1527
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
1528
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
1529
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
1530
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
1531
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
1532
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
1533
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
1534
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
1535
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
1536
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb___4436195677381586953_70319860181300'
1537
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
1538
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
1539
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
1540
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
1541
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
1542
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1543
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
1544
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1545
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
1546
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
1547
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1548
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
1549
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
1550
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
1551
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
1552
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
1553
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
1554
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1555
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
1556
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1557
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
1558
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
1559
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1560
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
1561
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
1562
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
1563
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
1564
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1565
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
1566
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
1567
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1568
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
1569
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1570
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
1571
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1572
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1573
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1574
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1575
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
1576
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1577
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
1578
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1579
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
1580
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1581
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1582
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1583
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1584
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1585
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1586
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1587
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1588
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1589
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1590
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1591
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1592
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1593
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1594
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1595
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1596
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1597
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1598
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1599
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1600
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1601
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1602
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1603
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1604
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1605
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1606
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1607
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1608
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1609
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1610
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1611
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1612
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1613
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1614
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1615
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1616
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1617
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1618
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1619
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1620
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1621
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1622
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1623
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1624
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1625
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1626
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1627
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1628
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1629
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1630
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1631
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1632
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1633
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1634
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1635
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1636
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1637
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1638
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.5ms)
1639
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1640
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.5ms)
1641
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1642
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1643
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (68.0ms)
1644
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:31:20 +0900
1645
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
1646
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
1647
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
1648
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
1649
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:TokensController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/tokens_controller.rb:6)
1650
- Processing by Notee::TokensController#new as HTML
1651
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
1652
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (21.9ms)
1653
- Completed 500 Internal Server Error in 264ms (ActiveRecord: 0.0ms)
1654
-
1655
-
1656
-
1657
- LoadError (cannot load such file -- sass):
1658
-
1659
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1660
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1661
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1662
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1663
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
1664
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1665
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1666
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1667
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1668
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
1669
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
1670
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
1671
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
1672
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1673
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1674
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1675
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1676
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1677
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1678
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1679
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1680
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1681
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1682
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
1683
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
1684
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
1685
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1686
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1687
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1688
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1689
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1690
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1691
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1692
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1693
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1694
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1695
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
1696
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
1697
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
1698
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
1699
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
1700
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
1701
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
1702
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
1703
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
1704
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
1705
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
1706
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
1707
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
1708
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb___1362264764246809314_70140784575300'
1709
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
1710
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
1711
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
1712
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
1713
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
1714
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1715
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
1716
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1717
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
1718
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
1719
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1720
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
1721
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
1722
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
1723
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
1724
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
1725
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
1726
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1727
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
1728
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1729
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
1730
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
1731
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1732
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
1733
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
1734
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
1735
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
1736
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1737
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
1738
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
1739
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1740
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
1741
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1742
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
1743
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1744
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1745
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1746
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1747
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
1748
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1749
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
1750
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1751
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
1752
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1753
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1754
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1755
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1756
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1757
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1758
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1759
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1760
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1761
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1762
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1763
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1764
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1765
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1766
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1767
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1768
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1769
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1770
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1771
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1772
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1773
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1774
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1775
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1776
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1777
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1778
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1779
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1780
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1781
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1782
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1783
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1784
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1785
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1786
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1787
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1788
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1789
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1790
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1791
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1792
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1793
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1794
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1795
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1796
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1797
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1798
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1799
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1800
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1801
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1802
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1803
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1804
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1805
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1806
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1807
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1808
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1809
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1810
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.3ms)
1811
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1812
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1813
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1814
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
1815
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.1ms)
1816
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:31:25 +0900
1817
- Processing by Notee::TokensController#new as HTML
1818
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
1819
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (1.3ms)
1820
- Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.0ms)
1821
-
1822
-
1823
-
1824
- LoadError (cannot load such file -- sass):
1825
-
1826
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1827
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1828
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1829
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1830
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
1831
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1832
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
1833
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
1834
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
1835
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
1836
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
1837
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
1838
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
1839
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1840
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1841
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1842
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1843
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1844
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1845
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1846
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1847
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1848
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1849
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
1850
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
1851
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
1852
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
1853
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
1854
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
1855
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
1856
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
1857
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
1858
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
1859
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
1860
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
1861
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
1862
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
1863
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
1864
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
1865
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
1866
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
1867
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
1868
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
1869
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
1870
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
1871
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
1872
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
1873
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
1874
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
1875
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb___1362264764246809314_70140787546780'
1876
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
1877
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
1878
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
1879
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
1880
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
1881
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1882
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
1883
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1884
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
1885
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
1886
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
1887
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
1888
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
1889
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
1890
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
1891
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
1892
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
1893
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
1894
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
1895
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
1896
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
1897
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
1898
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
1899
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
1900
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
1901
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
1902
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
1903
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
1904
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
1905
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
1906
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1907
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
1908
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
1909
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
1910
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
1911
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
1912
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1913
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1914
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
1915
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1916
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
1917
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
1918
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
1919
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1920
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
1921
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1922
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
1923
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
1924
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
1925
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
1926
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
1927
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
1928
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1929
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1930
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1931
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1932
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1933
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
1934
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
1935
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
1936
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
1937
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
1938
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
1939
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
1940
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
1941
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
1942
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
1943
- rack (2.0.1) lib/rack/head.rb:12:in `call'
1944
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
1945
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
1946
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
1947
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
1948
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
1949
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
1950
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
1951
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
1952
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
1953
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1954
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
1955
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
1956
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
1957
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
1958
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
1959
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
1960
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1961
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
1962
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
1963
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
1964
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
1965
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
1966
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1967
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
1968
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
1969
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
1970
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
1971
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
1972
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
1973
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
1974
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
1975
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
1976
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
1977
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.5ms)
1978
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
1979
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
1980
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
1981
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1982
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.2ms)
1983
- Started GET "/notee/" for ::1 at 2016-07-13 19:32:28 +0900
1984
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
1985
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1986
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
1987
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
1988
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:7)
1989
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:8)
1990
- Processing by Notee::PostsController#notee as HTML
1991
- Notee::Token Exists (0.5ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" IS NULL LIMIT ? [["LIMIT", 1]]
1992
- Redirected to http://localhost:3000/notee/tokens/new
1993
- Filter chain halted as :restrict_access rendered or redirected
1994
- Completed 302 Found in 30ms (ActiveRecord: 0.8ms)
1995
-
1996
-
1997
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:32:28 +0900
1998
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:TokensController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/tokens_controller.rb:6)
1999
- Processing by Notee::TokensController#new as HTML
2000
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
2001
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (3.0ms)
2002
- Completed 500 Internal Server Error in 229ms (ActiveRecord: 0.0ms)
2003
-
2004
-
2005
-
2006
- LoadError (cannot load such file -- sass):
2007
-
2008
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
2009
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
2010
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
2011
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
2012
- sprockets (3.6.3) lib/sprockets/autoload/sass.rb:1:in `<top (required)>'
2013
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
2014
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `block in require'
2015
- activesupport (5.0.0) lib/active_support/dependencies.rb:259:in `load_dependency'
2016
- activesupport (5.0.0) lib/active_support/dependencies.rb:293:in `require'
2017
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:47:in `initialize'
2018
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `new'
2019
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:26:in `instance'
2020
- sprockets (3.6.3) lib/sprockets/sass_processor.rb:30:in `call'
2021
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
2022
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
2023
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
2024
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
2025
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
2026
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
2027
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
2028
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
2029
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
2030
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
2031
- sprockets (3.6.3) lib/sprockets/bundle.rb:23:in `block in call'
2032
- sprockets (3.6.3) lib/sprockets/utils.rb:196:in `dfs'
2033
- sprockets (3.6.3) lib/sprockets/bundle.rb:24:in `call'
2034
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:75:in `call_processor'
2035
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:57:in `block in call_processors'
2036
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `reverse_each'
2037
- sprockets (3.6.3) lib/sprockets/processor_utils.rb:56:in `call_processors'
2038
- sprockets (3.6.3) lib/sprockets/loader.rb:134:in `load_from_unloaded'
2039
- sprockets (3.6.3) lib/sprockets/loader.rb:60:in `block in load'
2040
- sprockets (3.6.3) lib/sprockets/loader.rb:317:in `fetch_asset_from_dependency_cache'
2041
- sprockets (3.6.3) lib/sprockets/loader.rb:44:in `load'
2042
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:20:in `block in initialize'
2043
- sprockets (3.6.3) lib/sprockets/cached_environment.rb:47:in `load'
2044
- sprockets (3.6.3) lib/sprockets/base.rb:66:in `find_asset'
2045
- sprockets (3.6.3) lib/sprockets/base.rb:92:in `[]'
2046
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:338:in `find_asset'
2047
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:330:in `find_debug_asset'
2048
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:212:in `block in lookup_debug_asset'
2049
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:225:in `block in resolve_asset'
2050
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `each'
2051
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `detect'
2052
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:224:in `resolve_asset'
2053
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:211:in `lookup_debug_asset'
2054
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:153:in `block in stylesheet_link_tag'
2055
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `map'
2056
- sprockets-rails (3.1.1) lib/sprockets/rails/helper.rb:152:in `stylesheet_link_tag'
2057
- /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/layouts/notee/application.html.erb:5:in `___sers_takujifunao__ack____mine____lib_notee_app_views_layouts_notee_application_html_erb__540908690687377545_70320493876000'
2058
- actionview (5.0.0) lib/action_view/template.rb:158:in `block in render'
2059
- activesupport (5.0.0) lib/active_support/notifications.rb:166:in `instrument'
2060
- actionview (5.0.0) lib/action_view/template.rb:348:in `instrument'
2061
- actionview (5.0.0) lib/action_view/template.rb:156:in `render'
2062
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout'
2063
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
2064
- actionview (5.0.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
2065
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
2066
- actionview (5.0.0) lib/action_view/renderer/renderer.rb:23:in `render'
2067
- actionview (5.0.0) lib/action_view/rendering.rb:103:in `_render_template'
2068
- actionpack (5.0.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2069
- actionview (5.0.0) lib/action_view/rendering.rb:83:in `render_to_body'
2070
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
2071
- actionpack (5.0.0) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
2072
- actionpack (5.0.0) lib/abstract_controller/rendering.rb:26:in `render'
2073
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:36:in `render'
2074
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
2075
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2076
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
2077
- activesupport (5.0.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2078
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
2079
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
2080
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2081
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:43:in `render'
2082
- actionpack (5.0.0) lib/action_controller/metal/implicit_render.rb:36:in `default_render'
2083
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `block in send_action'
2084
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `tap'
2085
- actionpack (5.0.0) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
2086
- actionpack (5.0.0) lib/abstract_controller/base.rb:188:in `process_action'
2087
- actionpack (5.0.0) lib/action_controller/metal/rendering.rb:30:in `process_action'
2088
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2089
- activesupport (5.0.0) lib/active_support/callbacks.rb:126:in `call'
2090
- activesupport (5.0.0) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
2091
- activesupport (5.0.0) lib/active_support/callbacks.rb:455:in `call'
2092
- activesupport (5.0.0) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
2093
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
2094
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2095
- actionpack (5.0.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
2096
- actionpack (5.0.0) lib/action_controller/metal/rescue.rb:20:in `process_action'
2097
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2098
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `block in instrument'
2099
- activesupport (5.0.0) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
2100
- activesupport (5.0.0) lib/active_support/notifications.rb:164:in `instrument'
2101
- actionpack (5.0.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2102
- actionpack (5.0.0) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
2103
- activerecord (5.0.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2104
- actionpack (5.0.0) lib/abstract_controller/base.rb:126:in `process'
2105
- actionview (5.0.0) lib/action_view/rendering.rb:30:in `process'
2106
- actionpack (5.0.0) lib/action_controller/metal.rb:190:in `dispatch'
2107
- actionpack (5.0.0) lib/action_controller/metal.rb:262:in `dispatch'
2108
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
2109
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:32:in `serve'
2110
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2111
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2112
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2113
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2114
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2115
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2116
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2117
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2118
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2119
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2120
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2121
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2122
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2123
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2124
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2125
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2126
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2127
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2128
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2129
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2130
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2131
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2132
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2133
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2134
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2135
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2136
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2137
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2138
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2139
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2140
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2141
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2142
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2143
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2144
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2145
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2146
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2147
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2148
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2149
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2150
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2151
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2152
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2153
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2154
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2155
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2156
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2157
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
2158
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2159
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.3ms)
2160
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2161
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (25.6ms)
2162
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2163
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2164
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (91.3ms)
2165
- Started GET "/notee/tokens/new" for ::1 at 2016-07-13 19:33:38 +0900
2166
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
2167
- ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
2168
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
2169
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
2170
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:TokensController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/tokens_controller.rb:6)
2171
- Processing by Notee::TokensController#new as HTML
2172
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application
2173
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/tokens/new.html.erb within layouts/notee/application (18.6ms)
2174
- Completed 200 OK in 2727ms (Views: 2724.4ms | ActiveRecord: 0.0ms)
2175
-
2176
-
2177
- Started GET "/assets/notee/lighttaste.self-b53354869f65a19e4592f99f30d20b8181f9e1b75c4b4465c794effd3349f52b.css?body=1" for ::1 at 2016-07-13 19:33:41 +0900
2178
- Started GET "/assets/notee/preview.self-b46afd0a98e1c859e1c86485930078d39e59cd93e0c41ea6b31ed887b5fa072a.css?body=1" for ::1 at 2016-07-13 19:33:41 +0900
2179
- Started GET "/assets/notee/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 19:33:41 +0900
2180
- Started GET "/assets/notee/normalize.self-333ce827f60870acbaa5a751d49889465ce84697ee03980558f7d38405f670da.css?body=1" for ::1 at 2016-07-13 19:33:41 +0900
2181
- Started GET "/assets/notee/login.self-11ebcfe0a960ccf7ee11da0c36fcd7698211882d4da1eda92d97fb53c0292d52.css?body=1" for ::1 at 2016-07-13 19:33:41 +0900
2182
- Started GET "/assets/notee/application.self-a7f512f61b41cc8e7fbefc636389fd500167133a5d611fa276e9fd243948f06f.js?body=1" for ::1 at 2016-07-13 19:33:41 +0900
2183
- Started POST "/notee/tokens" for ::1 at 2016-07-13 19:34:30 +0900
2184
- Processing by Notee::TokensController#create as HTML
2185
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"tEMTfuhWorYjXUq9BEz9xYMoQ/OfdO+qH31NQjNCkYbpFPT3kOE0z2jh5sTWIMeY7uOSogM5gATXgXTuwgZcIw==", "id"=>"hogehoge", "password"=>"[FILTERED]", "commit"=>"ログイン"}
2186
-  (0.4ms) begin transaction
2187
- Notee::Token Exists (0.7ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" = ? LIMIT ? [["access_token", "ebe2b8312536e3ed77613af9b328cd24"], ["LIMIT", 1]]
2188
- SQL (1.3ms) INSERT INTO "notee_tokens" ("access_token", "expires_at", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["access_token", "ebe2b8312536e3ed77613af9b328cd24"], ["expires_at", 2016-07-20 10:34:30 UTC], ["created_at", 2016-07-13 10:34:30 UTC], ["updated_at", 2016-07-13 10:34:30 UTC]]
2189
-  (0.7ms) commit transaction
2190
- Redirected to http://localhost:3000/notee/
2191
- Completed 302 Found in 106ms (ActiveRecord: 5.3ms)
2192
-
2193
-
2194
- Started GET "/notee/" for ::1 at 2016-07-13 19:34:30 +0900
2195
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:7)
2196
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:8)
2197
- Processing by Notee::PostsController#notee as HTML
2198
- Notee::Token Exists (0.4ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" = ? LIMIT ? [["access_token", "ebe2b8312536e3ed77613af9b328cd24"], ["LIMIT", 1]]
2199
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/posts/notee.html.erb within layouts/notee/application
2200
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/posts/notee.html.erb within layouts/notee/application (1.7ms)
2201
- Completed 200 OK in 36ms (Views: 30.6ms | ActiveRecord: 0.4ms)
2202
-
2203
-
2204
- Started GET "/notee/api/posts" for ::1 at 2016-07-13 19:34:31 +0900
2205
-
2206
- ActionController::RoutingError (wrong constant name ):
2207
-
2208
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2209
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2210
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2211
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2212
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2213
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2214
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2215
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2216
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2217
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2218
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2219
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2220
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2221
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2222
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2223
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2224
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2225
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2226
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2227
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2228
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2229
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2230
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2231
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2232
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2233
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2234
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2235
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2236
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2237
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2238
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2239
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2240
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2241
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2242
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2243
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2244
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2245
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2246
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2247
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2248
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2249
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2250
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2251
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2252
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2253
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2254
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2255
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2256
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2257
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2258
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2259
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2260
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2261
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2262
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2263
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2264
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2265
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
2266
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2267
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
2268
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [1 times] (14.5ms)
2269
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (13.2ms)
2270
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (13.5ms)
2271
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2272
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
2273
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (144.4ms)
2274
- Started GET "/" for ::1 at 2016-07-13 19:38:57 +0900
2275
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
2276
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2277
- Processing by BlogController#index as HTML
2278
- Notee::Post Load (0.6ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2279
- Rendering blog/index.html.erb within layouts/application
2280
- Rendered blog/index.html.erb within layouts/application (4.5ms)
2281
- Completed 500 Internal Server Error in 26ms (ActiveRecord: 0.9ms)
2282
-
2283
-
2284
-
2285
- ActionView::Template::Error (undefined method `each' for nil:NilClass):
2286
- 1: <% @notees.each do |notee| %>
2287
- 2: <%= notee %>
2288
- 3: <% end %>
2289
-
2290
- app/views/blog/index.html.erb:1:in `_app_views_blog_index_html_erb__4120879866206208083_70202703871900'
2291
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
2292
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2293
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.8ms)
2294
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2295
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
2296
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2297
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.1ms)
2298
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (83.6ms)
2299
- Started GET "/" for ::1 at 2016-07-13 19:40:07 +0900
2300
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
2301
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2302
- Processing by BlogController#index as HTML
2303
- Notee::Post Load (0.6ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2304
- Rendering blog/index.html.erb within layouts/application
2305
- Rendered blog/index.html.erb within layouts/application (5.2ms)
2306
- Completed 500 Internal Server Error in 28ms (ActiveRecord: 0.9ms)
2307
-
2308
-
2309
-
2310
- ActionView::Template::Error (undefined method `each' for nil:NilClass):
2311
- 1: <% @notees.each do |notee| %>
2312
- 2: <%= notee %>
2313
- 3: <% end %>
2314
-
2315
- app/views/blog/index.html.erb:1:in `_app_views_blog_index_html_erb___3355472165151124412_70236924650800'
2316
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
2317
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2318
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.2ms)
2319
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2320
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
2321
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2322
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.4ms)
2323
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (83.6ms)
2324
- Started GET "/" for ::1 at 2016-07-13 19:40:22 +0900
2325
- Processing by BlogController#index as HTML
2326
- Notee::Post Load (0.2ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2327
- Rendering blog/index.html.erb within layouts/application
2328
- Rendered blog/index.html.erb within layouts/application (2.3ms)
2329
- Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.2ms)
2330
-
2331
-
2332
-
2333
- ActionView::Template::Error (undefined method `each' for nil:NilClass):
2334
- 1: <%= @notees.each do |notee| %>
2335
- 2: <%= notee %>
2336
- 3: <% end %>
2337
-
2338
- app/views/blog/index.html.erb:1:in `_app_views_blog_index_html_erb___3355472165151124412_70236916126740'
2339
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
2340
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2341
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.6ms)
2342
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2343
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
2344
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2345
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
2346
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (71.7ms)
2347
- Started GET "/" for ::1 at 2016-07-13 19:40:36 +0900
2348
- Processing by BlogController#index as HTML
2349
- Notee::Post Load (0.1ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2350
- Rendering blog/index.html.erb within layouts/application
2351
- Rendered blog/index.html.erb within layouts/application (2.6ms)
2352
- Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.1ms)
2353
-
2354
-
2355
-
2356
- ActionView::Template::Error (undefined method `each' for nil:NilClass):
2357
- 1: <%= @notees.each do |notee| %>
2358
- 2: <%= notee %>
2359
- 3: <% end %>
2360
-
2361
- app/views/blog/index.html.erb:1:in `_app_views_blog_index_html_erb___3355472165151124412_70236931174700'
2362
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
2363
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2364
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.6ms)
2365
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2366
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
2367
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2368
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
2369
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (64.4ms)
2370
- Started GET "/" for ::1 at 2016-07-13 19:40:47 +0900
2371
- Processing by BlogController#index as HTML
2372
- Notee::Post Load (0.1ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2373
- Rendering blog/index.html.erb within layouts/application
2374
- Rendered blog/index.html.erb within layouts/application (0.5ms)
2375
- Completed 200 OK in 679ms (Views: 675.9ms | ActiveRecord: 0.1ms)
2376
-
2377
-
2378
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 19:40:48 +0900
2379
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 19:40:48 +0900
2380
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 19:40:48 +0900
2381
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 19:40:48 +0900
2382
- Started GET "/" for ::1 at 2016-07-13 19:40:56 +0900
2383
- Processing by BlogController#index as HTML
2384
- Notee::Post Load (0.6ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2385
- Rendering blog/index.html.erb within layouts/application
2386
- Rendered blog/index.html.erb within layouts/application (0.6ms)
2387
- Completed 200 OK in 24ms (Views: 17.3ms | ActiveRecord: 1.1ms)
2388
-
2389
-
2390
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 19:40:56 +0900
2391
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 19:40:56 +0900
2392
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 19:40:56 +0900
2393
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 19:40:56 +0900
2394
- Started GET "/" for ::1 at 2016-07-13 19:41:36 +0900
2395
- Processing by BlogController#index as HTML
2396
- Notee::Post Load (0.8ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2397
- Rendering blog/index.html.erb within layouts/application
2398
- Rendered blog/index.html.erb within layouts/application (3.3ms)
2399
- Completed 500 Internal Server Error in 23ms (ActiveRecord: 0.8ms)
2400
-
2401
-
2402
-
2403
- SyntaxError (/Users/takujifunao/Hack/01_mine/02_lib/notee/test/dummy/app/views/blog/index.html.erb:3: syntax error, unexpected ')', expecting keyword_then or ';' or '\n'
2404
- ...ees.each do |notee| if @notee );@output_buffer.safe_append='
2405
- ... ^
2406
- /Users/takujifunao/Hack/01_mine/02_lib/notee/test/dummy/app/views/blog/index.html.erb:7: syntax error, unexpected keyword_ensure, expecting ')'
2407
- /Users/takujifunao/Hack/01_mine/02_lib/notee/test/dummy/app/views/blog/index.html.erb:9: syntax error, unexpected keyword_end, expecting ')'):
2408
-
2409
- app/views/blog/index.html.erb:3: syntax error, unexpected ')', expecting keyword_then or ';' or '\n'
2410
- app/views/blog/index.html.erb:7: syntax error, unexpected keyword_ensure, expecting ')'
2411
- app/views/blog/index.html.erb:9: syntax error, unexpected keyword_end, expecting ')'
2412
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
2413
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2414
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.1ms)
2415
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2416
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.3ms)
2417
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2418
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
2419
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.1ms)
2420
- Started GET "/" for ::1 at 2016-07-13 19:42:14 +0900
2421
- Processing by BlogController#index as HTML
2422
- Notee::Post Load (0.9ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? LIMIT ? [["status", 1], ["LIMIT", 1]]
2423
- Rendering blog/index.html.erb within layouts/application
2424
- Rendered blog/index.html.erb within layouts/application (1.1ms)
2425
- Completed 200 OK in 29ms (Views: 25.5ms | ActiveRecord: 0.9ms)
2426
-
2427
-
2428
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 19:42:15 +0900
2429
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 19:42:15 +0900
2430
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 19:42:15 +0900
2431
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 19:42:15 +0900
2432
- Started GET "/" for ::1 at 2016-07-13 19:58:16 +0900
2433
- Processing by BlogController#index as HTML
2434
- Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
2435
-
2436
-
2437
-
2438
- NameError (undefined local variable or method `get_all_notees' for #<BlogController:0x007fc2a12b14a0>):
2439
-
2440
- app/controllers/blog_controller.rb:3:in `index'
2441
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
2442
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2443
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
2444
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2445
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
2446
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2447
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.8ms)
2448
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (69.4ms)
2449
- Started GET "/" for ::1 at 2016-07-13 19:58:35 +0900
2450
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
2451
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2452
- Processing by BlogController#index as HTML
2453
- Rendering blog/index.html.erb within layouts/application
2454
- Notee::Post Load (0.6ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? [["status", 1]]
2455
- Rendered blog/index.html.erb within layouts/application (5.8ms)
2456
- Completed 200 OK in 619ms (Views: 612.4ms | ActiveRecord: 0.8ms)
2457
-
2458
-
2459
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 19:58:36 +0900
2460
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 19:58:36 +0900
2461
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 19:58:36 +0900
2462
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 19:58:36 +0900
2463
- Started GET "/" for ::1 at 2016-07-13 20:15:59 +0900
2464
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
2465
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2466
- Processing by BlogController#index as HTML
2467
- Rendering blog/index.html.erb within layouts/application
2468
- Notee::Post Load (0.6ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? [["status", 1]]
2469
- Rendered blog/index.html.erb within layouts/application (5.7ms)
2470
- Completed 200 OK in 624ms (Views: 618.1ms | ActiveRecord: 0.9ms)
2471
-
2472
-
2473
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 20:16:00 +0900
2474
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 20:16:00 +0900
2475
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 20:16:00 +0900
2476
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 20:16:00 +0900
2477
- Started GET "/about" for ::1 at 2016-07-13 20:16:04 +0900
2478
- Processing by BlogController#notee_id as HTML
2479
- Parameters: {"id"=>"about"}
2480
- Notee::Post Load (0.2ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."id" = ? AND "notee_posts"."status" = ? LIMIT ? [["id", 0], ["status", 1], ["LIMIT", 1]]
2481
- Rendering blog/show.html.erb within layouts/application
2482
- Rendered blog/show.html.erb within layouts/application (4.5ms)
2483
- Completed 500 Internal Server Error in 14ms (ActiveRecord: 0.2ms)
2484
-
2485
-
2486
-
2487
- ActionView::Template::Error (undefined method `title' for nil:NilClass):
2488
- 1: <%= @notee.title %>
2489
-
2490
- app/views/blog/show.html.erb:1:in `_app_views_blog_show_html_erb___2309270192508529873_70135152267540'
2491
- app/controllers/blog_controller.rb:13:in `notee_id'
2492
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
2493
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
2494
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
2495
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2496
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2497
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2498
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
2499
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (71.1ms)
2500
- Started GET "/about" for ::1 at 2016-07-13 20:16:35 +0900
2501
- Processing by BlogController#notee_id as HTML
2502
- Parameters: {"id"=>"about"}
2503
- Notee::Post Load (1.8ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."id" = ? AND "notee_posts"."status" = ? LIMIT ? [["id", 0], ["status", 1], ["LIMIT", 1]]
2504
- Rendering blog/show.html.erb within layouts/application
2505
- Rendered blog/show.html.erb within layouts/application (4.1ms)
2506
- Completed 200 OK in 96ms (Views: 85.4ms | ActiveRecord: 1.8ms)
2507
-
2508
-
2509
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 20:16:36 +0900
2510
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 20:16:36 +0900
2511
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 20:16:36 +0900
2512
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 20:16:36 +0900
2513
- Started GET "/about" for ::1 at 2016-07-13 20:17:03 +0900
2514
- Processing by BlogController#notee_id as HTML
2515
- Parameters: {"id"=>"about"}
2516
- Notee::Post Load (13.0ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."id" = ? AND "notee_posts"."status" = ? LIMIT ? [["id", 0], ["status", 1], ["LIMIT", 1]]
2517
- Rendering blog/show.html.erb within layouts/application
2518
- Rendered blog/show.html.erb within layouts/application (5.3ms)
2519
- Completed 200 OK in 113ms (Views: 70.3ms | ActiveRecord: 13.0ms)
2520
-
2521
-
2522
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 20:17:04 +0900
2523
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 20:17:04 +0900
2524
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 20:17:04 +0900
2525
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 20:17:04 +0900
2526
- Started GET "/" for ::1 at 2016-07-13 20:17:06 +0900
2527
- Processing by BlogController#index as HTML
2528
- Rendering blog/index.html.erb within layouts/application
2529
- Notee::Post Load (0.4ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? [["status", 1]]
2530
- Rendered blog/index.html.erb within layouts/application (3.7ms)
2531
- Completed 200 OK in 19ms (Views: 15.5ms | ActiveRecord: 0.4ms)
2532
-
2533
-
2534
- Started GET "/s" for ::1 at 2016-07-13 20:17:10 +0900
2535
- Processing by BlogController#notee_id as HTML
2536
- Parameters: {"id"=>"s"}
2537
- Notee::Post Load (0.7ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."id" = ? AND "notee_posts"."status" = ? LIMIT ? [["id", 0], ["status", 1], ["LIMIT", 1]]
2538
- Rendering blog/show.html.erb within layouts/application
2539
- Rendered blog/show.html.erb within layouts/application (0.6ms)
2540
- Completed 200 OK in 17ms (Views: 15.3ms | ActiveRecord: 0.7ms)
2541
-
2542
-
2543
- Started GET "/2" for ::1 at 2016-07-13 20:17:14 +0900
2544
- Processing by BlogController#notee_id as HTML
2545
- Parameters: {"id"=>"2"}
2546
- Notee::Post Load (1.2ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."id" = ? AND "notee_posts"."status" = ? LIMIT ? [["id", 2], ["status", 1], ["LIMIT", 1]]
2547
- Rendering blog/show.html.erb within layouts/application
2548
- Rendered blog/show.html.erb within layouts/application (0.6ms)
2549
- Completed 200 OK in 16ms (Views: 13.9ms | ActiveRecord: 1.2ms)
2550
-
2551
-
2552
- Started GET "/2" for ::1 at 2016-07-13 20:36:28 +0900
2553
- Processing by BlogController#notee_id as HTML
2554
- Parameters: {"id"=>"2"}
2555
- Notee::Post Load (2.4ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."id" = ? AND "notee_posts"."status" = ? LIMIT ? [["id", 2], ["status", 1], ["LIMIT", 1]]
2556
- Rendering blog/show.html.erb within layouts/application
2557
- Rendered blog/show.html.erb within layouts/application (3.6ms)
2558
- Completed 200 OK in 49ms (Views: 38.3ms | ActiveRecord: 2.4ms)
2559
-
2560
-
2561
- Started GET "/assets/blog.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2016-07-13 20:36:29 +0900
2562
- Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-13 20:36:29 +0900
2563
- Started GET "/assets/blog.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2016-07-13 20:36:29 +0900
2564
- Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2016-07-13 20:36:29 +0900
2565
- Started GET "/" for ::1 at 2016-07-15 15:40:36 +0900
2566
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from raise_in_transactional_callbacks= at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/activerecord-5.0.0/lib/active_record/transactions.rb:283)
2567
- ActiveRecord::SchemaMigration Load (1.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2568
- Processing by BlogController#index as HTML
2569
- Rendering blog/index.html.erb within layouts/application
2570
- Notee::Post Load (0.8ms) SELECT "notee_posts".* FROM "notee_posts" WHERE "notee_posts"."status" = ? [["status", 1]]
2571
- Rendered blog/index.html.erb within layouts/application (19.8ms)
2572
- Started GET "/notee" for ::1 at 2016-07-15 15:40:37 +0900
2573
- Completed 200 OK in 2366ms (Views: 2354.3ms | ActiveRecord: 1.2ms)
2574
-
2575
-
2576
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:4)
2577
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:ApplicationController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/application_controller.rb:5)
2578
- DEPRECATION WARNING: skip_before_filter is deprecated and will be removed in Rails 5.1. Use skip_before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:7)
2579
- DEPRECATION WARNING: before_filter is deprecated and will be removed in Rails 5.1. Use before_action instead. (called from <class:PostsController> at /Users/takujifunao/Hack/01_mine/02_lib/notee/app/controllers/notee/posts_controller.rb:8)
2580
- Processing by Notee::PostsController#notee as HTML
2581
- Notee::Token Exists (0.5ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" = ? LIMIT ? [["access_token", "ebe2b8312536e3ed77613af9b328cd24"], ["LIMIT", 1]]
2582
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/posts/notee.html.erb within layouts/notee/application
2583
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/posts/notee.html.erb within layouts/notee/application (0.4ms)
2584
- Completed 200 OK in 706ms (Views: 689.7ms | ActiveRecord: 0.9ms)
2585
-
2586
-
2587
- Started GET "/assets/notee/login.self-11ebcfe0a960ccf7ee11da0c36fcd7698211882d4da1eda92d97fb53c0292d52.css?body=1" for ::1 at 2016-07-15 15:40:39 +0900
2588
- Started GET "/assets/notee/preview.self-b46afd0a98e1c859e1c86485930078d39e59cd93e0c41ea6b31ed887b5fa072a.css?body=1" for ::1 at 2016-07-15 15:40:39 +0900
2589
- Started GET "/notee/api/posts" for ::1 at 2016-07-15 15:40:40 +0900
2590
-
2591
- ActionController::RoutingError (wrong constant name ):
2592
-
2593
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2594
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2595
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2596
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2597
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2598
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2599
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2600
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2601
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2602
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2603
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2604
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2605
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2606
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2607
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2608
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2609
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2610
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2611
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2612
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2613
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2614
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2615
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2616
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2617
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2618
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2619
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2620
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2621
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2622
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2623
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2624
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2625
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2626
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2627
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2628
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2629
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2630
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2631
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2632
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2633
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2634
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2635
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2636
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2637
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2638
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2639
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2640
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2641
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2642
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2643
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2644
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2645
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2646
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2647
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2648
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2649
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2650
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
2651
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2652
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
2653
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (24.7ms)
2654
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (13.7ms)
2655
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (26.6ms)
2656
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2657
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.3ms)
2658
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (277.0ms)
2659
- Started GET "/notee" for ::1 at 2016-07-15 15:40:49 +0900
2660
- Processing by Notee::PostsController#notee as HTML
2661
- Notee::Token Exists (0.6ms) SELECT 1 AS one FROM "notee_tokens" WHERE "notee_tokens"."access_token" = ? LIMIT ? [["access_token", "ebe2b8312536e3ed77613af9b328cd24"], ["LIMIT", 1]]
2662
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/posts/notee.html.erb within layouts/notee/application
2663
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/app/views/notee/posts/notee.html.erb within layouts/notee/application (0.5ms)
2664
- Completed 200 OK in 27ms (Views: 21.4ms | ActiveRecord: 0.6ms)
2665
-
2666
-
2667
- Started GET "/assets/notee/login.self-11ebcfe0a960ccf7ee11da0c36fcd7698211882d4da1eda92d97fb53c0292d52.css?body=1" for ::1 at 2016-07-15 15:40:50 +0900
2668
- Started GET "/assets/notee/lighttaste.self-b53354869f65a19e4592f99f30d20b8181f9e1b75c4b4465c794effd3349f52b.css?body=1" for ::1 at 2016-07-15 15:40:50 +0900
2669
- Started GET "/assets/notee/normalize.self-333ce827f60870acbaa5a751d49889465ce84697ee03980558f7d38405f670da.css?body=1" for ::1 at 2016-07-15 15:40:50 +0900
2670
- Started GET "/assets/notee/preview.self-b46afd0a98e1c859e1c86485930078d39e59cd93e0c41ea6b31ed887b5fa072a.css?body=1" for ::1 at 2016-07-15 15:40:50 +0900
2671
- Started GET "/assets/notee/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2016-07-15 15:40:50 +0900
2672
- Started GET "/assets/notee/application.self-d0c1737d2a53427f0eb309ee85410a4a90958e432b31ce357571daabeee7e145.js?body=1" for ::1 at 2016-07-15 15:40:50 +0900
2673
- Started GET "/notee/api/posts" for ::1 at 2016-07-15 15:40:51 +0900
2674
-
2675
- ActionController::RoutingError (wrong constant name ):
2676
-
2677
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2678
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2679
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2680
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2681
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2682
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2683
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2684
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2685
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2686
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2687
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2688
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2689
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2690
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2691
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2692
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2693
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2694
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2695
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2696
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2697
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2698
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2699
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2700
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2701
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2702
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2703
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2704
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2705
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2706
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2707
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2708
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2709
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2710
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2711
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2712
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2713
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2714
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2715
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2716
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2717
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2718
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2719
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2720
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2721
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2722
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2723
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2724
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2725
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2726
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2727
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2728
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2729
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2730
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2731
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2732
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2733
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2734
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
2735
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2736
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2737
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (4.2ms)
2738
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (5.2ms)
2739
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (15.3ms)
2740
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2741
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (5.5ms)
2742
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (298.1ms)
2743
- Started GET "/notee/api/categories" for ::1 at 2016-07-15 15:40:58 +0900
2744
-
2745
- ActionController::RoutingError (wrong constant name ):
2746
-
2747
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2748
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2749
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2750
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2751
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2752
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2753
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2754
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2755
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2756
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2757
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2758
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2759
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2760
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2761
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2762
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2763
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2764
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2765
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2766
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2767
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2768
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2769
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2770
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2771
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2772
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2773
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2774
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2775
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2776
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2777
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2778
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2779
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2780
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2781
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2782
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2783
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2784
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2785
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2786
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2787
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2788
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2789
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2790
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2791
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2792
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2793
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2794
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2795
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2796
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2797
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2798
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2799
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2800
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2801
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2802
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2803
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2804
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
2805
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2806
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
2807
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (30.7ms)
2808
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (10.4ms)
2809
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
2810
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2811
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
2812
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (157.7ms)
2813
- Started GET "/notee/api/categories" for ::1 at 2016-07-15 15:41:02 +0900
2814
-
2815
- ActionController::RoutingError (wrong constant name ):
2816
-
2817
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2818
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2819
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2820
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2821
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2822
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2823
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2824
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2825
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2826
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2827
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2828
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2829
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2830
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2831
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2832
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2833
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2834
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2835
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2836
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2837
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2838
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2839
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2840
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2841
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2842
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2843
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2844
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2845
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2846
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2847
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2848
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2849
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2850
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2851
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2852
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2853
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2854
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2855
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2856
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2857
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2858
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2859
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2860
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2861
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2862
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2863
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2864
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2865
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2866
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2867
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2868
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2869
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2870
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2871
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2872
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2873
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2874
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
2875
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
2876
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
2877
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (5.5ms)
2878
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (12.2ms)
2879
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
2880
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
2881
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
2882
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.4ms)
2883
- Started POST "/notee/api/categories" for ::1 at 2016-07-15 15:41:28 +0900
2884
- Started GET "/notee/api/categories" for ::1 at 2016-07-15 15:41:28 +0900
2885
-
2886
-
2887
- ActionController::RoutingError (wrong constant name ):
2888
- ActionController::RoutingError (wrong constant name ):
2889
-
2890
-
2891
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2892
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `const_get'
2893
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2894
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:270:in `block in constantize'
2895
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2896
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `each'
2897
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2898
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `inject'
2899
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2900
- activesupport (5.0.0) lib/active_support/inflector/methods.rb:266:in `constantize'
2901
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2902
- activesupport (5.0.0) lib/active_support/dependencies.rb:583:in `get'
2903
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2904
- activesupport (5.0.0) lib/active_support/dependencies.rb:614:in `constantize'
2905
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2906
- actionpack (5.0.0) lib/action_dispatch/http/request.rb:93:in `controller_class'
2907
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2908
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:44:in `controller'
2909
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2910
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:30:in `serve'
2911
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2912
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2913
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2914
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2915
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2916
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2917
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2918
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2919
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2920
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2921
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2922
- railties (5.0.0) lib/rails/railtie.rb:193:in `public_send'
2923
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2924
- railties (5.0.0) lib/rails/railtie.rb:193:in `method_missing'
2925
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2926
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
2927
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2928
- actionpack (5.0.0) lib/action_dispatch/routing/mapper.rb:46:in `serve'
2929
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2930
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:39:in `block in serve'
2931
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2932
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2933
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2934
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2935
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `each'
2936
- actionpack (5.0.0) lib/action_dispatch/journey/router.rb:26:in `serve'
2937
- actionpack (5.0.0) lib/action_dispatch/routing/route_set.rb:725:in `call'
2938
- rack (2.0.1) lib/rack/etag.rb:25:in `call'
2939
- rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
2940
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2941
- rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
2942
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2943
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2944
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2945
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2946
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2947
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2948
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2949
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2950
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2951
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2952
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2953
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2954
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2955
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2956
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2957
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2958
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2959
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2960
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2961
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2962
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2963
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2964
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2965
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2966
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2967
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
2968
- rack (2.0.1) lib/rack/head.rb:12:in `call'
2969
- rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
2970
- rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
2971
- actionpack (5.0.0) lib/action_dispatch/middleware/cookies.rb:613:in `call'
2972
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
2973
- activerecord (5.0.0) lib/active_record/migration.rb:552:in `call'
2974
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
2975
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
2976
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
2977
- activesupport (5.0.0) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
2978
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
2979
- activesupport (5.0.0) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
2980
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
2981
- activesupport (5.0.0) lib/active_support/callbacks.rb:90:in `run_callbacks'
2982
- actionpack (5.0.0) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
2983
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2984
- actionpack (5.0.0) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
2985
- actionpack (5.0.0) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
2986
- actionpack (5.0.0) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
2987
- railties (5.0.0) lib/rails/rack/logger.rb:36:in `call_app'
2988
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `block in call'
2989
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `block in tagged'
2990
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:26:in `tagged'
2991
- activesupport (5.0.0) lib/active_support/tagged_logging.rb:70:in `tagged'
2992
- railties (5.0.0) lib/rails/rack/logger.rb:24:in `call'
2993
- actionpack (5.0.0) lib/action_dispatch/middleware/request_id.rb:24:in `call'
2994
- rack (2.0.1) lib/rack/method_override.rb:22:in `call'
2995
- rack (2.0.1) lib/rack/runtime.rb:22:in `call'
2996
- activesupport (5.0.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2997
- actionpack (5.0.0) lib/action_dispatch/middleware/executor.rb:12:in `call'
2998
- actionpack (5.0.0) lib/action_dispatch/middleware/static.rb:136:in `call'
2999
- rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
3000
- railties (5.0.0) lib/rails/engine.rb:522:in `call'
3001
- rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
3002
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
3003
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
3004
- /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
3005
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
3006
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
3007
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
3008
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
3009
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
3010
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms)
3011
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (3.1ms)
3012
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [5 times] (1.7ms)
3013
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (5.7ms)
3014
- Rendered collection of /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb [19 times] (4.2ms)
3015
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
3016
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
3017
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
3018
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.0ms)
3019
- Rendering /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
3020
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (213.0ms)
3021
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
3022
- Rendered /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/gems/actionpack-5.0.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (198.4ms)
3023
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/bin/rake:23)
3024
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from load at /Users/takujifunao/Hack/01_mine/02_lib/notee/vendor/bundle/ruby/2.3.0/bin/rake:23)
3025
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3026
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3027
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3028
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3029
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3030
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3031
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3032
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3033
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3034
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3035
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3036
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3037
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3038
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3039
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3040
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3041
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3042
- ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
3043
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3044
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3045
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3046
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3047
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3048
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3049
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3050
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3051
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3052
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3053
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3054
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3055
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3056
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3057
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3058
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3059
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3060
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3061
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3062
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3063
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3064
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3065
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3066
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3067
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3068
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3069
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3070
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3071
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3072
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3073
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3074
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3075
- ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
3076
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3077
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3078
- ActiveRecord::SchemaMigration Load (1.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3079
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3080
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3081
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3082
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3083
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3084
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3085
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3086
- DEPRECATION WARNING: ActiveRecord::Base.raise_in_transactional_callbacks= is deprecated, has no effect and will be removed without replacement. (called from <module:ActiveRecord> at /Users/takujifunao/.rbenv/versions/2.3.1/lib/ruby/gems/2.3.0/gems/annotate-2.7.1/lib/annotate/active_record_patch.rb:4)
3087
- ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"