groonga-client-rails 0.9.4 → 0.9.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (212) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +6 -0
  3. data/doc/text/news.md +9 -0
  4. data/groonga-client-rails.gemspec +1 -1
  5. data/lib/groonga/client/rails/spec_helper.rb +6 -8
  6. data/lib/groonga/client/rails/test_helper.rb +11 -8
  7. data/lib/groonga/client/rails/test_synchronizer.rb +17 -0
  8. data/lib/groonga/client/rails/version.rb +1 -1
  9. data/lib/groonga/client/searcher/select_request.rb +63 -0
  10. data/lib/groonga/client/searcher.rb +3 -3
  11. data/test/apps/rails4-mongoid/Gemfile +1 -0
  12. data/test/apps/rails4-mongoid/Gemfile.lock +53 -47
  13. data/test/apps/rails4-mongoid/log/test.log +5338 -0
  14. data/test/apps/rails5-activerecord/Gemfile +52 -0
  15. data/test/apps/rails5-activerecord/Gemfile.lock +205 -0
  16. data/test/apps/rails5-activerecord/README.md +24 -0
  17. data/test/apps/rails5-activerecord/Rakefile +6 -0
  18. data/test/apps/rails5-activerecord/app/assets/config/manifest.js +3 -0
  19. data/test/apps/rails5-activerecord/app/assets/javascripts/application.js +16 -0
  20. data/test/apps/rails5-activerecord/app/assets/javascripts/cable.js +13 -0
  21. data/test/apps/rails5-activerecord/app/assets/javascripts/posts.coffee +3 -0
  22. data/test/apps/rails5-activerecord/app/assets/stylesheets/application.css +15 -0
  23. data/test/apps/rails5-activerecord/app/assets/stylesheets/posts.scss +7 -0
  24. data/test/apps/rails5-activerecord/app/assets/stylesheets/scaffolds.scss +89 -0
  25. data/test/apps/rails5-activerecord/app/channels/application_cable/channel.rb +4 -0
  26. data/test/apps/rails5-activerecord/app/channels/application_cable/connection.rb +4 -0
  27. data/test/apps/rails5-activerecord/app/controllers/application_controller.rb +3 -0
  28. data/test/apps/rails5-activerecord/app/controllers/posts_controller.rb +90 -0
  29. data/test/apps/rails5-activerecord/app/helpers/application_helper.rb +2 -0
  30. data/test/apps/rails5-activerecord/app/helpers/posts_helper.rb +2 -0
  31. data/test/apps/rails5-activerecord/app/jobs/application_job.rb +2 -0
  32. data/test/apps/rails5-activerecord/app/mailers/application_mailer.rb +4 -0
  33. data/test/apps/rails5-activerecord/app/models/application_record.rb +3 -0
  34. data/test/apps/rails5-activerecord/app/models/post.rb +7 -0
  35. data/test/apps/rails5-activerecord/app/searchers/application_searcher.rb +2 -0
  36. data/test/apps/rails5-activerecord/app/searchers/posts_searcher.rb +16 -0
  37. data/test/apps/rails5-activerecord/app/views/layouts/application.html.erb +14 -0
  38. data/test/apps/rails5-activerecord/app/views/layouts/mailer.html.erb +13 -0
  39. data/test/apps/rails5-activerecord/app/views/layouts/mailer.text.erb +1 -0
  40. data/test/apps/rails5-activerecord/app/views/posts/_form.html.erb +27 -0
  41. data/test/apps/rails5-activerecord/app/views/posts/_post.json.jbuilder +2 -0
  42. data/test/apps/rails5-activerecord/app/views/posts/edit.html.erb +6 -0
  43. data/test/apps/rails5-activerecord/app/views/posts/index.html.erb +45 -0
  44. data/test/apps/rails5-activerecord/app/views/posts/index.json.jbuilder +1 -0
  45. data/test/apps/rails5-activerecord/app/views/posts/new.html.erb +5 -0
  46. data/test/apps/rails5-activerecord/app/views/posts/show.html.erb +14 -0
  47. data/test/apps/rails5-activerecord/app/views/posts/show.json.jbuilder +1 -0
  48. data/test/apps/rails5-activerecord/bin/bundle +3 -0
  49. data/test/apps/rails5-activerecord/bin/rails +9 -0
  50. data/test/apps/rails5-activerecord/bin/rake +9 -0
  51. data/test/apps/rails5-activerecord/bin/setup +34 -0
  52. data/test/apps/rails5-activerecord/bin/spring +16 -0
  53. data/test/apps/rails5-activerecord/bin/update +29 -0
  54. data/test/apps/rails5-activerecord/config/application.rb +15 -0
  55. data/test/apps/rails5-activerecord/config/boot.rb +3 -0
  56. data/test/apps/rails5-activerecord/config/cable.yml +9 -0
  57. data/test/apps/rails5-activerecord/config/database.yml +25 -0
  58. data/test/apps/rails5-activerecord/config/environment.rb +5 -0
  59. data/test/apps/rails5-activerecord/config/environments/development.rb +54 -0
  60. data/test/apps/rails5-activerecord/config/environments/production.rb +86 -0
  61. data/test/apps/rails5-activerecord/config/environments/test.rb +42 -0
  62. data/test/apps/rails5-activerecord/config/groonga_client.yml +22 -0
  63. data/test/apps/rails5-activerecord/config/initializers/application_controller_renderer.rb +6 -0
  64. data/test/apps/rails5-activerecord/config/initializers/assets.rb +11 -0
  65. data/test/apps/rails5-activerecord/config/initializers/backtrace_silencers.rb +7 -0
  66. data/test/apps/rails5-activerecord/config/initializers/cookies_serializer.rb +5 -0
  67. data/test/apps/rails5-activerecord/config/initializers/filter_parameter_logging.rb +4 -0
  68. data/test/apps/rails5-activerecord/config/initializers/inflections.rb +16 -0
  69. data/test/apps/rails5-activerecord/config/initializers/mime_types.rb +4 -0
  70. data/test/apps/rails5-activerecord/config/initializers/new_framework_defaults.rb +24 -0
  71. data/test/apps/rails5-activerecord/config/initializers/session_store.rb +3 -0
  72. data/test/apps/rails5-activerecord/config/initializers/wrap_parameters.rb +14 -0
  73. data/test/apps/rails5-activerecord/config/locales/en.yml +23 -0
  74. data/test/apps/rails5-activerecord/config/puma.rb +47 -0
  75. data/test/apps/rails5-activerecord/config/routes.rb +4 -0
  76. data/test/apps/rails5-activerecord/config/secrets.yml +22 -0
  77. data/test/apps/rails5-activerecord/config/spring.rb +6 -0
  78. data/test/apps/rails5-activerecord/config.ru +5 -0
  79. data/test/apps/rails5-activerecord/db/development.sqlite3 +0 -0
  80. data/test/apps/rails5-activerecord/db/migrate/20161212004726_create_posts.rb +10 -0
  81. data/test/apps/rails5-activerecord/db/schema.rb +22 -0
  82. data/test/apps/rails5-activerecord/db/seeds.rb +7 -0
  83. data/test/apps/rails5-activerecord/db/test.sqlite3 +0 -0
  84. data/test/apps/rails5-activerecord/log/development.log +808 -0
  85. data/test/apps/rails5-activerecord/log/test.log +1137 -0
  86. data/test/apps/rails5-activerecord/public/404.html +67 -0
  87. data/test/apps/rails5-activerecord/public/422.html +67 -0
  88. data/test/apps/rails5-activerecord/public/500.html +66 -0
  89. data/test/apps/rails5-activerecord/public/apple-touch-icon-precomposed.png +0 -0
  90. data/test/apps/rails5-activerecord/public/apple-touch-icon.png +0 -0
  91. data/test/apps/rails5-activerecord/public/favicon.ico +0 -0
  92. data/test/apps/rails5-activerecord/public/robots.txt +5 -0
  93. data/test/apps/rails5-activerecord/test/controllers/posts_controller_test.rb +50 -0
  94. data/test/apps/rails5-activerecord/test/fixtures/posts.yml +9 -0
  95. data/test/apps/rails5-activerecord/test/models/post_test.rb +7 -0
  96. data/test/apps/rails5-activerecord/test/searchers/posts_searcher_test.rb +120 -0
  97. data/test/apps/rails5-activerecord/test/test_helper.rb +11 -0
  98. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/04/04zh1ytKDagWzWcqUyadXtzzohCn9iVvSVG4KrjpfPU.cache +0 -0
  99. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/0M/0M4bZ4tQh0MQYZMb72U5yr-ELStAsUSb8akkTME9TPM.cache +0 -0
  100. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/0g/0gB1rYz79RuAa43DzVci1GUjc5so0F1dU_LyLSmm3oQ.cache +0 -0
  101. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/1w/1w3lEnPL9oZPD-uk9Y9HOAO5TBywbDUumPsLKAD1trs.cache +1 -0
  102. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/2g/2gve43APDqh4mVsNSvvDZWU7XBUFJ22DjchDFC7BLHE.cache +1 -0
  103. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/3F/3Fsw9a9YyB3-WaDSpA1HTGJrWn_7xMLLpUYcNv4f4zs.cache +1 -0
  104. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/3P/3Px3lDIUtsiFfGy4nQGown3yldwKCp1MNuWbSDX1pvg.cache +0 -0
  105. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/4z/4zN1uyLrntkJkbS2fdatLGK7KyyLUl2uufUks7wTDjQ.cache +1 -0
  106. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/6C/6CiFiBprKrfOQZWs4gi3u2dD5mFuRjvrvkBi6BdwwMo.cache +0 -0
  107. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/6a/6ae9A4LxsOF8WxXqTRrY_OfmiKLzuX-k8CdxcYhyH2w.cache +0 -0
  108. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/6g/6gfb-nNauXmim2itNUscPWKLGmjzBgnE4ee76bNftS4.cache +1 -0
  109. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/6n/6n_6crFw4ICv3THdmoHgXfEXbykmN_3Qh0M3Y7BYoPA.cache +1 -0
  110. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/6r/6rrJLZY0-_gdJxgMUZBZIn-wf8bPVArYjXhIIrt_O5Y.cache +1 -0
  111. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/7-/7-Zu1JSO2hqoAENLcGCtMh1TuhXyUjvzDCR1BAU-whs.cache +1 -0
  112. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/7G/7GXxgDjc3_xi8wt4fJkmv_XE9W19LHgDDmJIOJL8B8E.cache +0 -0
  113. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/7X/7XEN3CPn0h-3vjvFpHuvqByvBbmKNG0WgmdvlCrHmI8.cache +1 -0
  114. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/7l/7lu9duHmsh9ktTH4DbSPnN7p_Xz59VwGcX2J8XDP66Q.cache +1 -0
  115. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/7u/7uFy7yq8C8xezFbAvr8RzLaJRyEY34DlqcIsygk5u48.cache +0 -0
  116. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/8Z/8Zm1d9-lBPsGG_HUw8FP2OCCVucGDVhWAOGaopvOdss.cache +3 -0
  117. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/9p/9pkKAqd_Ia0HpbbUCZtpJ8WiDzr5stcFJsnqsOsJwCc.cache +0 -0
  118. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/9w/9w_czK8Y6L_1dHF-b-aFykWLeiPmTlnI_vTHsNG1Mow.cache +0 -0
  119. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/B9/B9QeeLv4GR9sOdrwyvxa8jIr4MkxjYh4Ow6MOZ8slX8.cache +0 -0
  120. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/BK/BKtHbqHUW-BUh6yXbZoSBLGYZdH4xpyEVJZ85mre3dI.cache +1 -0
  121. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Bn/BnqImgz8w0eyrrFRDbwQXdI6oPEBaakRHuxqdDfCA6g.cache +0 -0
  122. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Bx/BxzoG0KxeNLac4xTNeJv3qfeytbNBw58xj2zD-xdbrE.cache +0 -0
  123. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/DG/DGB9_ZZc6xf8xDs1C8MTwsnZGITqTg5w6Fi8loIoAz0.cache +1 -0
  124. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/DI/DIQbAB3xoMpwIuVisoyQuLOOLReZGqTzMsMSqPTvNlU.cache +1 -0
  125. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/DY/DYQB1uQOZWEQCZyNqRYGbp3TUGnhwGln6l0LJxvfdSM.cache +0 -0
  126. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Dw/DwMpASR_zMhZCB0WD5ibeEaOAEhod-gPDA-cl83A0NQ.cache +1 -0
  127. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Fp/FpDNzaN6X2qtiDvQrm2u2kFkPCkFxqjQWh8FcB2wcow.cache +1 -0
  128. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Fu/FuDP2r9jXh_VnQRBnJO9wYbxDUivFdL1tVpdpp3GUgQ.cache +0 -0
  129. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/G0/G0kukI-r0q0Vbrg6e_jnYJoYcOX8K__h-mwKbCf4twE.cache +2 -0
  130. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/H4/H4qMae4wP-2E0IT3OzIKJm7TAmkfgTg5GG-mDvrpRr8.cache +1 -0
  131. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/H8/H84Co5MLW6jHqkSepLLZXA99CN3Pj4Orn146jUdB-7Q.cache +0 -0
  132. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/HJ/HJmxnxAVu4ESMb2RUFATQhzd8xP7qwk0i7Or2WU6tHY.cache +1 -0
  133. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/I4/I4vFFlIVkL7O3GA9sTW-w6J6yRUCLLl9YNRmfxrqswI.cache +1 -0
  134. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/IM/IMjPkcjxzZVEDA07aU4zncnyk1cKAnqE0QWlQ05eF_I.cache +1 -0
  135. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/IX/IXa4w4VzXhmtd6DpleMPZTaZo-ak-2VW39_rTlS_82A.cache +0 -0
  136. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Mw/MwUXpv2ArJcHhHfRN-i_SHhOyrhE2ED5DP6j2_tHtDM.cache +1 -0
  137. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/N6/N6_UDcd-9vm063oO9Kj2UKERXHyG53mpljIHhMP_sX0.cache +1 -0
  138. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/O_/O_d1EuhZnMhlM56iFmcx1Yr-tKS2-F8XK2Ck4thkxfw.cache +0 -0
  139. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Oa/Oapw1N5wZtnRU54bGH1T0T5WvFHcAO8pp8RiEBPvgio.cache +1 -0
  140. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Oj/OjcwYv10xeNyxU4ma4rSL7scLtN1VSqgQtpmLAkKa1s.cache +0 -0
  141. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Ou/Ouwd1f-B-Ub4MsspZT6taABsir9tZQ3Lgk0Yqv0cxYE.cache +1 -0
  142. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/QT/QTeyXBrKqJWoMRN63_SDKm0DCFLsggXpmWSa1om_1lI.cache +2 -0
  143. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Qf/Qff9sy3RsADWqwgXy563eZw2BMxHil52FiOxDmKQnn4.cache +1 -0
  144. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Qw/QwtseSptjk29vLQAs9XVSY_9GY6mR4wLQ6e3xJZzwuo.cache +1 -0
  145. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Rf/RfAETGxupO0E6Sf50S9Rs_7H_8IFQkZ0V_Ot0qRcMaM.cache +1 -0
  146. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Sh/ShN-ZUpoxLJLJiMV5gFDP00vcSMHw87YzFBlXH4adPA.cache +0 -0
  147. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Si/Sin6bEoASrNa45108CpfgF2jcifz-KpbsvvZJtqVZ68.cache +0 -0
  148. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Ss/SsUxWtOAxDX66Ss49rvswWEE6LOPrbBTnxaY9OJWizk.cache +1 -0
  149. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Uw/Uws4qYyGLobvE_JD4L6dQNcIOOhv4LEZ3D0mK86tZOA.cache +1 -0
  150. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Vt/VtVyxYXmlAEeORF9LOH-DbqhYCV0kSXXBINi9BY3snA.cache +1 -0
  151. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Wm/WmtvDDxglSnhmavMeA7WNn7waN3QbagRHeoZHvZJN84.cache +1 -0
  152. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/X6/X6u2Cul1j8SpBq0WC1S8WhzGiT6f-6L_djUngh_gQfw.cache +0 -0
  153. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/XJ/XJRPx7aZ4ajZ72O37hx53ZFkfXSHpDDpCy78LI0leqM.cache +1 -0
  154. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/XL/XLmhbBwmjyGt7wnSpdFhJl1d66h1gXmGMr2IKRsPlKY.cache +1 -0
  155. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Ya/YayMISAqD-Y3vBFywwKrXbUovGf5o77HUF5s8mnQgO0.cache +0 -0
  156. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Zj/ZjPZKMxS8BzA1QxHFURXSpprFItP8iIYNCg6yfbO69Y.cache +1 -0
  157. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/Zp/Zpsgmz0pdcpEUMODH-KOoEAJu0RLiNBG5_id1Nf4Vro.cache +0 -0
  158. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/_G/_GwD5pS-87WWo17f6dUcFYGFT8h6uDWR6QdHajFQ050.cache +1 -0
  159. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/aa/aaHS7n54GBP_AiELufudftqA7C4tZhFBH9VGYdybJr8.cache +2 -0
  160. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/aq/aqjR2hhB4hrgzOzUkhuiAL1DPqVmVI4OsnJb8KyCpRI.cache +1 -0
  161. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/bS/bS7RTBMfq7yErvNUrJroVgliHjy91XOcgiXzD50OvvQ.cache +0 -0
  162. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/c9/c9YydpmE9rI8VeQ4sVqd5JrA1VSEFGGzpuMBUSrAGac.cache +0 -0
  163. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/de/dep71WPFUs1sHIqTVNqe1rFl1LFWoNyCEoVy0n6nTTg.cache +0 -0
  164. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/eQ/eQxzX_D16-XyOt1WTkYEC0qDvRbjXcCgQgnd9pBrg7o.cache +1 -0
  165. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/fs/fsOGJq1Cf6bkAY-rQw_0-E3_SR3wCq32URYNGrkpra8.cache +1 -0
  166. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/gF/gFlNnL_JJ9wEwdiM694Q0NJO7dBi7x3O2kyUIIZOydY.cache +1 -0
  167. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/gu/guDotVUAVpm_e8AAnaLB25fL5q9nVvbnd5DFP2BxmAQ.cache +0 -0
  168. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/h3/h3iZNjBA2CDMexgKNJ4fSFfDiZ_37c72HncCttwZ4q0.cache +1 -0
  169. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/he/heptoj4xFW23bqbGAnQ2g6MsS3OKgswQZOu4EFQA9CE.cache +1 -0
  170. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/kN/kNQUVmgZpBoZh9oC57J3qRmnvFOb8zfDeJWar6cPJFM.cache +1 -0
  171. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/km/km1UJe7Uvz3cE03ctzec3Mpcow_vgKO36rq50_Szy3o.cache +5 -0
  172. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/kz/kzw210ITXFWNFV8kw5e-_kRlpS48lGotSQWKPlUfMJ4.cache +0 -0
  173. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/ml/mlRB5mvsqzeYz3r37_UHdnW4NOillPXmunrGdwZYTHA.cache +0 -0
  174. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -0
  175. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/nx/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -0
  176. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/oU/oU63Z9l_0IaXAW3TtHWxMULUMeuVLfhm4JTQmjJZrWU.cache +0 -0
  177. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/p8/p8ScAOn0EywLQE0ZoyA5zwrJlr4BIt67RbiYm8jsJMY.cache +1 -0
  178. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/pH/pHU4zRTrCWZeiDw5r9Sx1F_edVOO_yCGQXumtTI04to.cache +1 -0
  179. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/pI/pImLE-1HdM_Pm_YDztsV-98V1_qngUx98EVI_90rD0I.cache +1 -0
  180. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/pb/pb0V-IHbOTzmTuDDHO7dn8kl3G4RWqXYY1-Gtuklh-M.cache +1 -0
  181. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/q9/q9zC8RrLhOO1dVXJ3fZqc9dSbshhjSpsDQxh5MpbnDA.cache +0 -0
  182. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/qP/qPmv5snMrDw830S6hSICDcnIy7kVEWoFKXhGKT38lG4.cache +0 -0
  183. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/rF/rF2vahiCQKUhJ8McEG0p8B7csWsz-dL13EQ7r2APOxc.cache +1 -0
  184. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/rn/rnjUJtM3qyEybb7S3NaVbV36OvY6ulGzqxgvp6vtkW0.cache +1 -0
  185. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/s8/s85RambnXGg0AXRuWcCg0nv0_yQuuimoB-efYJZXR_g.cache +0 -0
  186. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/sS/sSg6UsW5PPi591GTK35btFew1r3_HpbNHoyZv3vZ_HY.cache +1 -0
  187. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/sW/sWkhnUHFHtFl9YPE6ipfrFL8zC0XPcgjPpwKYIiLGmQ.cache +0 -0
  188. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/s_/s_Kwboiht6NBnTgNZxLOjhdTdW5OETSG1i9v_nYwTbg.cache +0 -0
  189. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/sk/skhQpKGMHfNuU9HmJ5SsawJxYVAfktwxv24N4uNMrfc.cache +0 -0
  190. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/t3/t39F_1zIFMdWiKVUNJyhWOOnP8Lgr6AD5R1HWdVYwbU.cache +0 -0
  191. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/t_/t_jrBzlnaAwG3v7X5kQsHXmVKIL167gvY-CegXdW-38.cache +1 -0
  192. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/wq/wq2DrniT-R28eVCkWJ2LyZjvT8phxRe31mas90YVz2M.cache +0 -0
  193. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/x7/x7PYh8DJvPykcEqpVab2vcY9-GFz-3cqtoMlRAu94Uc.cache +0 -0
  194. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/yO/yO6BxW_KpdFMPjQgywUZXxLvdVM639GnboZKUb3K7kA.cache +1 -0
  195. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/yj/yjqd7Lagqg4Ar_2z5oQo--OO15mhsi97lixJZbk_xrw.cache +0 -0
  196. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/z6/z6juZG91PfdGTEhEife_MlutAwyoheFYa52JtbCUvBM.cache +0 -0
  197. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/zh/zhmfmdnnow0QqwfT_7IXfN-FAU8qAMm03N7XQjFct6E.cache +1 -0
  198. data/test/apps/rails5-activerecord/tmp/cache/assets/sprockets/v3.0/zz/zzyY0k_acKQ2rB0GJcjv6jioH5c2iq-jMM_qIhbfdnI.cache +0 -0
  199. data/test/apps/rails5-activerecord/tmp/pids/server.pid +1 -0
  200. data/test/apps/rails5-activerecord/tmp/restart.txt +0 -0
  201. metadata +381 -21
  202. data/lib/groonga/client/rails/fixture.rb +0 -35
  203. data/lib/groonga/client/rails/groonga_server_runner.rb +0 -164
  204. data/lib/groonga/client/searcher/error.rb +0 -37
  205. data/lib/groonga/client/searcher/raw_request.rb +0 -85
  206. data/lib/groonga/client/searcher/select/request.rb +0 -283
  207. data/lib/groonga/client/searcher/select/result_set.rb +0 -117
  208. data/lib/groonga/client/searcher/select.rb +0 -18
  209. data/test/unit/searcher/select/filter_parameter_test.rb +0 -99
  210. data/test/unit/searcher/select/match_columns_parameter_test.rb +0 -59
  211. data/test/unit/searcher/select/output_columns_parameter_test.rb +0 -68
  212. data/test/unit/searcher/select/sortby_parameter_test.rb +0 -63
