bootstrap3_autocomplete_input 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (299) hide show
  1. checksums.yaml +4 -4
  2. data/MIT-LICENSE +20 -20
  3. data/Rakefile +32 -32
  4. data/app/inputs/autocomplete_input.rb +76 -76
  5. data/lib/assets/javascripts/bootstrap3-autocomplete-input.js +137 -137
  6. data/lib/assets/javascripts/bootstrap3-typeahead.js +476 -476
  7. data/lib/bootstrap3_autocomplete_input.rb +23 -23
  8. data/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb +73 -73
  9. data/lib/bootstrap3_autocomplete_input/orm.rb +6 -6
  10. data/lib/bootstrap3_autocomplete_input/orm/active_record.rb +90 -62
  11. data/lib/bootstrap3_autocomplete_input/orm/mongo_mapper.rb +30 -30
  12. data/lib/bootstrap3_autocomplete_input/orm/mongoid.rb +44 -44
  13. data/lib/bootstrap3_autocomplete_input/rails/engine.rb +15 -15
  14. data/lib/bootstrap3_autocomplete_input/simple_form_inputs.rb +77 -77
  15. data/lib/bootstrap3_autocomplete_input/version.rb +3 -3
  16. data/lib/tasks/bootstrap3_autocomplete_input_tasks.rake +4 -4
  17. data/test/bootstrap3_autocomplete_input_test.rb +7 -7
  18. data/test/dummy/README.rdoc +28 -28
  19. data/test/dummy/Rakefile +6 -6
  20. data/test/dummy/app/assets/javascripts/application.js +18 -18
  21. data/test/dummy/app/assets/stylesheets/application.css.scss +3 -3
  22. data/test/dummy/app/controllers/application_controller.rb +5 -5
  23. data/test/dummy/app/controllers/clients_controller.rb +66 -66
  24. data/test/dummy/app/controllers/orders_controller.rb +62 -62
  25. data/test/dummy/app/helpers/application_helper.rb +2 -2
  26. data/test/dummy/app/helpers/clients_helper.rb +2 -2
  27. data/test/dummy/app/helpers/orders_helper.rb +2 -2
  28. data/test/dummy/app/models/client.rb +3 -3
  29. data/test/dummy/app/models/order.rb +3 -3
  30. data/test/dummy/app/views/clients/_form.html.erb +18 -18
  31. data/test/dummy/app/views/clients/edit.html.erb +6 -6
  32. data/test/dummy/app/views/clients/index.html.erb +24 -24
  33. data/test/dummy/app/views/clients/new.html.erb +5 -5
  34. data/test/dummy/app/views/clients/show.html.erb +4 -4
  35. data/test/dummy/app/views/layouts/application.html.erb +14 -14
  36. data/test/dummy/app/views/orders/_form.html.erb +58 -58
  37. data/test/dummy/app/views/orders/edit.html.erb +6 -6
  38. data/test/dummy/app/views/orders/index.html.erb +23 -23
  39. data/test/dummy/app/views/orders/new.html.erb +5 -5
  40. data/test/dummy/app/views/orders/show.html.erb +4 -4
  41. data/test/dummy/bin/bundle +3 -3
  42. data/test/dummy/bin/rails +4 -4
  43. data/test/dummy/bin/rake +4 -4
  44. data/test/dummy/config.ru +4 -4
  45. data/test/dummy/config/application.rb +25 -25
  46. data/test/dummy/config/boot.rb +5 -5
  47. data/test/dummy/config/database.yml +25 -25
  48. data/test/dummy/config/environment.rb +5 -5
  49. data/test/dummy/config/environments/development.rb +37 -37
  50. data/test/dummy/config/environments/production.rb +78 -78
  51. data/test/dummy/config/environments/test.rb +39 -39
  52. data/test/dummy/config/initializers/assets.rb +8 -8
  53. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -7
  54. data/test/dummy/config/initializers/cookies_serializer.rb +2 -2
  55. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -4
  56. data/test/dummy/config/initializers/inflections.rb +16 -16
  57. data/test/dummy/config/initializers/mime_types.rb +4 -4
  58. data/test/dummy/config/initializers/session_store.rb +3 -3
  59. data/test/dummy/config/initializers/simple_form.rb +166 -166
  60. data/test/dummy/config/initializers/simple_form_bootstrap.rb +136 -136
  61. data/test/dummy/config/initializers/wrap_parameters.rb +14 -14
  62. data/test/dummy/config/locales/en.yml +23 -23
  63. data/test/dummy/config/locales/simple_form.en.yml +31 -31
  64. data/test/dummy/config/routes.rb +67 -67
  65. data/test/dummy/config/secrets.yml +22 -22
  66. data/test/dummy/db/migrate/20141224031843_create_clients.rb +10 -10
  67. data/test/dummy/db/migrate/20141224031854_create_orders.rb +12 -12
  68. data/test/dummy/db/migrate/20141224032000_add_client_to_order.rb +6 -6
  69. data/test/dummy/db/schema.rb +30 -30
  70. data/test/dummy/public/404.html +67 -67
  71. data/test/dummy/public/422.html +67 -67
  72. data/test/dummy/public/500.html +66 -66
  73. data/test/dummy/test/controllers/clients_controller_test.rb +49 -49
  74. data/test/dummy/test/controllers/orders_controller_test.rb +49 -49
  75. data/test/dummy/test/fixtures/clients.yml +11 -11
  76. data/test/dummy/test/fixtures/orders.yml +11 -11
  77. data/test/dummy/test/helpers/clients_helper_test.rb +4 -4
  78. data/test/dummy/test/helpers/orders_helper_test.rb +4 -4
  79. data/test/dummy/test/models/client_test.rb +7 -7
  80. data/test/dummy/test/models/order_test.rb +7 -7
  81. data/test/test_helper.rb +16 -16
  82. metadata +52 -486
  83. data/test/dummy/db/development.sqlite3 +0 -0
  84. data/test/dummy/log/development.log +0 -2627
  85. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-mg3cfVFSDhBqP-XzMLP8Dwo1RHblXwbdIZm4HAoTuc.cache +0 -1
  86. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/082UVi_1sOVWVqPnygarA-XSDB6cV7NP4oDu9J-uhxM.cache +0 -2
  87. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0Wm9sjUP5phpz-bcSyYtDJ8OUlF3Er7bzLsUH9luI0k.cache +0 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1OJ54PWRkRuZLp9BRvEbP46vrnFr3ir1wvQcLc8ftcI.cache +0 -3
  89. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1XGjOrpumIescxwYl95_qyLE0lT0f2Aqd9hzf3X2Ph0.cache +0 -2
  90. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2Vvymvw-ArKlWEE9eCR8soxug0U32pBrce9x0et-S0E.cache +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3TuMmRZUa3QpRehDpPSWdLOGr4p_22o3G6QYfOjVcks.cache +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3_UhoV9-saSaapW3bvqBystOFh1ML5l6gwsGNxyzZZQ.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5VlpCU8VdVcyFp0w3VC2TJTsVZtqlKCk2BoET2fT1Fs.cache +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5jl9-TjIonU1XabC4NkgFRCvjf6P-3SZAswo9jeE23w.cache +0 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6pSco-V92AQ--GbyX6wt6FTmW1Rojz3vDGnDoVW3xVc.cache +0 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6vjN9xjdZSKSsXUskAPP9R7UrmT1wzmGmN0Idlm1gp8.cache +0 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7RUyWORZuXmYQjgt32wLwDWbijKL0mA9pewx4fBA9rY.cache +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7f6Qq4TzdvRxyc5ckM66Mwle9V0p7Aies1N2uQ8z3iQ.cache +0 -2
  99. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7trESZUdYEuU92IT9rt7G8FN-DH77gsFw7kU3HeURNc.cache +0 -1
  100. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/87aFyQL4cOOlhdxFzvmLFnDF3LNIj1N8Ks16rexpctc.cache +0 -2
  101. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8FTEaiMwyiIYNrhFe4y-Spu31L1d07Yi9e9uvRU0QpA.cache +0 -1
  102. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8RapAgTzItOMZ9TolQUY0M8kb4nTyhzZjlHaFHil8Q4.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8YGvwclY8pAsgGkVLJeB9XhQH5Zv1Yeg1o7cg0mEjdo.cache +0 -2
  104. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8zUcnPDeXuFxmKiRTQgvOurUYRiQ4gRO4YPcyHyVTLs.cache +0 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/90DsKBtMsI5D_C1JMj_bP3H8lvca52ZplB6KF23dRbg.cache +0 -1
  106. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/A0_Xr2l3r9_Oz82aHePa3hcqFOkoGVXGtnrb07dwd3s.cache +0 -1
  107. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AsBUMdWWGdh5lJqDWKcHniKyJk3722WbF2iM2XL6QmE.cache +0 -1
  108. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/B3WeCR_rV2iTTqEZ6_2eXhBzxbWJInsIZHXpqfk6Y_M.cache +0 -1
  109. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Bjhopp-9PvELN3upkFHAI0Uv9rP8AJDRi0yqDv_IwTc.cache +0 -1
  110. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/C32CVY13oEp0mPJVRa5kaLmTI7QloaZ6vCNu62IZ-gY.cache +0 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CxSWaEO-QN1FmFJBC_hQHxMegmhik32Mqantfzl6JIs.cache +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/D4yP3bLk-x0IlcoUyFzwiNBzq_jAkPH49_8IfkptI7o.cache +0 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DIzGmQDCNsDRSIRFVSk4kFublL0D8LeaNFMvgCpNVIU.cache +0 -1
  114. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DPkilqzfaA3umf0MXBcYPywQRXd3rfJxMx8GhcRc7vU.cache +0 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/DeEMv0tVVEn7zD45CKh11V3LklKoGIvPuLE91yOGXOg.cache +0 -2
  116. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EAmyjUi3KjRROjuP0SSp0KiXMYWnMF9WDN3nAbY1BSQ.cache +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ECw8oXwisAngKBewE5LglwfywaX1ZswIulGcEkKFGhY.cache +0 -1
  118. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/EyGjwWjMj6igPpxdMpcG0vEpffIdSEmrx2RLmOUfli8.cache +0 -1
  119. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FEPuoQ0IPdwhbqb3PQkxqxbRV0LVK9ZmBzBGoxa_I00.cache +0 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FoGWpRX7afmu67Jq7r4sf609l79Ntt6CW0d9Ay6gX2U.cache +0 -1
  121. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GBO9pYH-F7fXbaJzq47ogLfLjw5bAnr0f8u-H5KWXFw.cache +0 -1
  122. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GZv7pkbus2LMXx4jrsZRKBJzHNau83xU3EgqNJWDlFA.cache +0 -1
  123. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Gu6_xrJohm7qV8PJyGk0Oxxa16MKGICo8OxIUB56-FE.cache +0 -1
  124. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HxvtLGuzmwxsz89M7vQtB5qTILHWnRpPAQE-IJ3nH0c.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HzyjhR0DQBOd2PaLK1cKafo3QR2tBxWFfRp0KYttDQY.cache +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IIa5NJ3b54gqjXm_r7azOhqQdcJxYpFxEl__yy3R1zY.cache +0 -1
  127. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ILrKhSF0jB_k9rahZdSFyfUGxwHg1MPOqPnU7MQDWhc.cache +0 -1
  128. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IYF5Xr-DDYbL4UVJuO8qta_9-qKMMGDBAkQ94rBIlkQ.cache +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IvZubCuP04pQISsRTpbhkF9pXpkzgstJu9N3nk4flfk.cache +0 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J8E2XbtdYRFzyGGw20KtQ0qLtgg-ymD8PR6dyyPZ21w.cache +0 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JR3sf0ki9amnEgEj1Mokt6SZd41-J7LcZTofu5oUaHI.cache +0 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JSVBjAIvli26KJW3oQWyQpBuv80uoUG7ZXx94c6HPR0.cache +0 -1
  133. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JSfhfWhM1DxhGsiJWJUe5QQkMuWoAcaQCcjxCKLJuSI.cache +0 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JYzvA33zPy65KMWhoYzvXg2BMBZu8nCtFuXAPk93aBI.cache +0 -1
  135. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J_Yyw2ATOsNj-XkBW10o2l1q4WvJhcUz0MVfOBRfIBY.cache +0 -1
  136. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/J_g-Ctv30oacCpYIXEnspJVj5nhwcc1G5gKL8fV5kak.cache +0 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Jd4Iit9GGGNMuaK3o5d4Y_oZqUA3B61LPjTIpZmcjzw.cache +0 -1
  138. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JyWZW92KT7tmNNKXhLWT3qobZsQhRaT2bs-rbcbArYM.cache +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KC0_UN2KcaGc-NR459hIk2QX1iZWkgRDzhzRz3kI1Xk.cache +0 -3
  140. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KItyyjW6QVzn7sxcSs2XLvRaPOtS-iBifPqN4OCS0GY.cache +0 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KZsf2MPGz94sY7B4BiaVKNCA5W4sQCGFVT5qjwTXgN4.cache +0 -2
  142. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LN_0nSezQWSIdU_Uz5kVG91Ym9JhOlQkQHp6zYctnuY.cache +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LWeTLQ8VjhwXeVMQoIp9U_CIEpAL1PdvN_pU33cjJdk.cache +0 -1
  144. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LfdhM5RArodRURrLBHQSiOnzt_vMxWvKmeghn6n9vQw.cache +0 -1
  145. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LrWZNKEUGOCnMSAn6NkLbomPeA5EhjgHO7WXn8Ulxpg.cache +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MMGcng9AbTQMzwlxa1UgG8B8aI9pZI4n9JxUiVNL1U8.cache +0 -1
  147. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MZqvis7D-2gKkdUIU5yp_IJO-D2CWo7Nrd45cY2JNSY.cache +0 -2
  148. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MzEV6fJSpdy62ogdE9ikujeScuKDPU2E78ERuNF4xKo.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/N-JqiFyTPzJTn5hjIL7Ahc7dW2TPHrxhEvANMn5AHhY.cache +0 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/N8L3WZ9ANXrOtFrb_MoORsu6CErBJm-tCdFgnFHBwbg.cache +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NEX1JAF9guTFiVP3YP31jbddxlzkUs0xgpQi2SyoDBc.cache +0 -1
  152. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NgogLyEBrvYGv_tH7utcr_9OSfs_OyLOyfV76RwwRXo.cache +0 -1
  153. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OhVftbcKbSB5zhog5-bu7jcN9wFao3VU98M322u7wqI.cache +0 -2
  154. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OhidgkgVFzwIoiMGWF1B9tRi4Ies9O_vpiD4v7jSxdY.cache +0 -1
  155. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Orn1Yj7AVRbJPKvuBJqXVFnTTv9LKtNwzapG5T34jAw.cache +0 -1
  156. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Os04_CMTZ6F_GmaIG2z5p7yTUvHkl3uZZjIimOAZiY0.cache +0 -1
  157. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OvaolF2YxXFT-gqECgnmB0LiW2i-t6nOY9oTeirHNzQ.cache +0 -1
  158. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P2V-Ovyqm4T0JzasUMA9pCnlsb1Ij4ywZr7UisdC2jw.cache +0 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P2Zq5nKOLCy7FHa0CJ-2v4smLn__DVMlUSqrbWsCZ2g.cache +0 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P6_dsNeHAHAQUsMliBsdafiKgtnFzDmruwAK3Q38pEs.cache +0 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P6neqKcrEsu8ukITrwMd6IKqV-hdBstjb4YXfN1A5RU.cache +0 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PYXQf7HcioPGLdg-FkvFwb9H4M7dpnqxiCxcH6GEEoo.cache +0 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QJZnPy0B78GDW8AHjsmH5Z1kolbJx9M520qO3H1MqFE.cache +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QjeHRInHgH27aKMBz0aChi-sEzwVHxI1Wye66eyDSM0.cache +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/R-htS2rUHlwXbZsOkR_0MDyt_p1AeDZ7M5hthwOTIy0.cache +0 -1
  166. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/R2eKuma6r5T-JYK5aTaUEiQz3bWFarruvXVLzTwW6NM.cache +0 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/REHqXpycn1OKJ0O8Vmmoy54oykoAI3anI5sx644MSYQ.cache +0 -1
  168. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RGDkSsDYa4ramOeJ_xYoXXOWqzPTRPXhbMp-cild_hk.cache +0 -1
  169. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RVPuML7pT8VmCwQJfokwaI4zVfywzNZmDaIbUZKDee4.cache +0 -1
  170. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/S13J0Ops4qBWriffiNoRVqjqVmNp3QOGgkGBmas8Wgs.cache +0 -1
  171. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SYiemk-M5wpk6kxMFaA-dpt6LntbGwlHB1lN100WOkk.cache +0 -1
  172. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SctZ-y_jn60jeJnI5AlkhB3UPkqSJolpZBD7glUL1SI.cache +0 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T9AKQ6uCfcFEigmg-D-wdaVUSZQxbW9TR9XJR_BenEI.cache +0 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TDb22JK3GENwB0yF60qoEAyp5DIXdIpJcqcwuIxlg9o.cache +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TEVe4-EpoZMDiUI1Fu0tCWhe-DrRVBfExtz_AO7hmtc.cache +0 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TYSYRZ6Z5910GOa35MabybbWLGsVPhvpKMZGqnNyd_8.cache +0 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TlJqmu6aAbgHwvXfbj2gBLArpK7GY7omM80Cati3T3c.cache +0 -2
  178. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UFJ4N180Ot1RILZFOe56MhmOZSJy8nbMVSsTsb8_CVU.cache +0 -1
  179. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UNkTv1FylEh8fw3-k3uJg0YaMQXHTdd6A1UEF4si9X8.cache +0 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UuI2Gce5G0Ww5Dp7hPSOCHHoRQjospt-pS9pwloQnYQ.cache +0 -1
  181. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/V25Gpa1WB6ADmMXtf7IsMUV2IU9w0GgMj-5UbvHXoxc.cache +0 -1
  182. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VOp0pIv_pTt1jyD5JQn5Ee721CyQFQTGdnz4ODw38i4.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VUjcp-qjg_eSBSj28ZD45AGXVVNPPtZodEd3PQrdXbM.cache +0 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VZIT-kF6ym-iLPU_pztoFEZet62g8F8J1lf_h3RdPP8.cache +0 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VxLb9zk1LVSL6c3-w5Pyu8He1E2tOUk0ZoC7jUOgt_s.cache +0 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WOec0Og8roHMzmakL0zgx2qYUokH4lQjfarxNkmDr0Q.cache +0 -1
  187. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WhN3OwAW2K4ws8-nLRP-3nrzIF9k8by6CuchA3yt7W4.cache +0 -1
  188. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WtVmBMzLLmV3cexGM5_fxt72pPmeRyKsyLRzTvZAVyE.cache +0 -1
  189. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XNS-blhVgxl3ACd11rN_B_pZa3ZcADOQalh9tKd_11o.cache +0 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Y4QAv-xWe9eQSr_F9CYHygNR_2YM_eQ0KtJosGGh8Fk.cache +0 -1
  191. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YHcpExBZ8Zq0_J5bgNr7QMZ5qD8jWUBRCID56H2bwSg.cache +0 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZDCEwTTs3nQrR7_jdywpWmuLAiDtEY5QseYHAhmKhoM.cache +0 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZHpAXVoZdZeK39MIrikrGN5quZzpFJKvD3d0acEhCJ8.cache +0 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZKRR7Austip-cnR-FRsJl7d9vuPnKS72rhD28vcDzM0.cache +0 -1
  195. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Zd5NkPUfggpcIZ_fNmKieLC_EQdg9LDxnoL091WrO4g.cache +0 -1
  196. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_ebQSkgdU7qSefmDH1VQlcdNskETX_Sg8EXW9q1LceE.cache +0 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_oTf_eXfNZrpsHw18Vm63FFItRTs4xEfbOVPefWOhZ8.cache +0 -1
  198. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aJiK_3TkkLIeUmhbLvKn0nYbfNtL1DIR8XcQNRKA_5E.cache +0 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aRB5sfveCnELcQsQDQNsZof-Sk5pSWO9pDKjFux7Oq0.cache +0 -1
  200. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bKIG8vYV989yh8qLSqDNcPnK8QkJDs2p_siUsUdqMi0.cache +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bPqmxYqgFbdAFSzKQvJDY4IQ4T6N3mBSwO3anpDc7pc.cache +0 -1
  202. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/c38Ct4xwkFRaFTtshlrAqDUpfvF3nvsSYT9SCDc5l0w.cache +0 -1
  203. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cKUNNkuaHgU4GPC0tnKxWZHoWP3Y41f226dFcumeGgg.cache +0 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/cXV4XFi7Fdq2Wcfu228XjiYWU2zSIaVnG7qdigLQiP8.cache +0 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/d2y5yaFNfFXIAK-MdSpmxwjS8rtxEJmmu4SRrCLu024.cache +0 -2
  206. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dAGLlyIO5_WkACHWq888mr7lRxAhbtJBaBQdeaD8osI.cache +0 -2
  207. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dPiBjlGXffCeZgyh_-MEhe6ls_jD2DwRgg99-wvSPbI.cache +0 -2
  208. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/e9W2mtZbewWcQvned6WhRk0vyAN0G214B_YhNbgetfU.cache +0 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/encDkuyjTN2ynLUIuEo0QmxTmqj---nu-farRYams_o.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/f991mNctvTDwoAEV0n5rs-FSpg7JNuRSPGgUYp4vXbs.cache +0 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fE7AiWk5ok17an4SOitj3MAX7QqgQHdjs6s0tVZhk8o.cache +0 -1
  212. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fe8eGGCQQR5uiCpw2bx7s5RsSWb9f_V-KC4WKTWjfBo.cache +0 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fhGKBaZLb5ntRCA2Sz7MEpnkzVsnbZ6SUQqDJ2bGTjY.cache +0 -1
  214. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fkojyc_IoxwXmFmmqaonisRO3pEk62lThpeqXZnwZS0.cache +0 -1
  215. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fo9Av-3dEhaG96b0clmWHk-YmTzxnUjEOEEnE48iTPw.cache +0 -0
  216. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/fxxwVBnrGbn4UkXXP4WnuEHFZta-yb1nYtqqGkv67dw.cache +0 -1
  217. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/g3bqmsWAx47hbF9GuGpkKwkD_wV4_sDnXSwczgv_VvY.cache +0 -1
  218. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/g3i-jmc4ZlWPfOlFYPoxuxT3TOViO06iAKkqj1eoB18.cache +0 -2
  219. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gRI-pcFrPsEpwuEPpmvGNVc7-OuQ5uDq0TMtaDp84II.cache +0 -1
  220. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gRYAmqUkkNzzPNApj2TKQECWlU2WIavwO2HpA4CaSSg.cache +0 -2
  221. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gfawGFrAFwNjKdml-B2K1XLsPcflqJMY1hPKulcEDH4.cache +0 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gguGKFbZ33ujIAd60uBzLXT8zfh8uzvhww75n9CNWes.cache +0 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gqMCKsEmDOFbKbq6J9tlppjvMjRbljn5qiwywfEaC68.cache +0 -0
  224. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hzpC-lkPG3h5g3d3gqd4hAXpmmK3bLg_FOAXNYPcEXI.cache +0 -1
  225. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iBDA_8qTARjY-sLzGKQ0IpdK6VZryiy1v8akmXXl6Qs.cache +0 -0
  226. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iBEZOY291Pf3KFBRLScEoUMw27Q4_V7-ydNUJcdAlCk.cache +0 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/iCW6TjgfeLPI7IjVwbI7GtD0QFXlzMLtPzA8EOtlVJc.cache +0 -1
  228. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/igKeTb6HRrsLCjVMF3TZ1XFeXzgL67knSwMs6fzCQs4.cache +0 -1
  229. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/j0gO2KugZ-oSi3EoJHmQac1dzSNqZ6Ovm_laQaDINXc.cache +0 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jLU80UXQ0ID0T2wuQzgTpeiz66a-mX51ut7gKpXHhkY.cache +0 -2
  231. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jUFu99w0h91M-He0NmmHxyVxS2NhzIge_LMXAX3Cv68.cache +0 -1
  232. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jUtvD4pGbNMtwpJMzluLvDskTPoioE73ED3zBiSSXh0.cache +0 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jeM8vKKoogFV14R2GCf85YYWgwxds-1CqhQE-7lMKtc.cache +0 -1
  234. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jrzFg7pc95kxRo2lb43_oaVewpNnV-KSgajlXErKSEk.cache +0 -1
  235. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kKm32HSrKMZlMtbTkoMrnKhLhyIm0gxAairQ2gx2O2g.cache +0 -1
  236. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kMi-8icN6HhEfPwsT0M7Dw-jG1-UufNVL529kynEBRo.cache +0 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kQUK-_C_L3ym9vNQMTpE4YIPrneID5wcTIbqypcTPko.cache +0 -1
  238. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kkSYXaKZZhAPmXpFX2AmSLz_k89oPQGrg0gpAEXUzJ8.cache +0 -1
  239. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kwN5L5AIOz-2MqVh33NySA7fbnGZzs5ytUkqErBtSjc.cache +0 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kzjV1XvHvZn0w8OYa3ZCP0CO8QUKAUVpT8XJ-d4GBWc.cache +0 -1
  241. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lN-7mRUOKKfxPL9N43WtaVS5J_ok7iPAEjWGDOCua-E.cache +0 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mGBRBidXLSMOB1ECqghR43QY3muC73O5NE5ggxFNyiU.cache +0 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mN-fmL62gvfyR766IjSDaugwGQoZZdScSQRx0nRYxzk.cache +0 -4
  244. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mPN2zlPa22thNd0_hmtUT2YCnIiZvcm0Wnlzl0BlUjY.cache +0 -1
  245. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mbwg-wWpR9gQsd9PMZQSpXcG8uEZg5e3QoDhy8Q9yyA.cache +0 -1
  246. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mg_fszp08FvNbPqxWRRiiWONLIAPqF38R-ZyXRjOffs.cache +0 -1
  247. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mo-0aZm-MLAcjfJeQ01doJA5V6haHU4f-cC8VU9_Zc0.cache +0 -0
  248. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mqnOoCPu6BrD5flXXy6FkE9ECzP3kg4g8a2I0riB20s.cache +0 -0
  249. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mxXsZxabboq4ohMmoFSD-1PgVNn7Cxa6-6rVZ7622_g.cache +0 -1
  250. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/naKpfJHUaJSupQTtV2K7bed6bZljGnZ0Da9mb5ydDD0.cache +0 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nd3citvFqw15DSZpdwdeSTguzMDOenY9R8hweLsxXSA.cache +0 -2
  252. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/njLHBH3_532cv2IMh0qWWPRYeIq8B_KujYNnX-zWFJ8.cache +0 -2
  253. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nvxibNFg_1dDx_QtrnoaPgfrO967FeR4deVFsuPbe2A.cache +0 -1
  254. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/o1U02RMHohFvUciIY8uSoUK7jb4ilBLRq48pm5go_sg.cache +0 -0
  255. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/o33DRl1ube1OwMxdViNL2iNq29PR9atm3k-TkldNOxI.cache +0 -1
  256. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/o3EpD_zRCyOuW5uLOL7ndtcQl5lg-D6rJVMicSsvRM8.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/o59RQXR_Q6wkXOei6_mADKbVWO0HOSv7_msyobA4PUw.cache +0 -1
  258. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oDZ7evIiYVrxr9GQ5ZkUf8ygBhb2exFWUWB5pkhucvs.cache +0 -1
  259. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oF-LMVaeaRSCbbEuogQWFERrOJ8q8bSI8gsztTolGTc.cache +0 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oJkixKWJPnSYNL4pJE1ExR9PCXYXxLK_7Tbp2oxKdRs.cache +0 -2
  261. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ogYJfSgIhrTf0EMors1fbPA8zaMprsnmSGqtV9xJOoY.cache +0 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oiUWZkreLvzxXe8Ibq1U-fFSnPNujZlCtbnQ-rM8I_0.cache +0 -1
  263. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pgTDnkWEnfqH2_PHkgFWNGfuUlMs0vcpZ4TTUWj7DjY.cache +0 -0
  264. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/q4TyphGjKkbMsiXlQEBP3YF3r2uGT_5D78ECjXUTJlI.cache +0 -1
  265. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qMen-Bi1pRTeeOVkDpTApSJS0Mb7vZ2qG_WilqgYUw4.cache +0 -1
  266. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qhk95qwwNyqnkFfB9anGeJIar3pb_Ok3C-phv-NKe14.cache +0 -2
  267. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sGrNk6qzBilD1Q-ngkYNdnkRiWSOFtdocAXZfx9EDOo.cache +0 -1
  268. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sIoAXkxhOt4OwdazvsrPd936PTLZ6rfn-CLwnivSyRE.cache +0 -3
  269. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sQtjxYVOSd1JLGnBLlFZktvAcSI2vUHunWBo2Drs3Wc.cache +0 -0
  270. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sR_hownN-0xn3moKv7Ajqlm9TBeFqebDJNx4_KyJg4w.cache +0 -0
  271. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sdgsM-FMyiDyMNvs1AGO3c1lXEOHwaalyUre27HF6Wc.cache +0 -1
  272. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/szWM3KymL9_pjYcYDrMxwaEsOGQRv1JGrkjL111_ld8.cache +0 -0
  273. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t4kK--pnTBvUaG_EaxE0QdcAYUDvz2J44YoZ31g6aiI.cache +0 -0
  274. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tT7qP_uNs0yqy6epcQ3rZFKYE31XrkLNHHksm7SRa1Y.cache +0 -1
  275. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tcp07gfL0NfjUNXz9l5OzMCTSEPIXYtQqvSpYN23NEc.cache +0 -0
  276. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tzfJL7zpstdTx8sIaC4kBIn5fVh4an7nA6JRjUvsWlc.cache +0 -2
  277. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/u31I5hOPxqIwdaZFMHD5MK8tRoDxSLqUGmmuJee1AB8.cache +0 -0
  278. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uH2U3XBL74ClJKjZfMg0Z-XUymFPHz_nw874z1o8cgQ.cache +0 -1
  279. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uTCCczdwuSgJn3cGZTsW1hO5AfzhDXR4k05fXEtTqJ4.cache +0 -1
  280. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vKq2zNINduXwzoU7ypwQ7HhWIBMpsm6bWG-TrdLQwx8.cache +0 -1
  281. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vr-3q4bFqTLVghBsGCuaYwWsu9neaC6CxXyGcbMgJXI.cache +0 -1
  282. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vsrOJ__Jw6wO4wIfI78s4vj724cWjRHPuLYikSchZgw.cache +0 -1
  283. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wIdE_LyLeMJJMRDp5_ra6M6p80RVJ8wRoyup3qcPr5s.cache +0 -0
  284. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wL-zyJ9le1RGsZS2ilR_MEL2SP5k608occXFA3APVk0.cache +0 -2
  285. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wRf10s6x3FdwceR-Wec1OEJojYT4-nx_W5TmBRfnqxo.cache +0 -0
  286. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wgMNEhYIa_7_eZ8nRG3HBGmWxeU4g20Gy3mZTxBmO58.cache +0 -0
  287. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wxZEvcAOQzIpOM1UX7WnhNGzTaGTqN-X5iEBAo79sTY.cache +0 -1
  288. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/x2xVoqg_b8pzh_5jm69qnLGNo0bs2qiGyJTTVyK5hSg.cache +0 -0
  289. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xCy2bvUq7IOGhue2JKzz441TmN1oRJyX1_UR9jyKh_c.cache +0 -0
  290. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xbGJdKwoHlq_Omotd1zzs_DpFQU0ZqaJu3jMDkZkcG4.cache +0 -1
  291. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xfmHJQRraf8PBicsrclptW92VcsmKnv0C1-li34kR5A.cache +0 -0
  292. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xkTm2fggBx_ia7SaQwRTaiYlGPB3xLb9RrVtRPlGXkw.cache +0 -1
  293. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yJd0DjweiOabfW7NYj2RVQn7Hg2uMxQb0-e7GVK14BM.cache +0 -0
  294. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yMv1yc3IXm2Gx5J6wNgr5h3rye40ceHEO9KYXVefWT8.cache +0 -0
  295. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ykrOthCWx4A_BeWEpAMuno7chYkPOgs2zlUCAsZTmw4.cache +0 -0
  296. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/z_9E1SAZEAZrN1_FpaWv6MmCe7PNGUoXMmSIf3urF2E.cache +0 -1
  297. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zaoWZ05WuQUJ2E5tl6m_ztvSiFCt09hG5WnDe2dgDvU.cache +0 -1
  298. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zvo2j3jd6NQvnulBEL9d6-WMJ67wNdmTRQj7B-W5qYo.cache +0 -0
  299. data/test/dummy/tmp/pids/server.pid +0 -1