@@ -0,0 +1,808 @@
1
+  (114.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL PRIMARY KEY)
2
+  (102.2ms) CREATE TABLE "ar_internal_metadata" ("key" varchar NOT NULL PRIMARY KEY, "value" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
3
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4
+ Migrating to CreatePosts (20161212004726)
5
+  (0.1ms) begin transaction
6
+  (0.3ms) CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "body" text, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
7
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20161212004726"]]
8
+  (102.0ms) commit transaction
9
+ ActiveRecord::InternalMetadata Load (0.3ms) SELECT "ar_internal_metadata".* FROM "ar_internal_metadata" WHERE "ar_internal_metadata"."key" = ? LIMIT ? [["key", :environment], ["LIMIT", 1]]
10
+  (0.3ms) begin transaction
11
+ SQL (0.4ms) INSERT INTO "ar_internal_metadata" ("key", "value", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["key", "environment"], ["value", "development"], ["created_at", 2016-12-12 14:58:52 UTC], ["updated_at", 2016-12-12 14:58:52 UTC]]
12
+  (81.5ms) commit transaction
13
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
14
+ Started GET "/" for ::1 at 2016-12-12 23:58:55 +0900
15
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16
+ Processing by Rails::WelcomeController#index as HTML
17
+ Parameters: {"internal"=>true}
18
+ Rendering /var/lib/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
19
+ Rendered /var/lib/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.7ms)
20
+ Completed 200 OK in 12ms (Views: 5.7ms | ActiveRecord: 0.0ms)
21
+
22
+
23
+ Started GET "/posts" for ::1 at 2016-12-12 23:58:59 +0900
24
+ Processing by PostsController#index as HTML
25
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
26
+
27
+
28
+
29
+ NoMethodError (undefined method `search' for PostsSearcher:Class):
30
+
31
+ app/controllers/posts_controller.rb:7:in `index'
32
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
33
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
34
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.2ms)
35
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
36
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
37
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
38
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
39
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.5ms)
40
+ Started GET "/posts" for ::1 at 2016-12-12 23:59:16 +0900
41
+ Processing by PostsController#index as HTML
42
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
43
+
44
+
45
+
46
+ NoMethodError (private method `select' called for PostsSearcher:Class):
47
+
48
+ app/controllers/posts_controller.rb:7:in `index'
49
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
50
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
51
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (5.7ms)
52
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
53
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
54
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
55
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
56
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.6ms)
57
+ Started GET "/posts" for ::1 at 2016-12-13 00:01:34 +0900
58
+ Processing by PostsController#index as HTML
59
+ Completed 500 Internal Server Error in 89ms (ActiveRecord: 0.0ms)
60
+
61
+
62
+
63
+ Groonga::Client::Protocol::WrappedError (Failed to open TCP connection to 127.0.0.1:10041 (Connection refused - connect(2) for "127.0.0.1" port 10041)):
64
+
65
+ app/controllers/posts_controller.rb:17:in `index'
66
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
67
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
68
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.5ms)
69
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
70
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
71
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
72
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
73
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (15.9ms)
74
+ Started GET "/posts" for ::1 at 2016-12-13 00:01:44 +0900
75
+ Processing by PostsController#index as HTML
76
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.0ms)
77
+
78
+
79
+
80
+ Groonga::Client::Request::ErrorResponse (failed to execute: select: -22: <[select][table] invalid name: <posts>>):
81
+
82
+ app/controllers/posts_controller.rb:17:in `index'
83
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
84
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
85
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.1ms)
86
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
87
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
88
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
89
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
90
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.5ms)
91
+ Started GET "/posts" for ::1 at 2016-12-13 00:01:45 +0900
92
+ Processing by PostsController#index as HTML
93
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
94
+
95
+
96
+
97
+ Groonga::Client::Request::ErrorResponse (failed to execute: select: -22: <[select][table] invalid name: <posts>>):
98
+
99
+ app/controllers/posts_controller.rb:17:in `index'
100
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
101
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
102
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.0ms)
103
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
104
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
105
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
106
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
107
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.1ms)
108
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT ? [["LIMIT", 1000]]
109
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT ? [["LIMIT", 1000]]
110
+ Started GET "/posts" for ::1 at 2016-12-13 00:02:06 +0900
111
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
112
+ Processing by PostsController#index as HTML
113
+ Rendering posts/index.html.erb within layouts/application
114
+ Rendered posts/index.html.erb within layouts/application (4.3ms)
115
+ Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
116
+
117
+
118
+
119
+ ActionView::Template::Error (undefined method `each' for #<Groonga::Client::Response::Select:0x0055d06edea370>):
120
+ 12: </thead>
121
+ 13:
122
+ 14: <tbody>
123
+ 15: <% @result_set.each do |record| %>
124
+ 16: <% post = record.souce %>
125
+ 17: <tr>
126
+ 18: <td><%= post.title %></td>
127
+
128
+ app/views/posts/index.html.erb:15:in `_app_views_posts_index_html_erb___67860871454373141_47176851818460'
129
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
130
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
131
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.6ms)
132
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
133
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
134
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
135
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
136
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (15.4ms)
137
+ Started GET "/posts" for ::1 at 2016-12-13 00:02:09 +0900
138
+ Processing by PostsController#index as HTML
139
+ Rendering posts/index.html.erb within layouts/application
140
+ Rendered posts/index.html.erb within layouts/application (2.0ms)
141
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
142
+
143
+
144
+
145
+ ActionView::Template::Error (undefined method `each' for #<Groonga::Client::Response::Select:0x0055d070fcda28>):
146
+ 12: </thead>
147
+ 13:
148
+ 14: <tbody>
149
+ 15: <% @result_set.each do |record| %>
150
+ 16: <% post = record.souce %>
151
+ 17: <tr>
152
+ 18: <td><%= post.title %></td>
153
+
154
+ app/views/posts/index.html.erb:15:in `_app_views_posts_index_html_erb___67860871454373141_47176868584280'
155
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
156
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
157
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.5ms)
158
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
159
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
160
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
161
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
162
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.8ms)
163
+ Started GET "/posts" for ::1 at 2016-12-13 00:02:47 +0900
164
+ Processing by PostsController#index as HTML
165
+ Rendering posts/index.html.erb within layouts/application
166
+ Rendered posts/index.html.erb within layouts/application (0.7ms)
167
+ Completed 200 OK in 705ms (Views: 702.3ms | ActiveRecord: 0.0ms)
168
+
169
+
170
+ Started GET "/posts/new" for ::1 at 2016-12-13 00:02:53 +0900
171
+ Processing by PostsController#new as HTML
172
+ Rendering posts/new.html.erb within layouts/application
173
+ Rendered posts/_form.html.erb (84.5ms)
174
+ Rendered posts/new.html.erb within layouts/application (85.8ms)
175
+ Completed 200 OK in 120ms (Views: 113.4ms | ActiveRecord: 0.5ms)
176
+
177
+
178
+ Started POST "/posts" for ::1 at 2016-12-13 00:03:03 +0900
179
+ Processing by PostsController#create as HTML
180
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"BgzdF9cB4nTMHci4myra91sTYnAYGB0Sf29OWTwQl78koVVQdceO60H8BhGR72e+RufhaBA/Ebgf46scIfJ5pA==", "post"=>{"title"=>"こんにちは!", "body"=>"私の名前は中野です。"}, "commit"=>"Create Post"}
181
+  (0.6ms) begin transaction
182
+ SQL (2.2ms) INSERT INTO "posts" ("title", "body", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "こんにちは!"], ["body", "私の名前は中野です。"], ["created_at", 2016-12-12 15:03:03 UTC], ["updated_at", 2016-12-12 15:03:03 UTC]]
183
+  (117.3ms) commit transaction
184
+ Redirected to http://localhost:3000/posts/1
185
+ Completed 302 Found in 137ms (ActiveRecord: 120.1ms)
186
+
187
+
188
+ Started GET "/posts/1" for ::1 at 2016-12-13 00:03:03 +0900
189
+ Processing by PostsController#show as HTML
190
+ Parameters: {"id"=>"1"}
191
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
192
+ Rendering posts/show.html.erb within layouts/application
193
+ Rendered posts/show.html.erb within layouts/application (0.7ms)
194
+ Completed 200 OK in 26ms (Views: 14.0ms | ActiveRecord: 0.2ms)
195
+
196
+
197
+ Started GET "/posts" for ::1 at 2016-12-13 00:03:10 +0900
198
+ Processing by PostsController#index as HTML
199
+ Rendering posts/index.html.erb within layouts/application
200
+ Rendered posts/index.html.erb within layouts/application (3.5ms)
201
+ Completed 500 Internal Server Error in 9ms (ActiveRecord: 0.0ms)
202
+
203
+
204
+
205
+ ActionView::Template::Error (undefined method `souce' for #<Groonga::Client::Response::Select::Record:0x007fe1e43bb2d0>):
206
+ 13:
207
+ 14: <tbody>
208
+ 15: <% @result_set.records.each do |record| %>
209
+ 16: <% post = record.souce %>
210
+ 17: <tr>
211
+ 18: <td><%= post.title %></td>
212
+ 19: <td><%= post.body %></td>
213
+
214
+ app/views/posts/index.html.erb:16:in `block in _app_views_posts_index_html_erb___67860871454373141_70304086711920'
215
+ app/views/posts/index.html.erb:15:in `each'
216
+ app/views/posts/index.html.erb:15:in `_app_views_posts_index_html_erb___67860871454373141_70304086711920'
217
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
218
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
219
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.8ms)
220
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
221
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
222
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
223
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
224
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.2ms)
225
+ Started GET "/posts" for ::1 at 2016-12-13 00:03:16 +0900
226
+ Processing by PostsController#index as HTML
227
+ Rendering posts/index.html.erb within layouts/application
228
+ Rendered posts/index.html.erb within layouts/application (3.6ms)
229
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
230
+
231
+
232
+
233
+ ActionView::Template::Error (undefined method `source' for #<Groonga::Client::Response::Select::Record:0x0055d0705dd068>
234
+ Did you mean? store):
235
+ 13:
236
+ 14: <tbody>
237
+ 15: <% @result_set.records.each do |record| %>
238
+ 16: <% post = record.source %>
239
+ 17: <tr>
240
+ 18: <td><%= post.title %></td>
241
+ 19: <td><%= post.body %></td>
242
+
243
+ app/views/posts/index.html.erb:16:in `block in _app_views_posts_index_html_erb___67860871454373141_47176863087720'
244
+ app/views/posts/index.html.erb:15:in `each'
245
+ app/views/posts/index.html.erb:15:in `_app_views_posts_index_html_erb___67860871454373141_47176863087720'
246
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
247
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
248
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.8ms)
249
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
250
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
251
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
252
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
253
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.6ms)
254
+ Started GET "/posts" for ::1 at 2016-12-13 00:04:22 +0900
255
+ Processing by PostsController#index as HTML
256
+ Rendering posts/index.html.erb within layouts/application
257
+ Rendered posts/index.html.erb within layouts/application (1.8ms)
258
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
259
+
260
+
261
+
262
+ SyntaxError (/home/kou/work/ruby/groonga-client-rails/test/apps/rails5-activerecord/app/views/posts/index.html.erb:16: syntax error, unexpected '.'):
263
+
264
+ app/views/posts/index.html.erb:16: syntax error, unexpected '.'
265
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
266
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
267
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.9ms)
268
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
269
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
270
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
271
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
272
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.4ms)
273
+ Started GET "/posts" for ::1 at 2016-12-13 00:04:27 +0900
274
+ Processing by PostsController#index as HTML
275
+ Rendering posts/index.html.erb within layouts/application
276
+ Rendered posts/index.html.erb within layouts/application (4.3ms)
277
+ Completed 500 Internal Server Error in 8ms (ActiveRecord: 0.0ms)
278
+
279
+
280
+
281
+ ActionView::Template::Error (undefined method `source' for #<Groonga::Client::Response::Select::Record:0x0055d070f93850>
282
+ Did you mean? store):
283
+ 14: <tbody>
284
+ 15: <% @result_set.records.each do |record| %>
285
+ 16: <% p record %>
286
+ 17: <% post = record.source %>
287
+ 18: <tr>
288
+ 19: <td><%= post.title %></td>
289
+ 20: <td><%= post.body %></td>
290
+
291
+ app/views/posts/index.html.erb:17:in `block in _app_views_posts_index_html_erb___67860871454373141_47176868444140'
292
+ app/views/posts/index.html.erb:15:in `each'
293
+ app/views/posts/index.html.erb:15:in `_app_views_posts_index_html_erb___67860871454373141_47176868444140'
294
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
295
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
296
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.2ms)
297
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
298
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
299
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
300
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
301
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.7ms)
302
+ Started GET "/posts" for ::1 at 2016-12-13 00:05:03 +0900
303
+ Processing by PostsController#index as HTML
304
+ Rendering posts/index.html.erb within layouts/application
305
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
306
+ Rendered posts/index.html.erb within layouts/application (3.0ms)
307
+ Completed 200 OK in 20ms (Views: 16.5ms | ActiveRecord: 0.2ms)
308
+
309
+
310
+ Started GET "/posts" for ::1 at 2016-12-13 00:06:01 +0900
311
+ Processing by PostsController#index as HTML
312
+ Rendering posts/index.html.erb within layouts/application
313
+ Rendered posts/index.html.erb within layouts/application (9.1ms)
314
+ Completed 500 Internal Server Error in 20ms (ActiveRecord: 0.0ms)
315
+
316
+
317
+
318
+ ActionView::Template::Error (undefined method `source' for #<Groonga::Client::Response::Select::Record:0x0055d0713fb410>
319
+ Did you mean? store):
320
+ 13:
321
+ 14: <tbody>
322
+ 15: <% @result_set.records.each do |record| %>
323
+ 16: <% post = record.source %>
324
+ 17: <tr>
325
+ 18: <td><%= post.title %></td>
326
+ 19: <td><%= post.body %></td>
327
+
328
+ app/views/posts/index.html.erb:16:in `block in _app_views_posts_index_html_erb___67860871454373141_47176870733640'
329
+ app/views/posts/index.html.erb:15:in `each'
330
+ app/views/posts/index.html.erb:15:in `_app_views_posts_index_html_erb___67860871454373141_47176870733640'
331
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
332
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
333
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.5ms)
334
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
335
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
336
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
337
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
338
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.9ms)
339
+ Started GET "/posts" for ::1 at 2016-12-13 00:06:09 +0900
340
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
341
+ Processing by PostsController#index as HTML
342
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
343
+ Rendering posts/index.html.erb within layouts/application
344
+ Rendered posts/index.html.erb within layouts/application (4.9ms)
345
+ Completed 200 OK in 164ms (Views: 145.6ms | ActiveRecord: 0.6ms)
346
+
347
+
348
+ Started GET "/posts" for ::1 at 2016-12-13 00:07:04 +0900
349
+ Processing by PostsController#index as HTML
350
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
351
+ Rendering posts/index.html.erb within layouts/application
352
+ Rendered posts/index.html.erb within layouts/application (0.7ms)
353
+ Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 0.3ms)
354
+
355
+
356
+ Started GET "/posts" for ::1 at 2016-12-13 00:16:17 +0900
357
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
358
+ Processing by PostsController#index as HTML
359
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
360
+ Rendering posts/index.html.erb within layouts/application
361
+ Rendered posts/index.html.erb within layouts/application (5.5ms)
362
+ Completed 200 OK in 162ms (Views: 143.7ms | ActiveRecord: 0.4ms)
363
+
364
+
365
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-13 00:16:22 +0900
366
+ Processing by PostsController#index as HTML
367
+ Parameters: {"query"=>"中野"}
368
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
369
+ Rendering posts/index.html.erb within layouts/application
370
+ Rendered posts/index.html.erb within layouts/application (0.7ms)
371
+ Completed 200 OK in 42ms (Views: 10.2ms | ActiveRecord: 0.3ms)
372
+
373
+
374
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-13 00:16:36 +0900
375
+ Processing by PostsController#index as HTML
376
+ Parameters: {"query"=>"中野"}
377
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
378
+ Rendering posts/index.html.erb within layouts/application
379
+ Rendered posts/index.html.erb within layouts/application (1.3ms)
380
+ Completed 200 OK in 32ms (Views: 18.1ms | ActiveRecord: 1.3ms)
381
+
382
+
383
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-13 00:16:46 +0900
384
+ Processing by PostsController#index as HTML
385
+ Parameters: {"query"=>"中野"}
386
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
387
+ Rendering posts/index.html.erb within layouts/application
388
+ Rendered posts/index.html.erb within layouts/application (1.1ms)
389
+ Completed 200 OK in 25ms (Views: 13.3ms | ActiveRecord: 0.9ms)
390
+
391
+
392
+ Started GET "/.mypage" for ::1 at 2016-12-21 17:14:53 +0900
393
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
394
+
395
+ ActionController::RoutingError (No route matches [GET] "/.mypage"):
396
+
397
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
398
+ web-console (3.4.0) lib/web_console/middleware.rb:135:in `call_app'
399
+ web-console (3.4.0) lib/web_console/middleware.rb:28:in `block in call'
400
+ web-console (3.4.0) lib/web_console/middleware.rb:18:in `catch'
401
+ web-console (3.4.0) lib/web_console/middleware.rb:18:in `call'
402
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
403
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
404
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
405
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
406
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
407
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
408
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
409
+ sprockets-rails (3.2.0) lib/sprockets/rails/quiet_assets.rb:13:in `call'
410
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
411
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
412
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
413
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
414
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
415
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
416
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
417
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
418
+ puma (3.6.2) lib/puma/configuration.rb:225:in `call'
419
+ puma (3.6.2) lib/puma/server.rb:578:in `handle_request'
420
+ puma (3.6.2) lib/puma/server.rb:415:in `process_client'
421
+ puma (3.6.2) lib/puma/server.rb:275:in `block in run'
422
+ puma (3.6.2) lib/puma/thread_pool.rb:116:in `block in spawn_thread'
423
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
424
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
425
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
426
+ Rendered collection of /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [8 times] (5.5ms)
427
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (18.6ms)
428
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
429
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
430
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.0ms)
431
+ Started GET "/" for ::1 at 2016-12-21 17:28:57 +0900
432
+ Processing by Rails::WelcomeController#index as HTML
433
+ Parameters: {"internal"=>true}
434
+ Rendering /var/lib/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
435
+ Rendered /var/lib/gems/2.3.0/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (5.4ms)
436
+ Completed 200 OK in 20ms (Views: 7.2ms | ActiveRecord: 0.0ms)
437
+
438
+
439
+ Started GET "/posts" for ::1 at 2016-12-21 17:29:03 +0900
440
+ Processing by PostsController#index as HTML
441
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
442
+
443
+
444
+
445
+ Groonga::Client::Request::ErrorResponse (failed to execute: select: -22: <[select][table] invalid name: <posts>>):
446
+
447
+ app/controllers/posts_controller.rb:24:in `index'
448
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
449
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
450
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.2ms)
451
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
452
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
453
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
454
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
455
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.9ms)
456
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" ORDER BY "posts"."id" ASC LIMIT ? [["LIMIT", 1000]]
457
+ Started GET "/posts" for ::1 at 2016-12-21 17:29:21 +0900
458
+ Processing by PostsController#index as HTML
459
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
460
+ Rendering posts/index.html.erb within layouts/application
461
+ Rendered posts/index.html.erb within layouts/application (1.4ms)
462
+ Completed 200 OK in 261ms (Views: 232.8ms | ActiveRecord: 1.5ms)
463
+
464
+
465
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-21 17:29:27 +0900
466
+ Processing by PostsController#index as HTML
467
+ Parameters: {"query"=>"中野"}
468
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
469
+ Rendering posts/index.html.erb within layouts/application
470
+ Rendered posts/index.html.erb within layouts/application (3.3ms)
471
+ Completed 200 OK in 28ms (Views: 24.4ms | ActiveRecord: 0.3ms)
472
+
473
+
474
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:29:34 +0900
475
+ Processing by PostsController#index as HTML
476
+ Parameters: {"query"=>"こん"}
477
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
478
+ Rendering posts/index.html.erb within layouts/application
479
+ Rendered posts/index.html.erb within layouts/application (1.7ms)
480
+ Completed 200 OK in 43ms (Views: 38.4ms | ActiveRecord: 0.1ms)
481
+
482
+
483
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:30:31 +0900
484
+ Processing by PostsController#index as HTML
485
+ Parameters: {"query"=>"こん"}
486
+ Post Load (0.7ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
487
+ Rendering posts/index.html.erb within layouts/application
488
+ Rendered posts/index.html.erb within layouts/application (2.7ms)
489
+ Completed 200 OK in 72ms (Views: 63.0ms | ActiveRecord: 0.7ms)
490
+
491
+
492
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:30:32 +0900
493
+ Processing by PostsController#index as HTML
494
+ Parameters: {"query"=>"こん"}
495
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
496
+ Rendering posts/index.html.erb within layouts/application
497
+ Rendered posts/index.html.erb within layouts/application (0.7ms)
498
+ Completed 200 OK in 14ms (Views: 9.9ms | ActiveRecord: 0.1ms)
499
+
500
+
501
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:31:01 +0900
502
+ Processing by PostsController#index as HTML
503
+ Parameters: {"query"=>"こん"}
504
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
505
+ Rendering posts/index.html.erb within layouts/application
506
+ Rendered posts/index.html.erb within layouts/application (1.0ms)
507
+ Completed 200 OK in 22ms (Views: 12.6ms | ActiveRecord: 0.9ms)
508
+
509
+
510
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:31:21 +0900
511
+ Processing by PostsController#index as HTML
512
+ Parameters: {"query"=>"こん"}
513
+ Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
514
+ Rendering posts/index.html.erb within layouts/application
515
+ Rendered posts/index.html.erb within layouts/application (2.3ms)
516
+ Completed 200 OK in 32ms (Views: 23.9ms | ActiveRecord: 0.6ms)
517
+
518
+
519
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:31:26 +0900
520
+ Processing by PostsController#index as HTML
521
+ Parameters: {"query"=>"こん"}
522
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
523
+ Rendering posts/index.html.erb within layouts/application
524
+ Rendered posts/index.html.erb within layouts/application (1.0ms)
525
+ Completed 200 OK in 17ms (Views: 13.8ms | ActiveRecord: 0.1ms)
526
+
527
+
528
+ Started GET "/posts?query=%E3%81%93%E3%82%93" for ::1 at 2016-12-21 17:32:17 +0900
529
+ Processing by PostsController#index as HTML
530
+ Parameters: {"query"=>"こん"}
531
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
532
+ Rendering posts/index.html.erb within layouts/application
533
+ Rendered posts/index.html.erb within layouts/application (2.8ms)
534
+ Completed 200 OK in 42ms (Views: 31.7ms | ActiveRecord: 0.4ms)
535
+
536
+
537
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-21 17:32:22 +0900
538
+ Processing by PostsController#index as HTML
539
+ Parameters: {"query"=>"中野"}
540
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
541
+ Rendering posts/index.html.erb within layouts/application
542
+ Rendered posts/index.html.erb within layouts/application (1.1ms)
543
+ Completed 200 OK in 23ms (Views: 17.5ms | ActiveRecord: 0.4ms)
544
+
545
+
546
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-21 17:32:38 +0900
547
+ Processing by PostsController#index as HTML
548
+ Parameters: {"query"=>"中野"}
549
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
550
+ Rendering posts/index.html.erb within layouts/application
551
+ Rendered posts/index.html.erb within layouts/application (107.8ms)
552
+ Completed 500 Internal Server Error in 113ms (ActiveRecord: 0.2ms)
553
+
554
+
555
+
556
+ ActionView::Template::Error (undefined local variable or method `documents_path' for #<#<Class:0x007f6115b4f2f8>:0x007f6115d16d70>):
557
+ 4:
558
+ 5: <p><%= @result_set.n_hits %> records</p>
559
+ 6:
560
+ 7: <%= form_tag(documents_path, method: "get") do %>
561
+ 8: <%= search_field_tag "query", params["query"] %>
562
+ 9: <%= submit_tag "Search" %>
563
+ 10: <% end %>
564
+
565
+ app/views/posts/index.html.erb:7:in `_app_views_posts_index_html_erb___1020311010432945652_70027477302640'
566
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
567
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
568
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.8ms)
569
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
570
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
571
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
572
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
573
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.3ms)
574
+ Started GET "/posts?query=%E4%B8%AD%E9%87%8E" for ::1 at 2016-12-21 17:32:44 +0900
575
+ Processing by PostsController#index as HTML
576
+ Parameters: {"query"=>"中野"}
577
+ Post Load (0.6ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
578
+ Rendering posts/index.html.erb within layouts/application
579
+ Rendered posts/index.html.erb within layouts/application (4.0ms)
580
+ Completed 200 OK in 28ms (Views: 22.5ms | ActiveRecord: 0.6ms)
581
+
582
+
583
+ Started GET "/posts?utf8=%E2%9C%93&query=%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF&commit=Search" for ::1 at 2016-12-21 17:32:52 +0900
584
+ Processing by PostsController#index as HTML
585
+ Parameters: {"utf8"=>"✓", "query"=>"こんにちは", "commit"=>"Search"}
586
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
587
+ Rendering posts/index.html.erb within layouts/application
588
+ Rendered posts/index.html.erb within layouts/application (3.1ms)
589
+ Completed 200 OK in 24ms (Views: 19.5ms | ActiveRecord: 0.4ms)
590
+
591
+
592
+ Started GET "/posts?utf8=%E2%9C%93&query=%E3%81%93%E3%82%93%E3%81%AB%E3%81%A1%E3%81%AF&commit=Search" for ::1 at 2016-12-21 17:35:46 +0900
593
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
594
+ Processing by PostsController#index as HTML
595
+ Parameters: {"utf8"=>"✓", "query"=>"こんにちは", "commit"=>"Search"}
596
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
597
+ Rendering posts/index.html.erb within layouts/application
598
+ Rendered posts/index.html.erb within layouts/application (28.1ms)
599
+ Completed 200 OK in 193ms (Views: 173.2ms | ActiveRecord: 0.4ms)
600
+
601
+
602
+ Started GET "/posts/new" for ::1 at 2016-12-21 17:36:04 +0900
603
+ Processing by PostsController#new as HTML
604
+ Rendering posts/new.html.erb within layouts/application
605
+ Rendered posts/_form.html.erb (13.6ms)
606
+ Rendered posts/new.html.erb within layouts/application (14.8ms)
607
+ Completed 200 OK in 30ms (Views: 28.9ms | ActiveRecord: 0.0ms)
608
+
609
+
610
+ Started POST "/posts" for ::1 at 2016-12-21 17:36:12 +0900
611
+ Processing by PostsController#create as HTML
612
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"sgEaqDJlGxYQtWogks7t+zsRTU9rccgEgTavdP7I0iDeyzXrpdWqw+XRI9uLupMy2amGftPLS4G9tukzkHz98g==", "post"=>{"title"=>"ふふふ", "body"=>"どうでしょう!"}, "commit"=>"Create Post"}
613
+  (0.3ms) begin transaction
614
+ SQL (0.2ms) INSERT INTO "posts" ("title", "body", "created_at", "updated_at") VALUES (?, ?, ?, ?) [["title", "ふふふ"], ["body", "どうでしょう!"], ["created_at", 2016-12-21 08:36:12 UTC], ["updated_at", 2016-12-21 08:36:12 UTC]]
615
+  (164.6ms) commit transaction
616
+ Redirected to http://localhost:3000/posts/2
617
+ Completed 302 Found in 171ms (ActiveRecord: 165.1ms)
618
+
619
+
620
+ Started GET "/posts/2" for ::1 at 2016-12-21 17:36:12 +0900
621
+ Processing by PostsController#show as HTML
622
+ Parameters: {"id"=>"2"}
623
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
624
+ Rendering posts/show.html.erb within layouts/application
625
+ Rendered posts/show.html.erb within layouts/application (0.6ms)
626
+ Completed 200 OK in 14ms (Views: 10.9ms | ActiveRecord: 0.2ms)
627
+
628
+
629
+ Started GET "/posts/2/edit" for ::1 at 2016-12-21 17:36:14 +0900
630
+ Processing by PostsController#edit as HTML
631
+ Parameters: {"id"=>"2"}
632
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
633
+ Rendering posts/edit.html.erb within layouts/application
634
+ Rendered posts/_form.html.erb (1.8ms)
635
+ Rendered posts/edit.html.erb within layouts/application (3.0ms)
636
+ Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.1ms)
637
+
638
+
639
+ Started GET "/posts" for ::1 at 2016-12-21 17:36:15 +0900
640
+ Processing by PostsController#index as HTML
641
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
642
+ Rendering posts/index.html.erb within layouts/application
643
+ Rendered posts/index.html.erb within layouts/application (3.2ms)
644
+ Completed 200 OK in 20ms (Views: 14.7ms | ActiveRecord: 0.4ms)
645
+
646
+
647
+ Started GET "/posts" for ::1 at 2016-12-21 17:36:25 +0900
648
+ Processing by PostsController#index as HTML
649
+ Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.0ms)
650
+
651
+
652
+
653
+ ArgumentError (wrong number of arguments (given 2, expected 1)):
654
+
655
+ app/controllers/posts_controller.rb:24:in `index'
656
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
657
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
658
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.2ms)
659
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
660
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
661
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
662
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
663
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.8ms)
664
+ Started GET "/posts" for ::1 at 2016-12-21 17:36:29 +0900
665
+ Processing by PostsController#index as HTML
666
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.0ms)
667
+
668
+
669
+
670
+ ArgumentError (unknown keyword: limit):
671
+
672
+ app/controllers/posts_controller.rb:24:in `index'
673
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
674
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
675
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
676
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
677
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
678
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
679
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
680
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.2ms)
681
+ Started GET "/posts" for ::1 at 2016-12-21 17:36:33 +0900
682
+ Processing by PostsController#index as HTML
683
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
684
+ Rendering posts/index.html.erb within layouts/application
685
+ Rendered posts/index.html.erb within layouts/application (19.1ms)
686
+ Completed 200 OK in 47ms (Views: 33.7ms | ActiveRecord: 1.1ms)
687
+
688
+
689
+ Started GET "/posts?page=2" for ::1 at 2016-12-21 17:36:38 +0900
690
+ Processing by PostsController#index as HTML
691
+ Parameters: {"page"=>"2"}
692
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 1], ["LIMIT", 1]]
693
+ Rendering posts/index.html.erb within layouts/application
694
+ Rendered posts/index.html.erb within layouts/application (40.6ms)
695
+ Completed 200 OK in 63ms (Views: 59.3ms | ActiveRecord: 0.2ms)
696
+
697
+
698
+ Started GET "/posts" for ::1 at 2016-12-21 17:36:40 +0900
699
+ Processing by PostsController#index as HTML
700
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
701
+ Rendering posts/index.html.erb within layouts/application
702
+ Rendered posts/index.html.erb within layouts/application (7.4ms)
703
+ Completed 200 OK in 24ms (Views: 20.7ms | ActiveRecord: 0.4ms)
704
+
705
+
706
+ Started GET "/posts" for ::1 at 2016-12-21 17:37:03 +0900
707
+ Processing by PostsController#index as HTML
708
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
709
+ Rendering posts/index.html.erb within layouts/application
710
+ Rendered posts/index.html.erb within layouts/application (60.4ms)
711
+ Completed 500 Internal Server Error in 73ms (ActiveRecord: 1.0ms)
712
+
713
+
714
+
715
+ ActionView::Template::Error (undefined method `page_info' for #<#<Class:0x007fca6ccabe60>:0x007fca6cca9ae8>):
716
+ 3: <h1>Posts</h1>
717
+ 4:
718
+ 5: <p><%= @result_set.n_hits %> records</p>
719
+ 6: <%= page_info(@result_set) %>
720
+ 7:
721
+ 8: <%= form_tag(posts_path, method: "get") do %>
722
+ 9: <%= search_field_tag "query", params["query"] %>
723
+
724
+ app/views/posts/index.html.erb:6:in `_app_views_posts_index_html_erb___345720712053629378_70253692700580'
725
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
726
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
727
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.5ms)
728
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
729
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
730
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
731
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
732
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.9ms)
733
+ Started GET "/posts" for ::1 at 2016-12-21 17:37:49 +0900
734
+ Processing by PostsController#index as HTML
735
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
736
+ Rendering posts/index.html.erb within layouts/application
737
+ Rendered posts/index.html.erb within layouts/application (5.7ms)
738
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.3ms)
739
+
740
+
741
+
742
+ ActionView::Template::Error (undefined method `entry_name' for #<Groonga::Client::Response::Select:0x007fca6e077458>
743
+ Did you mean? entries):
744
+ 3: <h1>Posts</h1>
745
+ 4:
746
+ 5: <p><%= @result_set.n_hits %> records</p>
747
+ 6: <%= page_entries_info(@result_set) %>
748
+ 7:
749
+ 8: <%= form_tag(posts_path, method: "get") do %>
750
+ 9: <%= search_field_tag "query", params["query"] %>
751
+
752
+ app/views/posts/index.html.erb:6:in `_app_views_posts_index_html_erb___345720712053629378_70253702938020'
753
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
754
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
755
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (9.1ms)
756
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
757
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
758
+ Rendering /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
759
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.4ms)
760
+ Rendered /var/lib/gems/2.3.0/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.4ms)
761
+ Started GET "/posts" for ::1 at 2016-12-21 17:38:04 +0900
762
+ Processing by PostsController#index as HTML
763
+ Post Load (0.3ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
764
+ Rendering posts/index.html.erb within layouts/application
765
+ Rendered posts/index.html.erb within layouts/application (3.3ms)
766
+ Completed 200 OK in 17ms (Views: 13.9ms | ActiveRecord: 0.3ms)
767
+
768
+
769
+ Started GET "/posts" for ::1 at 2016-12-21 17:38:13 +0900
770
+ Processing by PostsController#index as HTML
771
+ Post Load (0.4ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
772
+ Rendering posts/index.html.erb within layouts/application
773
+ Rendered posts/index.html.erb within layouts/application (5.9ms)
774
+ Completed 200 OK in 31ms (Views: 23.6ms | ActiveRecord: 0.4ms)
775
+
776
+
777
+ Started GET "/posts" for ::1 at 2016-12-21 17:38:19 +0900
778
+ Processing by PostsController#index as HTML
779
+ Post Load (0.9ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
780
+ Rendering posts/index.html.erb within layouts/application
781
+ Rendered posts/index.html.erb within layouts/application (6.2ms)
782
+ Completed 200 OK in 37ms (Views: 28.1ms | ActiveRecord: 0.9ms)
783
+
784
+
785
+ Started GET "/posts" for ::1 at 2016-12-21 17:38:53 +0900
786
+ Processing by PostsController#index as HTML
787
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
788
+ Rendering posts/index.html.erb within layouts/application
789
+ Rendered posts/index.html.erb within layouts/application (3.8ms)
790
+ Completed 200 OK in 29ms (Views: 17.2ms | ActiveRecord: 0.6ms)
791
+
792
+
793
+ Started GET "/posts" for ::1 at 2016-12-21 17:39:00 +0900
794
+ Processing by PostsController#index as HTML
795
+ Post Load (0.2ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" IN (2, 1)
796
+ Rendering posts/index.html.erb within layouts/application
797
+ Rendered posts/index.html.erb within layouts/application (3.7ms)
798
+ Completed 200 OK in 30ms (Views: 18.4ms | ActiveRecord: 0.9ms)
799
+
800
+
801
+ Started GET "/posts" for ::1 at 2016-12-21 17:39:06 +0900
802
+ Processing by PostsController#index as HTML
803
+ Post Load (0.1ms) SELECT "posts".* FROM "posts" WHERE "posts"."id" = ? LIMIT ? [["id", 2], ["LIMIT", 1]]
804
+ Rendering posts/index.html.erb within layouts/application
805
+ Rendered posts/index.html.erb within layouts/application (7.6ms)
806
+ Completed 200 OK in 33ms (Views: 22.0ms | ActiveRecord: 0.7ms)
807
+
808
+