Binary file
@@ -1,2627 +0,0 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at 2016-10-05 10:54:43 +0300
4
-
5
- ActiveRecord::PendingMigrationError (
6
-
7
- Migrations are pending. To resolve this issue, run:
8
-
9
- bin/rake db:migrate RAILS_ENV=development
10
-
11
- ):
12
- activerecord (4.2.1) lib/active_record/migration.rb:393:in `check_pending!'
13
- activerecord (4.2.1) lib/active_record/migration.rb:374:in `call'
14
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
16
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
17
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
18
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
19
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
22
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
24
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
25
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
26
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
27
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
28
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
29
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
30
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
31
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
32
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
33
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
34
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
35
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
36
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
37
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
38
- railties (4.2.1) lib/rails/application.rb:164:in `call'
39
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
40
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
41
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
42
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
43
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
44
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
45
-
46
-
47
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.3ms)
48
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
49
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
50
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (9.4ms)
51
-  (19.9ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
52
-  (0.1ms) select sqlite_version(*)
53
-  (18.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
54
- ActiveRecord::SchemaMigration Load (0.0ms) SELECT "schema_migrations".* FROM "schema_migrations"
55
- Migrating to CreateClients (20141224031843)
56
-  (0.0ms) begin transaction
57
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/test/dummy/db/migrate/20141224031843_create_clients.rb:7)
58
-  (0.2ms) CREATE TABLE "clients" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime, "updated_at" datetime)
59
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141224031843"]]
60
-  (17.9ms) commit transaction
61
- Migrating to CreateOrders (20141224031854)
62
-  (0.1ms) begin transaction
63
- DEPRECATION WARNING: `#timestamp` was called without specifying an option for `null`. In Rails 5, this behavior will change to `null: false`. You should manually specify `null: true` to prevent the behavior of your existing migrations from changing. (called from block in change at /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/test/dummy/db/migrate/20141224031854_create_orders.rb:9)
64
-  (0.2ms) CREATE TABLE "orders" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "notes" varchar, "product_name" varchar, "created_at" datetime, "updated_at" datetime)
65
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141224031854"]]
66
-  (17.3ms) commit transaction
67
- Migrating to AddClientToOrder (20141224032000)
68
-  (0.1ms) begin transaction
69
-  (0.2ms) ALTER TABLE "orders" ADD "client_id" integer
70
- SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141224032000"]]
71
-  (13.2ms) commit transaction
72
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
73
-
74
-
75
- Started GET "/" for 127.0.0.1 at 2016-10-05 10:55:46 +0300
76
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
77
- Processing by Rails::WelcomeController#index as HTML
78
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/railties-4.2.1/lib/rails/templates/rails/welcome/index.html.erb (0.4ms)
79
- Completed 200 OK in 6ms (Views: 1.1ms | ActiveRecord: 0.0ms)
80
-
81
-
82
- Started GET "/orders" for 127.0.0.1 at 2016-10-05 10:55:50 +0300
83
- Processing by OrdersController#index as HTML
84
- Order Load (0.1ms) SELECT "orders".* FROM "orders"
85
- Rendered orders/index.html.erb within layouts/application (1.8ms)
86
- Completed 200 OK in 2089ms (Views: 2086.9ms | ActiveRecord: 0.2ms)
87
-
88
-
89
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
90
-
91
-
92
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
93
-
94
-
95
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
96
-
97
-
98
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
99
-
100
-
101
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
102
-
103
-
104
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
105
-
106
-
107
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
108
-
109
-
110
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:52 +0300
111
-
112
-
113
- Started GET "/clients" for 127.0.0.1 at 2016-10-05 10:55:58 +0300
114
- Processing by ClientsController#index as HTML
115
- Client Load (0.5ms) SELECT "clients".* FROM "clients"
116
- Rendered clients/index.html.erb within layouts/application (1.7ms)
117
- Completed 200 OK in 34ms (Views: 29.8ms | ActiveRecord: 0.6ms)
118
-
119
-
120
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
121
-
122
-
123
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
124
-
125
-
126
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
127
-
128
-
129
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
130
-
131
-
132
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
133
-
134
-
135
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
136
-
137
-
138
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
139
-
140
-
141
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:55:59 +0300
142
-
143
-
144
- Started GET "/clients/new" for 127.0.0.1 at 2016-10-05 10:56:00 +0300
145
- Processing by ClientsController#new as HTML
146
- Rendered clients/_form.html.erb (6.9ms)
147
- Rendered clients/new.html.erb within layouts/application (8.9ms)
148
- Completed 200 OK in 37ms (Views: 34.0ms | ActiveRecord: 0.2ms)
149
-
150
-
151
- Started POST "/clients" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
152
- Processing by ClientsController#create as HTML
153
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"epUcfqBFrViVD4L8nr4g5nM5ObvYtQILV+TaQQcXXq5/HVVY+r853MPzzs31tEoZIgjMGelB3kjwJGN/RTp1Pg==", "client"=>{"name"=>"b1"}, "commit"=>"Create Client"}
154
-  (0.1ms) begin transaction
155
- SQL (0.2ms) INSERT INTO "clients" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "b1"], ["created_at", "2016-10-05 07:56:08.234727"], ["updated_at", "2016-10-05 07:56:08.234727"]]
156
-  (20.1ms) commit transaction
157
- Redirected to http://localhost:3013/clients/1
158
- Completed 302 Found in 24ms (ActiveRecord: 20.4ms)
159
-
160
-
161
- Started GET "/clients/1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
162
- Processing by ClientsController#show as HTML
163
- Parameters: {"id"=>"1"}
164
- Client Load (0.1ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1 [["id", 1]]
165
- Rendered clients/show.html.erb within layouts/application (0.4ms)
166
- Completed 200 OK in 32ms (Views: 28.9ms | ActiveRecord: 0.1ms)
167
-
168
-
169
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
170
-
171
-
172
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
173
-
174
-
175
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
176
-
177
-
178
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
179
-
180
-
181
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
182
-
183
-
184
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
185
-
186
-
187
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
188
-
189
-
190
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:56:08 +0300
191
-
192
-
193
- Started GET "/clients/1/edit" for 127.0.0.1 at 2016-10-05 10:56:09 +0300
194
- Processing by ClientsController#edit as HTML
195
- Parameters: {"id"=>"1"}
196
- Client Load (0.1ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1 [["id", 1]]
197
- Rendered clients/_form.html.erb (0.7ms)
198
- Rendered clients/edit.html.erb within layouts/application (1.4ms)
199
- Completed 200 OK in 26ms (Views: 24.9ms | ActiveRecord: 0.1ms)
200
-
201
-
202
- Started GET "/clients" for 127.0.0.1 at 2016-10-05 10:56:10 +0300
203
- Processing by ClientsController#index as HTML
204
- Client Load (0.1ms) SELECT "clients".* FROM "clients"
205
- Rendered clients/index.html.erb within layouts/application (1.0ms)
206
- Completed 200 OK in 41ms (Views: 40.9ms | ActiveRecord: 0.1ms)
207
-
208
-
209
- Started GET "/clients/new" for 127.0.0.1 at 2016-10-05 10:56:11 +0300
210
- Processing by ClientsController#new as HTML
211
- Rendered clients/_form.html.erb (1.7ms)
212
- Rendered clients/new.html.erb within layouts/application (3.0ms)
213
- Completed 200 OK in 51ms (Views: 49.7ms | ActiveRecord: 0.0ms)
214
-
215
-
216
- Started POST "/clients" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
217
- Processing by ClientsController#create as HTML
218
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"FcIK1CvnM+4aw0KhcI6QKyDV8qYpbRaRFaoLVb5BSuwQSkPycR2nakw/DpAbhPrUceQHBBiZytKyarJr/GxhfA==", "client"=>{"name"=>"b2"}, "commit"=>"Create Client"}
219
-  (0.1ms) begin transaction
220
- SQL (0.1ms) INSERT INTO "clients" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "b2"], ["created_at", "2016-10-05 07:56:14.285837"], ["updated_at", "2016-10-05 07:56:14.285837"]]
221
-  (21.1ms) commit transaction
222
- Redirected to http://localhost:3013/clients/2
223
- Completed 302 Found in 23ms (ActiveRecord: 21.3ms)
224
-
225
-
226
- Started GET "/clients/2" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
227
- Processing by ClientsController#show as HTML
228
- Parameters: {"id"=>"2"}
229
- Client Load (0.1ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1 [["id", 2]]
230
- Rendered clients/show.html.erb within layouts/application (0.2ms)
231
- Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms)
232
-
233
-
234
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
235
-
236
-
237
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
238
-
239
-
240
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
241
-
242
-
243
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
244
-
245
-
246
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
247
-
248
-
249
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
250
-
251
-
252
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
253
-
254
-
255
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:14 +0300
256
-
257
-
258
- Started GET "/clients" for 127.0.0.1 at 2016-10-05 10:56:15 +0300
259
- Processing by ClientsController#index as HTML
260
- Client Load (0.2ms) SELECT "clients".* FROM "clients"
261
- Rendered clients/index.html.erb within layouts/application (1.6ms)
262
- Completed 200 OK in 45ms (Views: 43.9ms | ActiveRecord: 0.2ms)
263
-
264
-
265
- Started GET "/clients/new" for 127.0.0.1 at 2016-10-05 10:56:16 +0300
266
- Processing by ClientsController#new as HTML
267
- Rendered clients/_form.html.erb (0.6ms)
268
- Rendered clients/new.html.erb within layouts/application (1.0ms)
269
- Completed 200 OK in 41ms (Views: 40.5ms | ActiveRecord: 0.0ms)
270
-
271
-
272
- Started POST "/clients" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
273
- Processing by ClientsController#create as HTML
274
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"O7VRjmMI4Hfhsu05pQ9h+VDAdA18OFWvAQTamsQ2sHE+PRioOfJ087dOoQjOBQsGAfGBr03MieymxGOkhhub4Q==", "client"=>{"name"=>"b3"}, "commit"=>"Create Client"}
275
-  (0.1ms) begin transaction
276
- SQL (0.1ms) INSERT INTO "clients" ("name", "created_at", "updated_at") VALUES (?, ?, ?) [["name", "b3"], ["created_at", "2016-10-05 07:56:19.279842"], ["updated_at", "2016-10-05 07:56:19.279842"]]
277
-  (16.1ms) commit transaction
278
- Redirected to http://localhost:3013/clients/3
279
- Completed 302 Found in 19ms (ActiveRecord: 16.3ms)
280
-
281
-
282
- Started GET "/clients/3" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
283
- Processing by ClientsController#show as HTML
284
- Parameters: {"id"=>"3"}
285
- Client Load (0.1ms) SELECT "clients".* FROM "clients" WHERE "clients"."id" = ? LIMIT 1 [["id", 3]]
286
- Rendered clients/show.html.erb within layouts/application (0.2ms)
287
- Completed 200 OK in 37ms (Views: 34.9ms | ActiveRecord: 0.1ms)
288
-
289
-
290
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
291
-
292
-
293
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
294
-
295
-
296
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
297
-
298
-
299
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
300
-
301
-
302
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
303
-
304
-
305
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
306
-
307
-
308
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
309
-
310
-
311
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:19 +0300
312
-
313
-
314
- Started GET "/clients" for 127.0.0.1 at 2016-10-05 10:56:20 +0300
315
- Processing by ClientsController#index as HTML
316
- Client Load (0.1ms) SELECT "clients".* FROM "clients"
317
- Rendered clients/index.html.erb within layouts/application (1.0ms)
318
- Completed 200 OK in 38ms (Views: 37.1ms | ActiveRecord: 0.1ms)
319
-
320
-
321
- Started GET "/orders" for 127.0.0.1 at 2016-10-05 10:56:51 +0300
322
- Processing by OrdersController#index as HTML
323
- Order Load (0.1ms) SELECT "orders".* FROM "orders"
324
- Rendered orders/index.html.erb within layouts/application (0.5ms)
325
- Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.1ms)
326
-
327
-
328
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
329
-
330
-
331
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
332
-
333
-
334
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
335
-
336
-
337
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
338
-
339
-
340
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
341
-
342
-
343
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
344
-
345
-
346
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
347
-
348
-
349
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:56:52 +0300
350
-
351
-
352
- Started GET "/orders/new" for 127.0.0.1 at 2016-10-05 10:56:54 +0300
353
- Processing by OrdersController#new as HTML
354
- Rendered orders/_form.html.erb (24.8ms)
355
- Rendered orders/new.html.erb within layouts/application (25.6ms)
356
- Completed 200 OK in 58ms (Views: 55.2ms | ActiveRecord: 0.1ms)
357
-
358
-
359
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:57:00 +0300
360
-
361
-
362
- Started GET "/orders/new" for 127.0.0.1 at 2016-10-05 10:57:16 +0300
363
- Processing by OrdersController#new as HTML
364
- Rendered orders/_form.html.erb (4.5ms)
365
- Rendered orders/new.html.erb within layouts/application (5.2ms)
366
- Completed 200 OK in 37ms (Views: 37.1ms | ActiveRecord: 0.0ms)
367
-
368
-
369
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
370
-
371
-
372
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
373
-
374
-
375
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
376
-
377
-
378
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
379
-
380
-
381
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
382
-
383
-
384
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
385
-
386
-
387
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
388
-
389
-
390
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:17 +0300
391
-
392
-
393
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:57:19 +0300
394
- Processing by ClientsController#autocomplete_client_name as JSON
395
- Parameters: {"q"=>"b1"}
396
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
397
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
398
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.1ms)
399
-
400
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
401
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
402
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
403
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
404
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
405
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
406
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
407
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
408
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
409
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
410
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
411
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
412
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
413
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
414
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
415
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
416
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
417
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
418
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
419
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
420
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
421
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
422
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
423
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
424
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
425
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
426
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
427
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
428
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
429
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
430
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
431
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
432
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
433
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
434
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
435
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
436
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
437
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
438
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
439
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
440
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
441
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
442
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
443
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
444
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
445
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
446
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
447
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
448
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
449
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
450
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
451
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
452
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
453
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
454
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
455
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
456
- rack (1.6.4) lib/rack/head.rb:13:in `call'
457
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
458
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
459
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
460
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
461
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
462
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
463
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
464
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
465
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
466
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
467
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
468
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
469
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
470
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
471
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
472
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
473
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
474
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
475
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
476
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
477
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
478
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
479
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
480
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
481
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
482
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
483
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
484
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
485
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
486
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
487
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
488
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
489
- railties (4.2.1) lib/rails/application.rb:164:in `call'
490
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
491
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
492
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
493
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
494
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
495
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
496
-
497
-
498
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
499
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms)
500
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.4ms)
501
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (8.8ms)
502
-
503
-
504
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:57:19 +0300
505
- Processing by ClientsController#autocomplete_client_name as JSON
506
- Parameters: {"q"=>"b1"}
507
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
508
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
509
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
510
-
511
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
512
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
513
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
514
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
515
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
516
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
517
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
518
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
519
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
520
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
521
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
522
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
523
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
524
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
525
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
526
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
527
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
528
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
529
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
530
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
531
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
532
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
533
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
534
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
535
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
536
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
537
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
538
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
539
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
540
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
541
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
542
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
543
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
544
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
545
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
546
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
547
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
548
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
549
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
550
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
551
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
552
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
553
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
554
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
555
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
556
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
557
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
558
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
559
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
560
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
561
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
562
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
563
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
564
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
565
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
566
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
567
- rack (1.6.4) lib/rack/head.rb:13:in `call'
568
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
569
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
570
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
571
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
572
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
573
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
574
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
575
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
576
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
577
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
578
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
579
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
580
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
581
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
582
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
583
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
584
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
585
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
586
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
587
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
588
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
589
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
590
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
591
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
592
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
593
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
594
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
595
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
596
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
597
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
598
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
599
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
600
- railties (4.2.1) lib/rails/application.rb:164:in `call'
601
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
602
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
603
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
604
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
605
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
606
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
607
-
608
-
609
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.0ms)
610
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.4ms)
611
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.9ms)
612
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (9.7ms)
613
-
614
-
615
- Started GET "/orders/new" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
616
- Processing by OrdersController#new as HTML
617
- Rendered orders/_form.html.erb (4.2ms)
618
- Rendered orders/new.html.erb within layouts/application (4.7ms)
619
- Completed 200 OK in 31ms (Views: 30.9ms | ActiveRecord: 0.0ms)
620
-
621
-
622
- Started GET "/assets/application.self.css?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
623
-
624
-
625
- Started GET "/assets/jquery2.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
626
-
627
-
628
- Started GET "/assets/bootstrap.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
629
-
630
-
631
- Started GET "/assets/jquery_ujs.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
632
-
633
-
634
- Started GET "/assets/bootstrap3-typeahead.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
635
-
636
-
637
- Started GET "/assets/bootstrap3-autocomplete-input.min.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
638
-
639
-
640
- Started GET "/assets/turbolinks.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
641
-
642
-
643
- Started GET "/assets/application.self.js?body=1" for 127.0.0.1 at 2016-10-05 10:57:29 +0300
644
-
645
-
646
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:57:31 +0300
647
- Processing by ClientsController#autocomplete_client_name as JSON
648
- Parameters: {"q"=>"b1"}
649
- Client Load (0.3ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
650
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
651
- Completed 500 Internal Server Error in 2ms (ActiveRecord: 0.3ms)
652
-
653
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
654
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
655
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
656
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
657
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
658
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
659
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
660
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
661
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
662
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
663
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
664
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
665
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
666
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
667
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
668
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
669
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
670
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
671
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
672
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
673
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
674
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
675
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
676
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
677
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
678
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
679
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
680
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
681
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
682
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
683
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
684
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
685
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
686
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
687
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
688
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
689
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
690
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
691
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
692
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
693
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
694
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
695
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
696
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
697
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
698
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
699
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
700
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
701
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
702
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
703
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
704
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
705
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
706
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
707
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
708
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
709
- rack (1.6.4) lib/rack/head.rb:13:in `call'
710
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
711
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
712
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
713
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
714
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
715
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
716
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
717
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
718
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
719
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
720
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
721
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
722
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
723
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
724
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
725
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
726
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
727
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
728
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
729
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
730
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
731
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
732
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
733
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
734
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
735
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
736
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
737
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
738
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
739
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
740
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
741
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
742
- railties (4.2.1) lib/rails/application.rb:164:in `call'
743
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
744
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
745
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
746
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
747
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
748
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
749
-
750
-
751
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.8ms)
752
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.6ms)
753
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.5ms)
754
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (9.6ms)
755
-
756
-
757
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:57:31 +0300
758
- Processing by ClientsController#autocomplete_client_name as JSON
759
- Parameters: {"q"=>"b1"}
760
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
761
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
762
- Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.1ms)
763
-
764
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
765
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
766
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
767
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
768
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
769
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
770
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
771
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
772
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
773
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
774
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
775
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
776
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
777
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
778
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
779
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
780
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
781
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
782
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
783
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
784
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
785
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
786
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
787
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
788
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
789
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
790
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
791
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
792
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
793
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
794
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
795
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
796
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
797
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
798
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
799
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
800
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
801
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
802
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
803
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
804
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
805
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
806
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
807
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
808
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
809
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
810
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
811
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
812
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
813
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
814
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
815
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
816
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
817
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
818
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
819
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
820
- rack (1.6.4) lib/rack/head.rb:13:in `call'
821
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
822
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
823
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
824
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
825
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
826
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
827
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
828
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
829
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
830
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
831
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
832
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
833
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
834
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
835
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
836
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
837
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
838
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
839
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
840
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
841
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
842
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
843
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
844
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
845
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
846
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
847
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
848
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
849
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
850
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
851
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
852
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
853
- railties (4.2.1) lib/rails/application.rb:164:in `call'
854
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
855
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
856
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
857
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
858
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
859
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
860
-
861
-
862
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.7ms)
863
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.3ms)
864
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.text.erb (0.4ms)
865
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.text.erb (8.4ms)
866
-
867
-
868
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:57:35 +0300
869
- Processing by ClientsController#autocomplete_client_name as HTML
870
- Parameters: {"q"=>"b1"}
871
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
872
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
873
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
874
-
875
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
876
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
877
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
878
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
879
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
880
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
881
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
882
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
883
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
884
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
885
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
886
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
887
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
888
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
889
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
890
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
891
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
892
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
893
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
894
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
895
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
896
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
897
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
898
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
899
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
900
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
901
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
902
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
903
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
904
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
905
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
906
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
907
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
908
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
909
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
910
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
911
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
912
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
913
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
914
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
915
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
916
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
917
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
918
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
919
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
920
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
921
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
922
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
923
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
924
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
925
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
926
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
927
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
928
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
929
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
930
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
931
- rack (1.6.4) lib/rack/head.rb:13:in `call'
932
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
933
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
934
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
935
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
936
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
937
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
938
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
939
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
940
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
941
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
942
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
943
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
944
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
945
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
946
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
947
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
948
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
949
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
950
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
951
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
952
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
953
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
954
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
955
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
956
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
957
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
958
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
959
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
960
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
961
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
962
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
963
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
964
- railties (4.2.1) lib/rails/application.rb:164:in `call'
965
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
966
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
967
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
968
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
969
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
970
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
971
-
972
-
973
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms)
974
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
975
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
976
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (13.2ms)
977
-
978
-
979
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:58:38 +0300
980
- Processing by ClientsController#autocomplete_client_name as HTML
981
- Parameters: {"q"=>"b1"}
982
- Client Load (0.3ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
983
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
984
- Completed 500 Internal Server Error in 18ms (ActiveRecord: 0.3ms)
985
-
986
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
987
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
988
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
989
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
990
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
991
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
992
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
993
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
994
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
995
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
996
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
997
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
998
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
999
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1000
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1001
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1002
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1003
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1004
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1005
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1006
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1007
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1008
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1009
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1010
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1011
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1012
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1013
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1014
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1015
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1016
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1017
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1018
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1019
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1020
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1021
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1022
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1023
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1024
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1025
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1026
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1027
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1028
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1029
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1030
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1031
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1032
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1033
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1034
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1035
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1036
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1037
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1038
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1039
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1040
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1041
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1042
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1043
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1044
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1045
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1046
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1047
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1048
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1049
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1050
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1051
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1052
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1053
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1054
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1055
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1056
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1057
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1058
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1059
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1060
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1061
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1062
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1063
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1064
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1065
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1066
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1067
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1068
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1069
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1070
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1071
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1072
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1073
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1074
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1075
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1076
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1077
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1078
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1079
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1080
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1081
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1082
-
1083
-
1084
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
1085
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1086
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1087
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.3ms)
1088
-
1089
-
1090
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 10:59:41 +0300
1091
- Processing by ClientsController#autocomplete_client_name as HTML
1092
- Parameters: {"q"=>"b1"}
1093
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1094
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1095
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1096
-
1097
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1098
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1099
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1100
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1101
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1102
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1103
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1104
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1105
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1106
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1107
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1108
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1109
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1110
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1111
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1112
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1113
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1114
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1115
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1116
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1117
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1118
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1119
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1120
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1121
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1122
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1123
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1124
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1125
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1126
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1127
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1128
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1129
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1130
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1131
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1132
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1133
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1134
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1135
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1136
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1137
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1138
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1139
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1140
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1141
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1142
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1143
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1144
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1145
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1146
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1147
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1148
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1149
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1150
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1151
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1152
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1153
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1154
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1155
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1156
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1157
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1158
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1159
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1160
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1161
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1162
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1163
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1164
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1165
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1166
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1167
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1168
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1169
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1170
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1171
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1172
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1173
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1174
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1175
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1176
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1177
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1178
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1179
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1180
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1181
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1182
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1183
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1184
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1185
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1186
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1187
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1188
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1189
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1190
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1191
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1192
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1193
-
1194
-
1195
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms)
1196
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1197
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1198
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.7ms)
1199
-
1200
-
1201
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:00:19 +0300
1202
- Processing by ClientsController#autocomplete_client_name as HTML
1203
- Parameters: {"q"=>"b1"}
1204
- Client Load (0.2ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1205
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1206
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
1207
-
1208
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1209
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1210
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1211
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1212
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1213
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1214
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1215
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1216
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1217
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1218
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1219
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1220
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1221
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1222
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1223
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1224
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1225
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1226
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1227
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1228
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1229
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1230
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1231
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1232
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1233
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1234
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1235
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1236
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1237
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1238
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1239
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1240
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1241
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1242
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1243
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1244
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1245
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1246
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1247
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1248
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1249
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1250
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1251
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1252
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1253
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1254
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1255
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1256
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1257
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1258
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1259
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1260
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1261
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1262
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1263
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1264
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1265
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1266
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1267
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1268
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1269
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1270
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1271
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1272
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1273
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1274
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1275
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1276
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1277
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1278
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1279
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1280
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1281
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1282
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1283
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1284
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1285
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1286
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1287
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1288
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1289
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1290
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1291
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1292
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1293
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1294
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1295
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1296
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1297
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1298
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1299
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1300
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1301
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1302
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1303
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1304
-
1305
-
1306
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
1307
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1308
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1309
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.5ms)
1310
-
1311
-
1312
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:02:38 +0300
1313
- Processing by ClientsController#autocomplete_client_name as HTML
1314
- Parameters: {"q"=>"b1"}
1315
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1316
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1317
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1318
-
1319
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1320
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1321
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1322
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1323
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1324
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1325
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1326
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1327
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1328
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1329
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1330
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1331
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1332
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1333
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1334
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1335
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1336
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1337
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1338
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1339
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1340
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1341
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1342
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1343
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1344
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1345
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1346
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1347
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1348
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1349
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1350
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1351
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1352
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1353
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1354
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1355
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1356
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1357
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1358
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1359
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1360
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1361
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1362
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1363
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1364
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1365
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1366
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1367
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1368
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1369
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1370
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1371
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1372
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1373
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1374
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1375
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1376
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1377
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1378
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1379
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1380
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1381
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1382
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1383
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1384
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1385
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1386
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1387
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1388
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1389
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1390
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1391
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1392
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1393
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1394
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1395
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1396
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1397
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1398
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1399
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1400
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1401
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1402
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1403
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1404
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1405
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1406
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1407
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1408
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1409
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1410
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1411
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1412
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1413
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1414
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1415
-
1416
-
1417
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
1418
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1419
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
1420
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.0ms)
1421
-
1422
-
1423
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:03:33 +0300
1424
- Processing by ClientsController#autocomplete_client_name as HTML
1425
- Parameters: {"q"=>"b1"}
1426
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1427
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1428
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1429
-
1430
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1431
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1432
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1433
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1434
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1435
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1436
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1437
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1438
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1439
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1440
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1441
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1442
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1443
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1444
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1445
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1446
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1447
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1448
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1449
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1450
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1451
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1452
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1453
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1454
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1455
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1456
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1457
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1458
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1459
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1460
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1461
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1462
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1463
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1464
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1465
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1466
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1467
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1468
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1469
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1470
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1471
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1472
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1473
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1474
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1475
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1476
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1477
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1478
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1479
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1480
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1481
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1482
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1483
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1484
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1485
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1486
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1487
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1488
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1489
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1490
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1491
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1492
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1493
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1494
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1495
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1496
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1497
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1498
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1499
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1500
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1501
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1502
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1503
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1504
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1505
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1506
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1507
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1508
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1509
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1510
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1511
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1512
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1513
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1514
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1515
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1516
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1517
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1518
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1519
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1520
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1521
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1522
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1523
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1524
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1525
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1526
-
1527
-
1528
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
1529
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1530
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
1531
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.9ms)
1532
-
1533
-
1534
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:04:00 +0300
1535
- Processing by ClientsController#autocomplete_client_name as HTML
1536
- Parameters: {"q"=>"b1"}
1537
- Client Load (0.2ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1538
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1539
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
1540
-
1541
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1542
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1543
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1544
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1545
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1546
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1547
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1548
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1549
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1550
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1551
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1552
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1553
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1554
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1555
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1556
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1557
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1558
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1559
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1560
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1561
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1562
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1563
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1564
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1565
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1566
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1567
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1568
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1569
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1570
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1571
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1572
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1573
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1574
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1575
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1576
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1577
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1578
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1579
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1580
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1581
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1582
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1583
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1584
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1585
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1586
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1587
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1588
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1589
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1590
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1591
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1592
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1593
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1594
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1595
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1596
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1597
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1598
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1599
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1600
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1601
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1602
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1603
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1604
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1605
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1606
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1607
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1608
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1609
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1610
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1611
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1612
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1613
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1614
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1615
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1616
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1617
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1618
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1619
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1620
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1621
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1622
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1623
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1624
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1625
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1626
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1627
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1628
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1629
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1630
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1631
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1632
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1633
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1634
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1635
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1636
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1637
-
1638
-
1639
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.6ms)
1640
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1641
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1642
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.8ms)
1643
-
1644
-
1645
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:04:20 +0300
1646
- Processing by ClientsController#autocomplete_client_name as HTML
1647
- Parameters: {"q"=>"b1"}
1648
- Client Load (0.2ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1649
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1650
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
1651
-
1652
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1653
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1654
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1655
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1656
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1657
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1658
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1659
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1660
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1661
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1662
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1663
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1664
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1665
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1666
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1667
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1668
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1669
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1670
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1671
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1672
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1673
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1674
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1675
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1676
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1677
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1678
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1679
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1680
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1681
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1682
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1683
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1684
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1685
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1686
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1687
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1688
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1689
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1690
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1691
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1692
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1693
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1694
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1695
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1696
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1697
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1698
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1699
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1700
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1701
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1702
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1703
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1704
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1705
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1706
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1707
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1708
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1709
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1710
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1711
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1712
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1713
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1714
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1715
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1716
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1717
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1718
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1719
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1720
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1721
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1722
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1723
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1724
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1725
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1726
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1727
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1728
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1729
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1730
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1731
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1732
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1733
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1734
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1735
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1736
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1737
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1738
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1739
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1740
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1741
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1742
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1743
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1744
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1745
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1746
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1747
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1748
-
1749
-
1750
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.3ms)
1751
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
1752
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
1753
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.0ms)
1754
-
1755
-
1756
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:04:59 +0300
1757
- Processing by ClientsController#autocomplete_client_name as HTML
1758
- Parameters: {"q"=>"b1"}
1759
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1760
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1761
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1762
-
1763
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1764
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1765
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1766
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1767
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1768
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1769
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1770
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1771
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1772
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1773
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1774
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1775
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1776
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1777
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1778
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1779
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1780
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1781
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1782
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1783
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1784
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1785
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1786
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1787
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1788
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1789
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1790
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1791
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1792
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1793
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1794
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1795
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1796
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1797
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1798
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1799
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1800
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1801
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1802
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1803
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1804
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1805
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1806
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1807
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1808
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1809
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1810
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1811
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1812
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1813
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1814
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1815
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1816
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1817
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1818
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1819
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1820
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1821
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1822
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1823
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1824
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1825
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1826
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1827
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1828
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1829
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1830
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1831
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1832
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1833
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1834
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1835
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1836
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1837
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1838
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1839
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1840
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1841
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1842
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1843
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1844
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1845
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1846
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1847
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1848
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1849
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1850
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1851
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1852
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1853
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1854
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1855
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1856
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1857
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1858
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1859
-
1860
-
1861
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.4ms)
1862
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
1863
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1864
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.3ms)
1865
-
1866
-
1867
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:05:00 +0300
1868
- Processing by ClientsController#autocomplete_client_name as HTML
1869
- Parameters: {"q"=>"b1"}
1870
- Client Load (0.2ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1871
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1872
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
1873
-
1874
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1875
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1876
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1877
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1878
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1879
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1880
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1881
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1882
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1883
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1884
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1885
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1886
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1887
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1888
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
1889
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
1890
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
1891
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
1892
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
1893
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
1894
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
1895
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
1896
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
1897
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
1898
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1899
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1900
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
1901
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
1902
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1903
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
1904
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1905
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
1906
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1907
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
1908
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
1909
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
1910
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
1911
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1912
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
1913
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1914
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1915
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1916
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
1917
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
1918
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
1919
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1920
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
1921
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
1922
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
1923
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
1924
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1925
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
1926
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
1927
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
1928
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
1929
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
1930
- rack (1.6.4) lib/rack/head.rb:13:in `call'
1931
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1932
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
1933
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
1934
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
1935
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1936
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
1937
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
1938
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
1939
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1940
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
1941
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1942
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
1943
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
1944
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1945
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1946
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1947
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1948
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1949
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
1950
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
1951
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1952
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1953
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1954
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
1955
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1956
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1957
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1958
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1959
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1960
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
1961
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1962
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
1963
- railties (4.2.1) lib/rails/application.rb:164:in `call'
1964
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
1965
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1966
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1967
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1968
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1969
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1970
-
1971
-
1972
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
1973
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1974
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
1975
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.2ms)
1976
-
1977
-
1978
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:05:20 +0300
1979
- Processing by ClientsController#autocomplete_client_name as HTML
1980
- Parameters: {"q"=>"b1"}
1981
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1982
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
1983
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
1984
-
1985
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
1986
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
1987
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
1988
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
1989
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
1990
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
1991
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1992
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
1993
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
1994
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
1995
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
1996
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
1997
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
1998
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
1999
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
2000
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
2001
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
2002
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
2003
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2004
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
2005
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
2006
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2007
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2008
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2009
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2010
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2011
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2012
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2013
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2014
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2015
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2016
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2017
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2018
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2019
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2020
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2021
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2022
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2023
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2024
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2025
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2026
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2027
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2028
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2029
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2030
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2031
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2032
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2033
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2034
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2035
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2036
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2037
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2038
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2039
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
2040
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2041
- rack (1.6.4) lib/rack/head.rb:13:in `call'
2042
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2043
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2044
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
2045
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
2046
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2047
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2048
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2049
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2050
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2051
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2052
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2053
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2054
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2055
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2056
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2057
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2058
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2059
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2060
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2061
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2062
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2063
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2064
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2065
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2066
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2067
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
2068
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2069
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2070
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2071
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2072
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
2073
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2074
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2075
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2076
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2077
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2078
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2079
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2080
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2081
-
2082
-
2083
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.0ms)
2084
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
2085
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
2086
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.7ms)
2087
-
2088
-
2089
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:05:34 +0300
2090
- Processing by ClientsController#autocomplete_client_name as HTML
2091
- Parameters: {"q"=>"b1"}
2092
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
2093
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
2094
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
2095
-
2096
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
2097
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
2098
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
2099
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
2100
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
2101
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
2102
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2103
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
2104
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
2105
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
2106
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
2107
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
2108
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
2109
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
2110
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
2111
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
2112
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
2113
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
2114
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2115
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
2116
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
2117
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2118
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2119
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2120
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2121
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2122
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2123
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2124
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2125
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2126
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2127
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2128
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2129
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2130
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2131
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2132
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2133
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2134
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2135
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2136
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2137
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2138
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2139
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2140
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2141
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2142
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2143
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2144
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2145
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2146
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2147
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2148
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2149
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2150
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
2151
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2152
- rack (1.6.4) lib/rack/head.rb:13:in `call'
2153
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2154
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2155
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
2156
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
2157
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2158
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2159
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2160
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2161
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2162
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2163
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2164
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2165
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2166
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2167
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2168
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2169
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2170
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2171
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2172
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2173
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2174
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2175
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2176
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2177
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2178
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
2179
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2180
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2181
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2182
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2183
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
2184
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2185
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2186
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2187
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2188
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2189
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2190
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2191
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2192
-
2193
-
2194
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
2195
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
2196
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
2197
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.3ms)
2198
-
2199
-
2200
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:08:58 +0300
2201
- Processing by ClientsController#autocomplete_client_name as HTML
2202
- Parameters: {"q"=>"b1"}
2203
- Client Load (0.1ms) SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
2204
- SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10
2205
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.1ms)
2206
-
2207
- ActiveRecord::StatementInvalid (SQLite3::SQLException: near ",": syntax error: SELECT clients.id, clients., clients.name FROM "clients" WHERE (LOWER(clients.) LIKE 'b1%') ORDER BY clients. ASC LIMIT 10):
2208
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `initialize'
2209
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `new'
2210
- sqlite3 (1.3.10) lib/sqlite3/database.rb:91:in `prepare'
2211
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:296:in `block in exec_query'
2212
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:473:in `block in log'
2213
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2214
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract_adapter.rb:467:in `log'
2215
- activerecord (4.2.1) lib/active_record/connection_adapters/sqlite3_adapter.rb:293:in `exec_query'
2216
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:347:in `select'
2217
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/database_statements.rb:32:in `select_all'
2218
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `block in select_all'
2219
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:83:in `cache_sql'
2220
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/query_cache.rb:68:in `select_all'
2221
- activerecord (4.2.1) lib/active_record/querying.rb:39:in `find_by_sql'
2222
- activerecord (4.2.1) lib/active_record/relation.rb:638:in `exec_queries'
2223
- activerecord (4.2.1) lib/active_record/relation.rb:514:in `load'
2224
- activerecord (4.2.1) lib/active_record/relation.rb:243:in `to_a'
2225
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2226
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
2227
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
2228
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2229
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2230
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2231
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2232
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2233
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2234
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2235
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2236
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2237
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2238
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2239
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2240
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2241
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2242
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2243
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2244
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2245
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2246
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2247
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2248
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2249
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2250
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2251
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2252
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2253
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2254
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2255
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2256
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2257
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2258
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2259
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2260
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2261
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
2262
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2263
- rack (1.6.4) lib/rack/head.rb:13:in `call'
2264
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2265
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2266
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
2267
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
2268
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2269
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2270
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2271
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2272
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2273
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2274
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2275
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2276
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2277
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2278
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2279
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2280
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2281
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2282
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2283
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2284
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2285
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2286
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2287
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2288
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2289
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
2290
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2291
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2292
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2293
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2294
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
2295
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2296
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2297
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2298
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2299
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2300
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2301
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2302
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2303
-
2304
-
2305
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.8ms)
2306
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
2307
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
2308
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (12.9ms)
2309
-
2310
-
2311
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:09:08 +0300
2312
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2313
- Processing by ClientsController#autocomplete_client_name as HTML
2314
- Parameters: {"q"=>"b1"}
2315
- Client Load (0.1ms) SELECT "clients"."id" FROM "clients" WHERE (LOWER(clients.name) LIKE 'b1%') ORDER BY clients.name ASC LIMIT 10
2316
- Completed 500 Internal Server Error in 11ms (ActiveRecord: 0.3ms)
2317
-
2318
- ActiveModel::MissingAttributeError (missing attribute: name):
2319
- activerecord (4.2.1) lib/active_record/attribute_methods/read.rb:93:in `block in _read_attribute'
2320
- activerecord (4.2.1) lib/active_record/attribute_set.rb:31:in `block in fetch_value'
2321
- activerecord (4.2.1) lib/active_record/attribute.rb:150:in `value'
2322
- activerecord (4.2.1) lib/active_record/attribute_set.rb:31:in `fetch_value'
2323
- activerecord (4.2.1) lib/active_record/attribute_methods/read.rb:93:in `_read_attribute'
2324
- activerecord (4.2.1) lib/active_record/attribute_methods.rb:50:in `__temp__e616d656'
2325
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:64:in `block in items_to_json'
2326
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2327
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2328
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
2329
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
2330
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2331
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2332
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2333
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2334
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2335
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2336
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2337
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2338
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2339
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2340
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2341
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2342
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2343
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2344
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2345
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2346
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2347
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2348
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2349
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2350
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2351
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2352
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2353
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2354
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2355
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2356
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2357
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2358
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2359
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2360
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2361
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2362
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2363
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
2364
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2365
- rack (1.6.4) lib/rack/head.rb:13:in `call'
2366
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2367
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2368
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
2369
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
2370
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2371
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2372
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2373
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2374
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2375
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2376
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2377
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2378
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2379
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2380
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2381
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2382
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2383
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2384
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2385
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2386
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2387
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2388
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2389
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2390
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2391
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
2392
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2393
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2394
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2395
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2396
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
2397
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2398
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2399
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2400
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2401
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2402
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2403
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2404
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2405
-
2406
-
2407
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.1ms)
2408
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms)
2409
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
2410
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (14.7ms)
2411
-
2412
-
2413
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:09:15 +0300
2414
- Processing by ClientsController#autocomplete_client_name as HTML
2415
- Parameters: {"q"=>"b1"}
2416
- Client Load (0.2ms) SELECT "clients"."id" FROM "clients" WHERE (LOWER(clients.name) LIKE 'b1%') ORDER BY clients.name ASC LIMIT 10
2417
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
2418
-
2419
- ActiveModel::MissingAttributeError (missing attribute: name):
2420
- activerecord (4.2.1) lib/active_record/attribute_methods/read.rb:93:in `block in _read_attribute'
2421
- activerecord (4.2.1) lib/active_record/attribute_set.rb:31:in `block in fetch_value'
2422
- activerecord (4.2.1) lib/active_record/attribute.rb:150:in `value'
2423
- activerecord (4.2.1) lib/active_record/attribute_set.rb:31:in `fetch_value'
2424
- activerecord (4.2.1) lib/active_record/attribute_methods/read.rb:93:in `_read_attribute'
2425
- activerecord (4.2.1) lib/active_record/attribute_methods.rb:50:in `__temp__e616d656'
2426
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:64:in `block in items_to_json'
2427
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2428
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2429
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
2430
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
2431
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2432
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2433
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2434
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2435
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2436
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2437
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2438
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2439
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2440
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2441
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2442
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2443
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2444
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2445
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2446
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2447
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2448
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2449
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2450
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2451
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2452
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2453
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2454
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2455
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2456
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2457
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2458
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2459
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2460
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2461
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2462
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2463
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2464
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
2465
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2466
- rack (1.6.4) lib/rack/head.rb:13:in `call'
2467
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2468
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2469
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
2470
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
2471
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2472
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2473
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2474
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2475
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2476
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2477
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2478
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2479
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2480
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2481
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2482
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2483
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2484
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2485
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2486
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2487
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2488
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2489
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2490
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2491
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2492
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
2493
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2494
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2495
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2496
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2497
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
2498
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2499
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2500
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2501
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2502
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2503
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2504
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2505
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2506
-
2507
-
2508
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.2ms)
2509
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
2510
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
2511
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (11.4ms)
2512
-
2513
-
2514
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:09:38 +0300
2515
- Processing by ClientsController#autocomplete_client_name as HTML
2516
- Parameters: {"q"=>"b1"}
2517
- Client Load (0.2ms) SELECT "clients"."id" FROM "clients" WHERE (LOWER(clients.name) LIKE 'b1%') ORDER BY clients.name ASC LIMIT 10
2518
- Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.2ms)
2519
-
2520
- ActiveModel::MissingAttributeError (missing attribute: name):
2521
- activerecord (4.2.1) lib/active_record/attribute_methods/read.rb:93:in `block in _read_attribute'
2522
- activerecord (4.2.1) lib/active_record/attribute_set.rb:31:in `block in fetch_value'
2523
- activerecord (4.2.1) lib/active_record/attribute.rb:150:in `value'
2524
- activerecord (4.2.1) lib/active_record/attribute_set.rb:31:in `fetch_value'
2525
- activerecord (4.2.1) lib/active_record/attribute_methods/read.rb:93:in `_read_attribute'
2526
- activerecord (4.2.1) lib/active_record/attribute_methods.rb:50:in `__temp__e616d656'
2527
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:64:in `block in items_to_json'
2528
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2529
- activerecord (4.2.1) lib/active_record/relation/delegation.rb:46:in `collect'
2530
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:63:in `items_to_json'
2531
- /mnt/data/projects/mmx/temp/bootstrap3_autocomplete_input/lib/bootstrap3_autocomplete_input/controllers/autocomplete.rb:42:in `block in autocomplete'
2532
- actionpack (4.2.1) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2533
- actionpack (4.2.1) lib/abstract_controller/base.rb:198:in `process_action'
2534
- actionpack (4.2.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2535
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2536
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2537
- activesupport (4.2.1) lib/active_support/callbacks.rb:117:in `call'
2538
- activesupport (4.2.1) lib/active_support/callbacks.rb:555:in `block (2 levels) in compile'
2539
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2540
- activesupport (4.2.1) lib/active_support/callbacks.rb:505:in `call'
2541
- activesupport (4.2.1) lib/active_support/callbacks.rb:92:in `_run_callbacks'
2542
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_process_action_callbacks'
2543
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2544
- actionpack (4.2.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2545
- actionpack (4.2.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2546
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
2547
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `block in instrument'
2548
- activesupport (4.2.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2549
- activesupport (4.2.1) lib/active_support/notifications.rb:164:in `instrument'
2550
- actionpack (4.2.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2551
- actionpack (4.2.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2552
- activerecord (4.2.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2553
- actionpack (4.2.1) lib/abstract_controller/base.rb:137:in `process'
2554
- actionview (4.2.1) lib/action_view/rendering.rb:30:in `process'
2555
- actionpack (4.2.1) lib/action_controller/metal.rb:196:in `dispatch'
2556
- actionpack (4.2.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2557
- actionpack (4.2.1) lib/action_controller/metal.rb:237:in `block in action'
2558
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `call'
2559
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:74:in `dispatch'
2560
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:43:in `serve'
2561
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:43:in `block in serve'
2562
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `each'
2563
- actionpack (4.2.1) lib/action_dispatch/journey/router.rb:30:in `serve'
2564
- actionpack (4.2.1) lib/action_dispatch/routing/route_set.rb:819:in `call'
2565
- rack (1.6.4) lib/rack/etag.rb:24:in `call'
2566
- rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
2567
- rack (1.6.4) lib/rack/head.rb:13:in `call'
2568
- actionpack (4.2.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2569
- actionpack (4.2.1) lib/action_dispatch/middleware/flash.rb:260:in `call'
2570
- rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
2571
- rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
2572
- actionpack (4.2.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2573
- activerecord (4.2.1) lib/active_record/query_cache.rb:36:in `call'
2574
- activerecord (4.2.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:649:in `call'
2575
- activerecord (4.2.1) lib/active_record/migration.rb:378:in `call'
2576
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2577
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `call'
2578
- activesupport (4.2.1) lib/active_support/callbacks.rb:88:in `_run_callbacks'
2579
- activesupport (4.2.1) lib/active_support/callbacks.rb:776:in `_run_call_callbacks'
2580
- activesupport (4.2.1) lib/active_support/callbacks.rb:81:in `run_callbacks'
2581
- actionpack (4.2.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2582
- actionpack (4.2.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2583
- actionpack (4.2.1) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
2584
- actionpack (4.2.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2585
- actionpack (4.2.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2586
- railties (4.2.1) lib/rails/rack/logger.rb:38:in `call_app'
2587
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `block in call'
2588
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2589
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2590
- activesupport (4.2.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2591
- railties (4.2.1) lib/rails/rack/logger.rb:20:in `call'
2592
- actionpack (4.2.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2593
- rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
2594
- rack (1.6.4) lib/rack/runtime.rb:18:in `call'
2595
- activesupport (4.2.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
2596
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2597
- actionpack (4.2.1) lib/action_dispatch/middleware/static.rb:113:in `call'
2598
- rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
2599
- railties (4.2.1) lib/rails/engine.rb:518:in `call'
2600
- railties (4.2.1) lib/rails/application.rb:164:in `call'
2601
- rack (1.6.4) lib/rack/lock.rb:17:in `call'
2602
- rack (1.6.4) lib/rack/content_length.rb:15:in `call'
2603
- rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
2604
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
2605
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
2606
- /home/mmx/.rvm/rubies/ruby-2.2.4/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
2607
-
2608
-
2609
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
2610
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
2611
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.5ms)
2612
- Rendered /home/mmx/.rvm/gems/ruby-2.2.4/gems/actionpack-4.2.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (10.9ms)
2613
-
2614
-
2615
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:09:43 +0300
2616
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2617
- Processing by ClientsController#autocomplete_client_name as HTML
2618
- Parameters: {"q"=>"b1"}
2619
- Client Load (0.1ms) SELECT clients.id, clients.name FROM "clients" WHERE (LOWER(clients.name) LIKE 'b1%') ORDER BY clients.name ASC LIMIT 10
2620
- Completed 200 OK in 11ms (Views: 0.1ms | ActiveRecord: 0.3ms)
2621
-
2622
-
2623
- Started GET "/clients/autocomplete_client_name?q=b1" for 127.0.0.1 at 2016-10-05 11:09:55 +0300
2624
- Processing by ClientsController#autocomplete_client_name as HTML
2625
- Parameters: {"q"=>"b1"}
2626
- Client Load (0.1ms) SELECT clients.id, clients.name FROM "clients" WHERE (LOWER(clients.name) LIKE 'b1%') ORDER BY clients.name ASC LIMIT 10
2627
- Completed 200 OK in 5ms (Views: 0.1ms | ActiveRecord: 0.5ms)