rails_jquery_cropper 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (270) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE +20 -0
  3. data/README.md +51 -0
  4. data/Rakefile +55 -0
  5. data/lib/rails_jquery_cropper.rb +6 -0
  6. data/lib/rails_jquery_cropper/version.rb +3 -0
  7. data/test/dummy/README.rdoc +28 -0
  8. data/test/dummy/Rakefile +6 -0
  9. data/test/dummy/app/assets/javascripts/application.js +17 -0
  10. data/test/dummy/app/assets/javascripts/index.js +28 -0
  11. data/test/dummy/app/assets/stylesheets/application.css +19 -0
  12. data/test/dummy/app/assets/stylesheets/index.css +6 -0
  13. data/test/dummy/app/controllers/application_controller.rb +5 -0
  14. data/test/dummy/app/controllers/hello_controller.rb +4 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/views/hello/index.html.erb +8 -0
  17. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  18. data/test/dummy/bin/bundle +3 -0
  19. data/test/dummy/bin/rails +4 -0
  20. data/test/dummy/bin/rake +4 -0
  21. data/test/dummy/bin/setup +29 -0
  22. data/test/dummy/config.ru +4 -0
  23. data/test/dummy/config/application.rb +26 -0
  24. data/test/dummy/config/boot.rb +5 -0
  25. data/test/dummy/config/database.yml +25 -0
  26. data/test/dummy/config/environment.rb +5 -0
  27. data/test/dummy/config/environments/development.rb +41 -0
  28. data/test/dummy/config/environments/production.rb +79 -0
  29. data/test/dummy/config/environments/test.rb +42 -0
  30. data/test/dummy/config/initializers/assets.rb +11 -0
  31. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  32. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  33. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  34. data/test/dummy/config/initializers/inflections.rb +16 -0
  35. data/test/dummy/config/initializers/mime_types.rb +4 -0
  36. data/test/dummy/config/initializers/session_store.rb +3 -0
  37. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  38. data/test/dummy/config/locales/en.yml +23 -0
  39. data/test/dummy/config/routes.rb +56 -0
  40. data/test/dummy/config/secrets.yml +22 -0
  41. data/test/dummy/db/development.sqlite3 +0 -0
  42. data/test/dummy/db/test.sqlite3 +0 -0
  43. data/test/dummy/log/development.log +3929 -0
  44. data/test/dummy/log/test.log +25 -0
  45. data/test/dummy/public/404.html +67 -0
  46. data/test/dummy/public/422.html +67 -0
  47. data/test/dummy/public/500.html +66 -0
  48. data/test/dummy/public/favicon.ico +0 -0
  49. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-Ft5sLsZIUyQLkclbFQjsm8HzI0sG7nl-BwyZ7pfC4E.cache +0 -0
  50. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-jleW9PXzi5Nq6LtU-Kl71_-4NeIpfkMcIQqMSRCEzw.cache +1 -0
  51. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-yTgCXzh5YYImh5vt7kBAUp_rvQNZx83akUQIne7-ZU.cache +2 -0
  52. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/-yb42VrsOxHFs_k2jzrA_M3eCdP2by6FvKtHYLn4vMA.cache +1 -0
  53. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0BNFkI7gg5ZTxzWuXrBphLZ9dBGLgTc664BXJ0TRiw4.cache +1 -0
  54. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/0KL7KWAYwbn4lVtT-aB17GnCMuIqyndPisWs18wfBz8.cache +1 -0
  55. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1aEd7Dghu2okev2KoKJ17xBoS_Hy9DQ9OklKKR-ZIxA.cache +0 -0
  56. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1asfZuCZgdaLZfKRBi8l2BSQH3KDQAdVdSibX01Pccg.cache +2 -0
  57. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1caw7uNRjjxqjJJZdTZShvy_s6JQonGF_isLOXYEfHQ.cache +1 -0
  58. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/1k5eGzaBPLZMqnxFEHMFUWce88fvoG1BOyixJTIK7cY.cache +0 -0
  59. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/2El5Yz4L4rKbembTY2h6j888OSx_k2SvBLmiE6vKJ2k.cache +8 -0
  60. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/30SH4Y6oURSkMvmLANPSNcHwYIZLZDL7UC0cgz548nk.cache +0 -0
  61. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3Ca7iiAKlRyqMZ_K4-D1s8fAECoTq3ThRQ4R7irYdvQ.cache +0 -0
  62. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3Ij4F0RiWlGMZpaCMcsbb80rW6KbdnonAV49DT__yEk.cache +1 -0
  63. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3eJbC5n_MiOWsJsfeiuP-979GaJQy0irGSheRUbWokU.cache +1 -0
  64. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3nZTEMxTbZ66UNYkj8zVGdaRa3des2Oy_JXKEN250aQ.cache +1 -0
  65. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3uYmbQncrSLlBGbkOInEjxaroeV3Ati1ksQUEQC-C-0.cache +0 -0
  66. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/3veZuDjbzDuiJ-mQ3B8vins4cstTRaQSWqsy8TtuirU.cache +2 -0
  67. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/40p6XlVa0Jq1gZMFff79e9ufR1WcZWI8DpfQlJaFwVw.cache +0 -0
  68. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/4pw89_0ZFswZ6Zjw2GcuFu1MfH7DSVFe1KgTRkMFoWs.cache +1 -0
  69. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5GBlxbRK0kPap0VRITwV-55pu5NAluORYbU2EfuWdGc.cache +1 -0
  70. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5SeYC-PIE9a9gbFddMa8rES6GZfL8XwiLETfbV969Vo.cache +0 -0
  71. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5WJ4l6izp6VirKOZJTtKeOT9rkfCHTPt5MqjZx1GQW4.cache +1 -0
  72. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5bsatzn-Bo5kdddHCeeQbt5v9eAOQJu2iGQK6e2aUps.cache +1 -0
  73. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5jmKZwmCi1pv1SdLS2Y_iz5yjYeTwLPko4TgZsIvdaE.cache +0 -0
  74. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/5qurnGx1edm5Tm_FTgJgRvCy2TwIKN64Sf9tHIPJryM.cache +2 -0
  75. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6AUrR6bQvIVKlOaDA4I7_0YgFOpnn825x-dvnE9GwCc.cache +1 -0
  76. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6DcQ9yhAVMITfEZAg7cNALNWt7FZaWxGRYBy3B4enks.cache +2 -0
  77. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/6XDcJzdIjAUDvQyYAEOF-zL8mOyuQIzo9EkkW5gcX0E.cache +1 -0
  78. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7HXs6loovNYYkYAXRk75N4PrnU1VAorohpv16Z_-d8Q.cache +0 -0
  79. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/7w50nBSCFhT-m1fU4BYgkBN65mMO0vkKOPI460t9R1s.cache +0 -0
  80. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/87wXG0vKovR86mKzGWzD-kmP8kgG2NU6Ohi-699NjIg.cache +1 -0
  81. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8CLVoLNXdVO5kQfqbnzBCq2sbrpOv0Y1w79H0NEecgk.cache +1 -0
  82. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/8MM-5PdK5HZQbo_60yRFEsEYX-1bVfmZVF-AIQr_AwI.cache +1 -0
  83. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9-OolWhhvUJwPBf_-Y7M0JVzyK1wVipiAqnkKASI9V8.cache +0 -0
  84. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/9xNNG4OHQ-szBbIJWuLdAL6hONm4jxUyyw7OkPH875w.cache +1 -0
  85. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Aa9LqzRQlATlU2YHUGGZWutBmG755plHlaEKwzVQbKA.cache +2 -0
  86. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AhtdxqAsyYe1AB6wlvnhEOT7PGgTUte7Z5wEihDSuXM.cache +1 -0
  87. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/AjSX1dP9CZwAfKebplJz8WWq92aNcxoFZ4CGB8RlV5s.cache +2 -0
  88. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/BYt7v0iCQEtf2K96GHsnAotgWJGfnjKMFWjONhO9LFI.cache +1 -0
  89. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/C0YcRojqDW3dlvhmivfAx18bhlDHiC3jv7R1sSln85o.cache +1 -0
  90. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CBFoRdbfMSQEmPIrbURZ2LU2HmIwJHKfT7_n0YRdc_w.cache +0 -0
  91. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CRhwrl2wf7eFffxM0zIH54Ap9BjxvsICHnMQ0Amox7Q.cache +0 -0
  92. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CTRHKu1mPWq-ctzdY3xGSB08OVyJ-ydjtXH-98TKutw.cache +0 -0
  93. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CypXG9phbnb2vB2voxESOF_IJOeTJ--d_Yd-wiLrG0s.cache +0 -0
  94. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/CyyIc4WPJrFvep4GnbbSpsEuYOc1Wll14FJ_EkgvxdI.cache +2 -0
  95. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/De3aolZAFtigg1GaWD-ltXlwAWcy815HGVhWahCoohg.cache +1 -0
  96. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/E3BJSovfgcwEzBJAWowo5NzvJvAx4asnRjSDaaHr97Q.cache +1 -0
  97. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/E692esB5onZpBGwLKT8tfMr9_qEdNz7cEAi_Zq_7bmQ.cache +0 -0
  98. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/E9xt18AUZD1WG7vc1As5rN4wkW-ZYELT8DMuzenkt9k.cache +0 -0
  99. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FMkXsiCm4ELeyZmJmQksSmTGneAjNXrI61Cf1-cpz8Y.cache +1 -0
  100. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/FNv6A_AfUP9GwKkGMkFv-B6EHdzlIirQgo74NIKddSM.cache +2 -0
  101. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Fxc6B3_ByLTDpSMcl1lbcg6jIkHldpjUrfqN_cRaK7I.cache +0 -0
  102. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/G4JX1n5NZATF_3MfYrvOnsUhvoT7uI8AzLowjH6vqdo.cache +0 -0
  103. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GdJMY6UQvIKlIymUkvSoR2ogObqm57K5lSybyaXotLk.cache +1 -0
  104. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/GrCtiToTMAuVux3WuJcYj7od5IGFg7A6XzaIK9FFeyU.cache +2 -0
  105. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/HBSovGoi0jVcb05r01hHC9WdFK2x0YGOdtE6OOwL5Xk.cache +0 -0
  106. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Hc0bFaUZpF-eSam6G0UCt-54OY6EPn568CfR_4eRNdQ.cache +2 -0
  107. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IGdx0vL6cdcb6JyPaQYsOEEPkpDXQaEwuKOnfw_zsg0.cache +1 -0
  108. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/I_oQNQidkWewYhR8S7PvZrcTOZzUyDueV7IP0u6MtHs.cache +0 -0
  109. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/IppDHLXv1EcZWDykuob3z3SlH8UMnPco9zpsQD8MTy8.cache +2 -0
  110. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JWahvWo-FVbYtfd2KQ0g5uFYAd1zDYPPBBWpLpuR1JE.cache +1 -0
  111. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JZcrmrbMiuqXn-TJdrm6JU7k7qfA10ic8X4QJQUnTQs.cache +0 -0
  112. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JoLOuc5d2jiOMGs548EIJT7le42GqjPnHrWfD85_hXU.cache +2 -0
  113. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/JumGjRyezrdWpVyiZxmXc_Zxw6uHmRAuYRrXT-2XgRY.cache +0 -0
  114. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Jzuq3hqRI6-12M8NIeB_f9vASJL0-IJarTBBaNso44A.cache +1 -0
  115. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/K9dPkR_-VHzpuBcL3aqTcDGONB7iUV8faP8FKq7-rdc.cache +2 -0
  116. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KEbTql72CpzMx5Bi_e7vEbULU0Qf2cLtOgmU5ucQ3NU.cache +0 -0
  117. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Kxw-xZwjbj7y4rAZXKt_wTUCxOz3T453IOkZa-6K2rY.cache +1 -0
  118. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/KzGq5Z37jjOA5CWAZv8JdVeSzKkePLYUrkermuw_EzU.cache +0 -0
  119. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/L4C4rLkhdmnmh9_yk7GbQDL9uQykAI3p2azqGP8SX0s.cache +1 -0
  120. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/L5aO-NDShxoySXxR3kQVGcbaTof8YZW9071slx_hJm4.cache +1 -0
  121. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/L5nTzjXpzFc4l1VikU6CqETy9OSd5U2QQTo0u9BlLqo.cache +2 -0
  122. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/LJIO02wC3tvAwSShjvczX2oUcd7hUQ-STOC-Ilt2w4Y.cache +0 -0
  123. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/M17n3m9K9MiDobPNtE3l4tHi5_e1A4kIKwil_kMctVc.cache +0 -0
  124. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MSV57UXype_4qMFWBW6dCF_C3uUyFTsyZncHj1j4bXI.cache +0 -0
  125. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/MT2GjWFwVQy0rWPLtwg-4tcNIho1u6R3xo1-2M7cV_w.cache +0 -0
  126. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Mo-VUVqaR6PIsKBxNVIfBNXAK_rd1m88hujCjccN-BM.cache +1 -0
  127. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Mp-xYHVmeMGnfSB5Kl_TVn8uHpC6hVB1nwZn8iP7Ty4.cache +0 -0
  128. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NEpZOdyY6r3jycvIeHo1LU5MTOcbQIJ5VTEK-_t5nGA.cache +0 -0
  129. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/NtePQV0IKfNr1CIqyBJgSm89FK3R2r2iltvLrPCE7pY.cache +1 -0
  130. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/OLmpYTpG4TeDInHtqIyADpq-T9fKTkJ7SVXbWem4Kng.cache +1 -0
  131. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/P0FjDQhN7vWRC-dBW9FzX2ahq2-BbrvAr_GIW5cxTDY.cache +1 -0
  132. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/PB6ZJyN8CCvqaL1vnP9LcOQumy_mtlOX0O2n_jv5zQE.cache +1 -0
  133. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Pddt3jf0l0EbwYhoDzrsqrEmH-O7YyMzJlUxK-nIJZU.cache +1 -0
  134. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Q3g1GeWtL2_PPO6oCTCkhwfIIP0iXxYVym9xIKUBxn4.cache +1 -0
  135. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Qf3PL1yLDZvzmbatNCZZ3KE3vZkPJS-OMMF1YJ6MUKc.cache +0 -0
  136. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/QyICmwSgBZF1qbziJH4V_yf2Xvsas21WcnxvxBtqpHg.cache +1 -0
  137. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RUETX4t7zrOwafbmZ4b_Fe0ISc9i_epQkrnB3T6Hcbk.cache +1 -0
  138. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RaOHzarZwuf5voRy0GQREJSjz3KTkpjuQQBxE3-c-Ik.cache +0 -0
  139. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/RyFZcXAFDZuLXviHkbEa9tAxNsdhLeOFkUmWoTPPb-o.cache +0 -0
  140. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/S6JI7g5jsM0cP-xVfdbjNhxTmpKXj6r1cxnFXJehpz0.cache +1 -0
  141. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/S7fT5q1ca7WzYuh4zSoMKeivos2RcSblgTq01QKJBZ0.cache +1 -0
  142. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SGXUU-QgZTjPhf_6JL9ue-Xx4RDSt18nH3VS74yN-Dg.cache +0 -0
  143. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SJAP2mnawLayuIvA37WTh-zl06YlF-6uia8Oa2WmQZQ.cache +1 -0
  144. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SMvbunDh9brTVbGa-psPgaYlfrBiGATtgO5mia_zVf4.cache +1 -0
  145. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/SVMlBz2ebvW1rgWaeu750gKvsds_l8xOttBboTMQL3c.cache +0 -0
  146. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/T1oZUEYaBIhZo2mMImcYxCSpUDXafvc5HluSd6NDDlU.cache +1 -0
  147. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/THdWTmRUeztU3liJks1d4joexIcHINvLzJAE043uW2U.cache +1 -0
  148. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TPrUnKs8AE9mk2ZZ-YI5GWrVthsbjw5woHSEMaF3Y4o.cache +0 -0
  149. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TU9L8Qm8qyb_HEtxI5eDyTqveZWLx2JFYinCk-NxSxI.cache +1 -0
  150. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/TfrdWOL7sGPn7EeZtI9rTM7jrJibXoJ_-HbgEs6aj_I.cache +0 -0
  151. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/U4DOMUxE2C4Lb9EEJE1ODjvVoyFLs3i1mjvmjD9CiMo.cache +0 -0
  152. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/U8jvkAWqfDFh5zeA6Q-XIS1-gEV8mWjwERknJoxmpbQ.cache +1 -0
  153. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UCxSCfiAxlBm99M0GoE0d-0HjdyqmYBTihMIC-lgq44.cache +0 -0
  154. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/UV7sqdEK-LSp2po1PrVes_vFvEX0siUsItPnqgqzTyo.cache +1 -0
  155. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Ug4QhnirH7LeSznrzgSGXhK1ZYZh-oE7s55pW52ItqA.cache +0 -0
  156. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Uj1jd8-6RK_Wf-eQZi7sml76ow4jNYyRwWzyLq1IHDQ.cache +2 -0
  157. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VC-857mmwlZq7aNkxe_qjHOwNWoPgCj8z5Y9xhAAoOY.cache +0 -0
  158. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VDo2SmC-77ovgBsyrjtnzFJ_dglS5ykAsPOhRYgSZzo.cache +2 -0
  159. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/VXKDrrjlEkIYeeIcd0kq0720EnNRxmHoekfGiF_hVGA.cache +1 -0
  160. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Vcu4FxEWVO4fXy439LhggLV87mPPQSIChHcWumIzNcM.cache +1 -0
  161. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/WozMyyBNmswUCnc9C4HByiEGRSsox1ulKamQxccA_jU.cache +1 -0
  162. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XBrvMpgpReVJGbYD-wGYVBJPDbfZmoKLj3OZ8zJMheE.cache +2 -0
  163. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XYo3EqrrZBOoZDd5sdMr_5Pn5IanrN8fmJIqig4hMnA.cache +0 -0
  164. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XZr9FjwLXJfS7x58FmGbSDTzeOlx_Hw2CpnEmpNKdTM.cache +0 -0
  165. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/XfthEg-SFLME8lBl7KhZxBFWhL2fML1luVem24SwJ4g.cache +1 -0
  166. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YZjHyEKzth6nFPJ8QdjOqseYOLVGfSi-NqiaA3cnZyI.cache +2 -0
  167. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YchnqrUOFF861gfaX9WgE5ODZlZhAastYh32xWz-hUk.cache +0 -0
  168. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YdRaIfoNpxLv6AGg-Gj9jmd0XfI6oU9RF_L_HM0WL3Q.cache +0 -0
  169. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YjGnOyteAkSPWYzxf44YUvbPniey1s84A4dkAldhqlk.cache +0 -0
  170. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/YkjfrDTDLzRzQdHl1ehioy9g0VsIS2OAYlZvuws-ncU.cache +1 -0
  171. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/Z6Ke0WzOn4TeA55ZfETAalda3cCJmTqzv3jlt4gjhpU.cache +1 -0
  172. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ZTsTjjsya-5bEdCMLYQQvqofuf0iMsfvj0cT9M3uKvA.cache +1 -0
  173. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/_qr6I8LLFD9JB9r8-DyDA86NNKw8MBGoF1H1UmXqtr8.cache +1 -0
  174. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aCRxbEnwpEeLUgiPiBP0Ln7cn8bcko8rJsA40o_vq0k.cache +0 -0
  175. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aY8iD5Kf_hjrPdX-nYwBpVcrKaWRfT8wph37LMPNimw.cache +2 -0
  176. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/aghX3vrxtt6PpjInYq2lR_7Q4p3gAO99dq7VpokbB34.cache +1 -0
  177. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/bsFROz9Prbq6ZsfG55kfzAhYXB3bk-KmRwH4V_D-eQw.cache +2 -0
  178. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/c4-6s_jbWWrK2_bjA8KhY9M9slgJT50KXtWghIOzBNE.cache +0 -0
  179. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/caZE7xaGA_7vE45Ovet0lInk_7hur2qxThoeeyNzH3g.cache +1 -0
  180. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ch0zE5Z3EpD-JW7CVDKCYjZ-J9rj3V2ZHNGTJ5Vaxgw.cache +2 -0
  181. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ci6bn_X9AM33vTI2DBTqbSha5dk2eZYshYmKHwp_B8w.cache +1 -0
  182. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/d5c5w445XyrimzIioxNx1kZbwjxRtzVrloehKeWqS-o.cache +0 -0
  183. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/dNvy77C5YVlvN2h2kF3uqh4PlkEp07C2SoZj3mY79Kc.cache +1 -0
  184. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/du56C6UF5kmmCUM1HjQAfsyG_bqR8bULApJ6-Xubyyo.cache +1 -0
  185. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/g11X0wpXfd8-mcYOxMwJ4plbMDo0whdbs0bN0EUxsds.cache +1 -0
  186. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gEXrtwShUfb0xmdyT1f8YL2eZk6SIo7701Fo0cSiHqk.cache +0 -0
  187. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gUjNlv3dX7Fn1EnZ0Fx6VDFziVE-dyhJyzsHQRlPJDw.cache +1 -0
  188. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/gXyc5vRBMcc7THV905IoFJ1U01AWJwD56dj2wvZZ2Ds.cache +1 -0
  189. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ggVT3hH6bu-OMMjG648jvz9x-_bzOdjCv5X36a0un0Q.cache +1 -0
  190. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/h0N5Iy34FMh3WZy0nRps14_HaucJPjCUJdqiWliejDw.cache +2 -0
  191. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/h3P3nzMCKJyzJPQdjLne8DGBhLW63Z9xdDwGjJVs-SA.cache +1 -0
  192. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hLDeDgftpjc6Ex5PXJxoroO58bd3pY1vbJA3AhjsRyY.cache +1 -0
  193. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hQzIJ6Z8qlLwlYFisL-v9YQeBFQy2DacGGamR5_XwIA.cache +1 -0
  194. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hg_4pyLI1Nj-K0jbSCHfZDwmD2fS4dN9P0EfCJZiExU.cache +0 -0
  195. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/hmevmzl4XV2Ac6DyJiyJ7Mrmu9VLPtuOt9uqNdLWYNc.cache +0 -0
  196. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/i9B-I5SifU45QorzK47rktsNLXKPkv3sCxq8LQkQCfU.cache +1 -0
  197. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ii7MvozPBLmEzOnQVyLzM81HU7j8BQLVOBvgRsiS0ts.cache +2 -0
  198. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ipbWPBdvTYjVL35C4A1JBE6F7QPE09XOJJzZQqSPxnI.cache +1 -0
  199. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/isvU4lfrQqm_KaRsO_HBzyrB1M8VKV8LhVXW-wPeCQY.cache +1 -0
  200. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jZ8V-zZj1JUX_0ZHbIBrhJAr56x4EI7IwuheiRt5px0.cache +0 -0
  201. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jox7YGn_lvJzvnt1ARAQvLXWu8ekY1IDt1_vVAZYheE.cache +1 -0
  202. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/jvOpS2VYTMnBX7lbxcnPauLXhQAVbF3CPARTuShwA8Y.cache +0 -0
  203. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/k4Gnmecj5NMCEMKLQZwZpH4BRsT1WKc1wvmRK0X-g9g.cache +2 -0
  204. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kNjvMBX3V5eMza_4NcK-EFL37JfVnQKTSpmuLPHrmWY.cache +1 -0
  205. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kgz8357_IgfEip59hbl7nfcg9A48NzRfweQiIbpBTPE.cache +0 -0
  206. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/kqObusK3-gWtTdvQ7WyQ7vxSTVyRuGkywIthNGl4Xv8.cache +1 -0
  207. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/l7KHRPm6cFXLGR1XIHJD-tPAqjlGJ3RYj9GpsN-1yD8.cache +1 -0
  208. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/lIietRzD94z-M9BFzXzpPbVb9E3tR-v7Wusrm5Zwnk8.cache +1 -0
  209. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/m3H5wilGCH-f5VHSfsNWiTXoOom7FXSf-UVgmGr2efg.cache +0 -0
  210. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mUksr8IEVsPP4X-F9AhhVEIG8E7odHS62FFNpSaI3Uo.cache +0 -0
  211. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/mk7__pWq9k1JZmapX0X8Ft0Ry-6OwCOTuClYkjTemTg.cache +4 -0
  212. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nMOrSjNBKJGDkFXYUXz4d9HJ11Azq8xY6zgfZXpiURo.cache +1 -0
  213. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/nQIHq5MLGBnaiIvGoEe4UeGXRfY38dzqmjandDP25EQ.cache +1 -0
  214. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/oizRs-8PoYBYWzJY7WUT0OCSxMvazg5eUOP0iCPXDWo.cache +2 -0
  215. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ol0K5rZFwRqa582KNkvSzNYsRjaQdc4S9S1ag_9wrKU.cache +0 -0
  216. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/om6UsaI98R46TN-Tdmgj62nZrEO6IIzRn0evNQm8cYg.cache +0 -0
  217. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/p5PqIbQyVABVn0uwvXzkeXiLv_HNu7dEZBPnDZ1r0Y4.cache +1 -0
  218. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pd4D80cTclAglbgaVlgs9gPSw3E6Wuo-mE_SG0he9W0.cache +1 -0
  219. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/pkSyV3n0XCGptuTyWjiM2oUaDlgCllqcIY87GcUz-C4.cache +0 -0
  220. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qGRROCC1FDJbP2wkhanX1wFvyXImDeZQOu5uWUdtYZk.cache +2 -0
  221. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qsaRg9riJ4sC7KBwkqTbHcz7xGVuTXrB8fdGLkLWdlw.cache +1 -0
  222. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/qtgSBNYRSx9ihBgjiF8oEdXtYDfE_M9oN5OAfIXRHXE.cache +0 -0
  223. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/r8CdEucwV21Vu-L5-1mwlqz4tDTFKWdGU6lqT6FEn5M.cache +1 -0
  224. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/rKPQsvBqAb2fHsSf9Z9PojPBg95PwxSX8CzZLILR2Eo.cache +2 -0
  225. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/s4l-YlawIuP1bYLW-reQe95rsHcoBHDGyImalFAImcs.cache +0 -0
  226. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sJanRooLpzQcjc69naeXGP0pHdQ-XiIdB1Xo0VgbQq8.cache +1 -0
  227. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sPZc2lvyh40CcUK5_u1NC8j3uB_fgOU8KV2-KBEAbzo.cache +1 -0
  228. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/sggepu76IBO9LA1vcP5KFU9gTS3v4NAx11PkwjUWm1s.cache +0 -0
  229. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/shyGfTWTIGP2lb7RRIRg4DW6wHGQIrSpMfGSapKU7W8.cache +1 -0
  230. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/soLgomd1VBkNAkIrf-qMqTp2bPse8RzPnkIbulG7jWI.cache +1 -0
  231. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t62jW8hJWJJ3ZYj_tyIMdZB39heeDm7e3cr8LB2ZzVA.cache +0 -0
  232. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/t9WZpuNpnkkkcTDLLKR84oqMmXOO5Xsbt7ZV0Klp0ME.cache +3 -0
  233. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tGJk_hv5JgzVQbMZwEUiHIxBn3bOCeQp_aPbJli_GIE.cache +2 -0
  234. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tIZilZ7mrkmQBlvjZHNxnttd7WSYADsYVdBzTpdEIZA.cache +0 -0
  235. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ta3ayUzX3stXB-OFVHxawM4QOAWdS7yZOCgSEux5858.cache +0 -0
  236. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tail27osIoUE0aNnXocWaAoSicMlQJztcIbDupFWTrY.cache +1 -0
  237. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/tdKAvcc01NzBCjP4T6hP7X1_ATUxytHh1lY8kFR7Mq4.cache +2 -0
  238. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/u6UJTtU5fmCon6YVWBJNOaAtiCyYF6q-pR9E0wzjMTA.cache +0 -0
  239. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uA_jpxo2wGcRXMFX4vSIhshSTAQVh6gGj9n_VjIA1uc.cache +1 -0
  240. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/uCTpMW0n7rMn6srBDPp5j09KNwRcTtnaQv2Andcr8MI.cache +1 -0
  241. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/v91gi1Yi8jfBXhWNhSCG7LWrICW6VytAhtC-MFXw7Lk.cache +1 -0
  242. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/v9sPLdusRu5bclU9I6-enMud-m4P4DJ7sP3dt7s4X0g.cache +1 -0
  243. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vHytxDf7_3sZ2UkZJm09jQXstdk33SOvncSvfO69Sac.cache +0 -0
  244. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vTGl2szKv127tH3V0aPJOJaEtI5HVx8UEA7GLUBBiFg.cache +1 -0
  245. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vUAFvujib2q5Y3CPNeovSI_LR5_AFqYr5LQJY36sTmY.cache +1 -0
  246. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vZ6HRZaJ4_4EzD4VThxeKntP-024iS8LIwSoeDElo3A.cache +1 -0
  247. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vdRekNVgT8s5lmGIEuo1yIXtV7XcQwgSNGwcrQ7cwMQ.cache +2 -0
  248. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/vetZdqr6S9Ax-Uv1wYjOMFgJCYt14Rnn-ol1CfR7q8A.cache +2 -0
  249. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/voUhrPjvhaRtUme-K70cOR1Ld1la6U-g6OvGZN5o97Q.cache +1 -0
  250. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wYvE0YAdqZnh-JW4104dJ6o-XZJVUwCf_7wbWglLuOw.cache +1 -0
  251. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/wkkFr5NgueaaoiVp2fzaH3KAlWNdUrGZcFCfblGa6VY.cache +0 -0
  252. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/x-OcwIIaFprjVAlEloREHcFWZ5MpO2PRrVDw1Cs3pQQ.cache +2 -0
  253. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xFx2uZVXYxhiefNb3DU76zJaf_iBfZDjg9LOG3jM9W8.cache +0 -0
  254. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xXM63nRACyKTLPqNaT_9cTdmnUIH0lBhOEuEm98y_z0.cache +0 -0
  255. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/xnyg4KHu9FuAwl01PYxxJxt2zmyln6HANA7O6oarfr0.cache +1 -0
  256. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/y3sXAdkbljNWoA0WHGH8pJcYEsUvgW4izn3t5oZoF-Q.cache +0 -0
  257. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yEwe6HZCpDHWRcJ9v-9BI_ilKX1LNGDSLAucSfSdZKM.cache +0 -0
  258. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yp15DLPX-WH5Q81m5S_wxEwH0F4SBQK6XoDbluXZyEU.cache +0 -0
  259. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/yy2qhiv5TObH3lXqgXeArkPtbWWx71ny8Wn3F_l3j38.cache +0 -0
  260. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/z7ceTd7KxktdwJt5ptBDwe31mpWjVa9AmKves4bUUAI.cache +1 -0
  261. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/z9LoJxoN8uiG7GiAGGOeuFvJiDEgJeyNv14YFHvOSHw.cache +1 -0
  262. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zVcyJYSVjsndpY3957ZtjHPqXt1SFvu1Qm2txOpNPRM.cache +3 -0
  263. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zY_WvMA1Z4S6s7KEcSME4sUtiJz-eeaS625zaZsZju8.cache +2 -0
  264. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zj9pYA-JtIE0ReQ7zFgmORktUY9ASwJKF58CQ3AyA34.cache +1 -0
  265. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zqgll7aOE86nOJ-qgUOU4kksMHgQ3xFgIsM7YjHqwCA.cache +1 -0
  266. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/zsW66SVm3gKfrmlRPVXEUPMuz2YhZDxXfStoBFDewPU.cache +1 -0
  267. data/test/dummy/tmp/cache/assets/development/sprockets/v3.0/ztxNLESaVO0kT4vDEn0l0iaALFcIIuTERXYs2RK6nr8.cache +1 -0
  268. data/test/rails_jquery_cropper_test.rb +8 -0
  269. data/test/test_helper.rb +17 -0
  270. metadata +603 -0
@@ -0,0 +1,79 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # Code is not reloaded between requests.
5
+ config.cache_classes = true
6
+
7
+ # Eager load code on boot. This eager loads most of Rails and
8
+ # your application in memory, allowing both threaded web servers
9
+ # and those relying on copy on write to perform better.
10
+ # Rake tasks automatically ignore this option for performance.
11
+ config.eager_load = true
12
+
13
+ # Full error reports are disabled and caching is turned on.
14
+ config.consider_all_requests_local = false
15
+ config.action_controller.perform_caching = true
16
+
17
+ # Enable Rack::Cache to put a simple HTTP cache in front of your application
18
+ # Add `rack-cache` to your Gemfile before enabling this.
19
+ # For large-scale production use, consider using a caching reverse proxy like
20
+ # NGINX, varnish or squid.
21
+ # config.action_dispatch.rack_cache = true
22
+
23
+ # Disable serving static files from the `/public` folder by default since
24
+ # Apache or NGINX already handles this.
25
+ config.serve_static_files = ENV['RAILS_SERVE_STATIC_FILES'].present?
26
+
27
+ # Compress JavaScripts and CSS.
28
+ config.assets.js_compressor = :uglifier
29
+ # config.assets.css_compressor = :sass
30
+
31
+ # Do not fallback to assets pipeline if a precompiled asset is missed.
32
+ config.assets.compile = false
33
+
34
+ # Asset digests allow you to set far-future HTTP expiration dates on all assets,
35
+ # yet still be able to expire them through the digest params.
36
+ config.assets.digest = true
37
+
38
+ # `config.assets.precompile` and `config.assets.version` have moved to config/initializers/assets.rb
39
+
40
+ # Specifies the header that your server uses for sending files.
41
+ # config.action_dispatch.x_sendfile_header = 'X-Sendfile' # for Apache
42
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for NGINX
43
+
44
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
45
+ # config.force_ssl = true
46
+
47
+ # Use the lowest log level to ensure availability of diagnostic information
48
+ # when problems arise.
49
+ config.log_level = :debug
50
+
51
+ # Prepend all log lines with the following tags.
52
+ # config.log_tags = [ :subdomain, :uuid ]
53
+
54
+ # Use a different logger for distributed setups.
55
+ # config.logger = ActiveSupport::TaggedLogging.new(SyslogLogger.new)
56
+
57
+ # Use a different cache store in production.
58
+ # config.cache_store = :mem_cache_store
59
+
60
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server.
61
+ # config.action_controller.asset_host = 'http://assets.example.com'
62
+
63
+ # Ignore bad email addresses and do not raise email delivery errors.
64
+ # Set this to true and configure the email server for immediate delivery to raise delivery errors.
65
+ # config.action_mailer.raise_delivery_errors = false
66
+
67
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
68
+ # the I18n.default_locale when a translation cannot be found).
69
+ config.i18n.fallbacks = true
70
+
71
+ # Send deprecation notices to registered listeners.
72
+ config.active_support.deprecation = :notify
73
+
74
+ # Use default logging formatter so that PID and timestamp are not suppressed.
75
+ config.log_formatter = ::Logger::Formatter.new
76
+
77
+ # Do not dump schema after migrations.
78
+ config.active_record.dump_schema_after_migration = false
79
+ end
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,56 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+ root 'hello#index'
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 6ffa7b12972b66ffbed20bb75953432796e1845390fcbbb7e4256471b2a002ea75dcfb92218a5602af0863ba0b4a38fa76829654acfea7745062e9099ceb4ece
15
+
16
+ test:
17
+ secret_key_base: 50a6e16f6e584885152e0a37ba92f52ddf2ecaea9ba172d52b8a7058f4f6eb1fb66e8cf00ff90b2b71348189bbae06e964064b828b5a9b32a137204e378f5802
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
File without changes
File without changes
@@ -0,0 +1,3929 @@
1
+
2
+
3
+ Started GET "/" for ::1 at 2015-07-19 21:17:54 +0300
4
+
5
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
6
+ activerecord (4.2.3) lib/active_record/connection_adapters/connection_specification.rb:177:in `rescue in spec'
7
+ activerecord (4.2.3) lib/active_record/connection_adapters/connection_specification.rb:174:in `spec'
8
+ activerecord (4.2.3) lib/active_record/connection_handling.rb:50:in `establish_connection'
9
+ activerecord (4.2.3) lib/active_record/railtie.rb:120:in `block (2 levels) in <class:Railtie>'
10
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
11
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
12
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
13
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:44:in `each'
14
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
15
+ activerecord (4.2.3) lib/active_record/base.rb:315:in `<module:ActiveRecord>'
16
+ activerecord (4.2.3) lib/active_record/base.rb:26:in `<top (required)>'
17
+ activerecord (4.2.3) lib/active_record/migration.rb:383:in `connection'
18
+ activerecord (4.2.3) lib/active_record/migration.rb:370:in `call'
19
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
21
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
24
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
25
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
26
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
27
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
28
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
29
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
30
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
31
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
32
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
33
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
34
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
35
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
36
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
37
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
38
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
39
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
40
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
41
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
42
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
43
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
44
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
45
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
46
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
47
+
48
+
49
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
50
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
51
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
52
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (135.6ms)
53
+
54
+
55
+ Started GET "/" for ::1 at 2015-07-19 21:18:35 +0300
56
+
57
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
58
+ activerecord (4.2.3) lib/active_record/connection_adapters/connection_specification.rb:177:in `rescue in spec'
59
+ activerecord (4.2.3) lib/active_record/connection_adapters/connection_specification.rb:174:in `spec'
60
+ activerecord (4.2.3) lib/active_record/connection_handling.rb:50:in `establish_connection'
61
+ activerecord (4.2.3) lib/active_record/railtie.rb:120:in `block (2 levels) in <class:Railtie>'
62
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
63
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
64
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
65
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:44:in `each'
66
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
67
+ activerecord (4.2.3) lib/active_record/base.rb:315:in `<module:ActiveRecord>'
68
+ activerecord (4.2.3) lib/active_record/base.rb:26:in `<top (required)>'
69
+ activerecord (4.2.3) lib/active_record/migration.rb:383:in `connection'
70
+ activerecord (4.2.3) lib/active_record/migration.rb:370:in `call'
71
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
72
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
73
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
74
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
75
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
76
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
77
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
78
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
79
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
80
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
81
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
82
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
83
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
84
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
85
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
86
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
87
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
88
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
89
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
90
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
91
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
92
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
93
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
94
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
95
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
96
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
97
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
98
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
99
+
100
+
101
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
102
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
103
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
104
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (84.9ms)
105
+
106
+
107
+ Started GET "/" for ::1 at 2015-07-19 21:18:36 +0300
108
+
109
+ Gem::LoadError (Specified 'sqlite3' for database adapter, but the gem is not loaded. Add `gem 'sqlite3'` to your Gemfile (and ensure its version is at the minimum required by ActiveRecord).):
110
+ activerecord (4.2.3) lib/active_record/connection_adapters/connection_specification.rb:177:in `rescue in spec'
111
+ activerecord (4.2.3) lib/active_record/connection_adapters/connection_specification.rb:174:in `spec'
112
+ activerecord (4.2.3) lib/active_record/connection_handling.rb:50:in `establish_connection'
113
+ activerecord (4.2.3) lib/active_record/railtie.rb:120:in `block (2 levels) in <class:Railtie>'
114
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:38:in `instance_eval'
115
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:38:in `execute_hook'
116
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:45:in `block in run_load_hooks'
117
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:44:in `each'
118
+ activesupport (4.2.3) lib/active_support/lazy_load_hooks.rb:44:in `run_load_hooks'
119
+ activerecord (4.2.3) lib/active_record/base.rb:315:in `<module:ActiveRecord>'
120
+ activerecord (4.2.3) lib/active_record/base.rb:26:in `<top (required)>'
121
+ activerecord (4.2.3) lib/active_record/migration.rb:383:in `connection'
122
+ activerecord (4.2.3) lib/active_record/migration.rb:370:in `call'
123
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
124
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
125
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
126
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
127
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
128
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
129
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
130
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
131
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
132
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
133
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
134
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
135
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
136
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
137
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
138
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
139
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
140
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
141
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
142
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
143
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
144
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
145
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
146
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
147
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
148
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
149
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
150
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
151
+
152
+
153
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
154
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
155
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
156
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.1ms)
157
+
158
+
159
+ Started GET "/" for ::1 at 2015-07-19 21:18:48 +0300
160
+
161
+ ActionController::RoutingError (uninitialized constant HelloController):
162
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:261:in `const_get'
163
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:261:in `block in constantize'
164
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `each'
165
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `inject'
166
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `constantize'
167
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:72:in `controller_reference'
168
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:62:in `controller'
169
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:41:in `serve'
170
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
171
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
172
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
173
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
174
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
175
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
176
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
177
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
178
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
179
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
180
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
181
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
182
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
183
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
184
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
185
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
186
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
187
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
188
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
189
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
190
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
191
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
192
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
193
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
194
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
195
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
196
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
197
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
198
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
199
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
200
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
201
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
202
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
203
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
204
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
205
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
206
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
207
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
208
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
209
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
210
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
211
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
212
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
213
+
214
+
215
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
216
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
217
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (47.1ms)
218
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.8ms)
219
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (151.9ms)
220
+
221
+
222
+ Started GET "/" for ::1 at 2015-07-19 21:18:48 +0300
223
+
224
+ ActionController::RoutingError (uninitialized constant HelloController):
225
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:261:in `const_get'
226
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:261:in `block in constantize'
227
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `each'
228
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `inject'
229
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `constantize'
230
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:72:in `controller_reference'
231
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:62:in `controller'
232
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:41:in `serve'
233
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
234
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
235
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
236
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
237
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
238
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
239
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
240
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
241
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
242
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
243
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
244
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
245
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
246
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
247
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
248
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
249
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
250
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
251
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
252
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
253
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
254
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
255
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
256
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
257
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
258
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
259
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
260
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
261
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
262
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
263
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
264
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
265
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
266
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
267
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
268
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
269
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
270
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
271
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
272
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
273
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
274
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
275
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
276
+
277
+
278
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
279
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
280
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
281
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
282
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.1ms)
283
+
284
+
285
+ Started GET "/" for ::1 at 2015-07-19 21:18:49 +0300
286
+
287
+ ActionController::RoutingError (uninitialized constant HelloController):
288
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:261:in `const_get'
289
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:261:in `block in constantize'
290
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `each'
291
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `inject'
292
+ activesupport (4.2.3) lib/active_support/inflector/methods.rb:259:in `constantize'
293
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:72:in `controller_reference'
294
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:62:in `controller'
295
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:41:in `serve'
296
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
297
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
298
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
299
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
300
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
301
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
302
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
303
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
304
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
305
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
306
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
307
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
308
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
309
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
310
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
311
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
312
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
313
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
314
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
315
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
316
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
317
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
318
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
319
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
320
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
321
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
322
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
323
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
324
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
325
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
326
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
327
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
328
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
329
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
330
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
331
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
332
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
333
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
334
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
335
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
336
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
337
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
338
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
339
+
340
+
341
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
342
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
343
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
344
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
345
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.1ms)
346
+
347
+
348
+ Started GET "/" for ::1 at 2015-07-19 21:19:35 +0300
349
+ Processing by HelloController#index as HTML
350
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
351
+
352
+ ActionView::MissingTemplate (Missing template hello/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
353
+ * "/Users/syndbg/projects/rails_jquery_cropper/test/dummy/app/views"
354
+ ):
355
+ actionview (4.2.3) lib/action_view/path_set.rb:46:in `find'
356
+ actionview (4.2.3) lib/action_view/lookup_context.rb:121:in `find'
357
+ actionview (4.2.3) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
358
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
359
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:8:in `render'
360
+ actionview (4.2.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
361
+ actionview (4.2.3) lib/action_view/renderer/renderer.rb:23:in `render'
362
+ actionview (4.2.3) lib/action_view/rendering.rb:100:in `_render_template'
363
+ actionpack (4.2.3) lib/action_controller/metal/streaming.rb:217:in `_render_template'
364
+ actionview (4.2.3) lib/action_view/rendering.rb:83:in `render_to_body'
365
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
366
+ actionpack (4.2.3) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
367
+ actionpack (4.2.3) lib/abstract_controller/rendering.rb:25:in `render'
368
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
369
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
370
+ activesupport (4.2.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
371
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
372
+ activesupport (4.2.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
373
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
374
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
375
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
376
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:43:in `render'
377
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
378
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
379
+ actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
380
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
381
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
382
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
383
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
384
+ activesupport (4.2.3) lib/active_support/callbacks.rb:553:in `block (2 levels) in compile'
385
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
386
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
387
+ activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
388
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
389
+ actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
390
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
391
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
392
+ activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
393
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
394
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
395
+ actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
396
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
397
+ actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
398
+ actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
399
+ actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
400
+ actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
401
+ actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
402
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
403
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
404
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
405
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
406
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
407
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
408
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
409
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
410
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
411
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
412
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
413
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
414
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
415
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
416
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
417
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
418
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
419
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
420
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
421
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
422
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
423
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
424
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
425
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
426
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
427
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
428
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
429
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
430
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
431
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
432
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
433
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
434
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
435
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
436
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
437
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
438
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
439
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
440
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
441
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
442
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
443
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
444
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
445
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
446
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
447
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
448
+
449
+
450
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.8ms)
451
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms)
452
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
453
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (72.4ms)
454
+
455
+
456
+ Started GET "/" for ::1 at 2015-07-19 21:19:51 +0300
457
+ Processing by HelloController#index as HTML
458
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.0ms)
459
+
460
+ ActionView::MissingTemplate (Missing template hello/index, application/index with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
461
+ * "/Users/syndbg/projects/rails_jquery_cropper/test/dummy/app/views"
462
+ ):
463
+ actionview (4.2.3) lib/action_view/path_set.rb:46:in `find'
464
+ actionview (4.2.3) lib/action_view/lookup_context.rb:121:in `find'
465
+ actionview (4.2.3) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
466
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
467
+ actionview (4.2.3) lib/action_view/renderer/template_renderer.rb:8:in `render'
468
+ actionview (4.2.3) lib/action_view/renderer/renderer.rb:42:in `render_template'
469
+ actionview (4.2.3) lib/action_view/renderer/renderer.rb:23:in `render'
470
+ actionview (4.2.3) lib/action_view/rendering.rb:100:in `_render_template'
471
+ actionpack (4.2.3) lib/action_controller/metal/streaming.rb:217:in `_render_template'
472
+ actionview (4.2.3) lib/action_view/rendering.rb:83:in `render_to_body'
473
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
474
+ actionpack (4.2.3) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
475
+ actionpack (4.2.3) lib/abstract_controller/rendering.rb:25:in `render'
476
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:16:in `render'
477
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
478
+ activesupport (4.2.3) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
479
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
480
+ activesupport (4.2.3) lib/active_support/core_ext/benchmark.rb:12:in `ms'
481
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
482
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
483
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
484
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:43:in `render'
485
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
486
+ actionpack (4.2.3) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
487
+ actionpack (4.2.3) lib/abstract_controller/base.rb:198:in `process_action'
488
+ actionpack (4.2.3) lib/action_controller/metal/rendering.rb:10:in `process_action'
489
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
490
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
491
+ activesupport (4.2.3) lib/active_support/callbacks.rb:115:in `call'
492
+ activesupport (4.2.3) lib/active_support/callbacks.rb:553:in `block (2 levels) in compile'
493
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
494
+ activesupport (4.2.3) lib/active_support/callbacks.rb:503:in `call'
495
+ activesupport (4.2.3) lib/active_support/callbacks.rb:88:in `run_callbacks'
496
+ actionpack (4.2.3) lib/abstract_controller/callbacks.rb:19:in `process_action'
497
+ actionpack (4.2.3) lib/action_controller/metal/rescue.rb:29:in `process_action'
498
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
499
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `block in instrument'
500
+ activesupport (4.2.3) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
501
+ activesupport (4.2.3) lib/active_support/notifications.rb:164:in `instrument'
502
+ actionpack (4.2.3) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
503
+ actionpack (4.2.3) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
504
+ activerecord (4.2.3) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
505
+ actionpack (4.2.3) lib/abstract_controller/base.rb:137:in `process'
506
+ actionview (4.2.3) lib/action_view/rendering.rb:30:in `process'
507
+ actionpack (4.2.3) lib/action_controller/metal.rb:196:in `dispatch'
508
+ actionpack (4.2.3) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
509
+ actionpack (4.2.3) lib/action_controller/metal.rb:237:in `block in action'
510
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `call'
511
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
512
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:45:in `serve'
513
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:43:in `block in serve'
514
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `each'
515
+ actionpack (4.2.3) lib/action_dispatch/journey/router.rb:30:in `serve'
516
+ actionpack (4.2.3) lib/action_dispatch/routing/route_set.rb:821:in `call'
517
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
518
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
519
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
520
+ actionpack (4.2.3) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
521
+ actionpack (4.2.3) lib/action_dispatch/middleware/flash.rb:260:in `call'
522
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
523
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
524
+ actionpack (4.2.3) lib/action_dispatch/middleware/cookies.rb:560:in `call'
525
+ activerecord (4.2.3) lib/active_record/query_cache.rb:36:in `call'
526
+ activerecord (4.2.3) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
527
+ activerecord (4.2.3) lib/active_record/migration.rb:377:in `call'
528
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
529
+ activesupport (4.2.3) lib/active_support/callbacks.rb:84:in `run_callbacks'
530
+ actionpack (4.2.3) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
531
+ actionpack (4.2.3) lib/action_dispatch/middleware/reloader.rb:73:in `call'
532
+ actionpack (4.2.3) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
533
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
534
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
535
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
536
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
537
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
538
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
539
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
540
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
541
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
542
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
543
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
544
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
545
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
546
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
547
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
548
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
549
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
550
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
551
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
552
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
553
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
554
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
555
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
556
+
557
+
558
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (16.4ms)
559
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms)
560
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
561
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (79.1ms)
562
+
563
+
564
+ Started GET "/" for ::1 at 2015-07-19 21:20:36 +0300
565
+ Processing by HelloController#index as HTML
566
+ Rendered hello/index.html.erb within layouts/application (0.5ms)
567
+ Completed 200 OK in 392ms (Views: 391.8ms | ActiveRecord: 0.0ms)
568
+
569
+
570
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-19 21:20:37 +0300
571
+
572
+
573
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-07-19 21:20:37 +0300
574
+
575
+
576
+ Started GET "/" for ::1 at 2015-07-19 21:21:03 +0300
577
+ Processing by HelloController#index as HTML
578
+ Rendered hello/index.html.erb within layouts/application (1.8ms)
579
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
580
+
581
+
582
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-07-19 21:21:04 +0300
583
+
584
+
585
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-19 21:21:04 +0300
586
+
587
+
588
+ Started GET "/assets/css/bootstrap.min.css" for ::1 at 2015-07-19 21:21:04 +0300
589
+
590
+ ActionController::RoutingError (No route matches [GET] "/assets/css/bootstrap.min.css"):
591
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
592
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
593
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
594
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
595
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
596
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
597
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
598
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
599
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
600
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
601
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
602
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
603
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
604
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
605
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
606
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
607
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
608
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
609
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
610
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
611
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
612
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
613
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
614
+
615
+
616
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
617
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
618
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
619
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
620
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.4ms)
621
+
622
+
623
+ Started GET "/dist/cropper.css" for ::1 at 2015-07-19 21:21:04 +0300
624
+
625
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.css"):
626
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
627
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
628
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
629
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
630
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
631
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
632
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
633
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
634
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
635
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
636
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
637
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
638
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
639
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
640
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
641
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
642
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
643
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
644
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
645
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
646
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
647
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
648
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
649
+
650
+
651
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
652
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
653
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
654
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
655
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.2ms)
656
+
657
+
658
+ Started GET "/css/main.css" for ::1 at 2015-07-19 21:21:04 +0300
659
+
660
+ ActionController::RoutingError (No route matches [GET] "/css/main.css"):
661
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
662
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
663
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
664
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
665
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
666
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
667
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
668
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
669
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
670
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
671
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
672
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
673
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
674
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
675
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
676
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
677
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
678
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
679
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
680
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
681
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
682
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
683
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
684
+
685
+
686
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
687
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
688
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
689
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
690
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (83.3ms)
691
+
692
+
693
+ Started GET "/assets/js/bootstrap.min.js" for ::1 at 2015-07-19 21:21:04 +0300
694
+
695
+ ActionController::RoutingError (No route matches [GET] "/assets/js/bootstrap.min.js"):
696
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
697
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
698
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
699
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
700
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
701
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
702
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
703
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
704
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
705
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
706
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
707
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
708
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
709
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
710
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
711
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
712
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
713
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
714
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
715
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
716
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
717
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
718
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
719
+
720
+
721
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
722
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
723
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
724
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
725
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (85.0ms)
726
+
727
+
728
+ Started GET "/assets/js/jquery.min.js" for ::1 at 2015-07-19 21:21:04 +0300
729
+
730
+ ActionController::RoutingError (No route matches [GET] "/assets/js/jquery.min.js"):
731
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
732
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
733
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
734
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
735
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
736
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
737
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
738
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
739
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
740
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
741
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
742
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
743
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
744
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
745
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
746
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
747
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
748
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
749
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
750
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
751
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
752
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
753
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
754
+
755
+
756
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
757
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
758
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
759
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
760
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.4ms)
761
+
762
+
763
+ Started GET "/dist/cropper.js" for ::1 at 2015-07-19 21:21:04 +0300
764
+
765
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.js"):
766
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
767
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
768
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
769
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
770
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
771
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
772
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
773
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
774
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
775
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
776
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
777
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
778
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
779
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
780
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
781
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
782
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
783
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
784
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
785
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
786
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
787
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
788
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
789
+
790
+
791
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
792
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
793
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
794
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
795
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.0ms)
796
+
797
+
798
+ Started GET "/js/main.js" for ::1 at 2015-07-19 21:21:04 +0300
799
+
800
+ ActionController::RoutingError (No route matches [GET] "/js/main.js"):
801
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
802
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
803
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
804
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
805
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
806
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
807
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
808
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
809
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
810
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
811
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
812
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
813
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
814
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
815
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
816
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
817
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
818
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
819
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
820
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
821
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
822
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
823
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
824
+
825
+
826
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
827
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
828
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms)
829
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.1ms)
830
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.9ms)
831
+
832
+
833
+ Started GET "/assets/img/picture.jpg" for ::1 at 2015-07-19 21:21:05 +0300
834
+
835
+ ActionController::RoutingError (No route matches [GET] "/assets/img/picture.jpg"):
836
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
837
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
838
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
839
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
840
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
841
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
842
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
843
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
844
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
845
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
846
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
847
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
848
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
849
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
850
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
851
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
852
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
853
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
854
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
855
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
856
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
857
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
858
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
859
+
860
+
861
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
862
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
863
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
864
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms)
865
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.5ms)
866
+
867
+
868
+ Started GET "/" for ::1 at 2015-07-19 21:22:05 +0300
869
+ Processing by HelloController#index as HTML
870
+ Rendered hello/index.html.erb within layouts/application (2.2ms)
871
+ Completed 200 OK in 32ms (Views: 31.8ms | ActiveRecord: 0.0ms)
872
+
873
+
874
+ Started GET "/assets/css/bootstrap.min.css" for ::1 at 2015-07-19 21:22:05 +0300
875
+
876
+ ActionController::RoutingError (No route matches [GET] "/assets/css/bootstrap.min.css"):
877
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
878
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
879
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
880
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
881
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
882
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
883
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
884
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
885
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
886
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
887
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
888
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
889
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
890
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
891
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
892
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
893
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
894
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
895
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
896
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
897
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
898
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
899
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
900
+
901
+
902
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms)
903
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms)
904
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.8ms)
905
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.0ms)
906
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (133.8ms)
907
+
908
+
909
+ Started GET "/assets/js/bootstrap.min.js" for ::1 at 2015-07-19 21:22:06 +0300
910
+
911
+ ActionController::RoutingError (No route matches [GET] "/assets/js/bootstrap.min.js"):
912
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
913
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
914
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
915
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
916
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
917
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
918
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
919
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
920
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
921
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
922
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
923
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
924
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
925
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
926
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
927
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
928
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
929
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
930
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
931
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
932
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
933
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
934
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
935
+
936
+
937
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
938
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
939
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
940
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
941
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (88.0ms)
942
+
943
+
944
+ Started GET "/css/main.css" for ::1 at 2015-07-19 21:22:06 +0300
945
+
946
+ ActionController::RoutingError (No route matches [GET] "/css/main.css"):
947
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
948
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
949
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
950
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
951
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
952
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
953
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
954
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
955
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
956
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
957
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
958
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
959
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
960
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
961
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
962
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
963
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
964
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
965
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
966
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
967
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
968
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
969
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
970
+
971
+
972
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
973
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
974
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.9ms)
975
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
976
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.3ms)
977
+
978
+
979
+ Started GET "/assets/js/jquery.min.js" for ::1 at 2015-07-19 21:22:06 +0300
980
+
981
+ ActionController::RoutingError (No route matches [GET] "/assets/js/jquery.min.js"):
982
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
983
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
984
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
985
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
986
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
987
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
988
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
989
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
990
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
991
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
992
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
993
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
994
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
995
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
996
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
997
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
998
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
999
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1000
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1001
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1002
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1003
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1004
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1005
+
1006
+
1007
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
1008
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
1009
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
1010
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1011
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (84.1ms)
1012
+
1013
+
1014
+ Started GET "/dist/cropper.css" for ::1 at 2015-07-19 21:22:06 +0300
1015
+
1016
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.css"):
1017
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1018
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1019
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1020
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1021
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1022
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1023
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1024
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1025
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1026
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1027
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1028
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1029
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1030
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1031
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1032
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1033
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1034
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1035
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1036
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1037
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1038
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1039
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1040
+
1041
+
1042
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
1043
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1044
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
1045
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1046
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.1ms)
1047
+
1048
+
1049
+ Started GET "/dist/cropper.js" for ::1 at 2015-07-19 21:22:06 +0300
1050
+
1051
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.js"):
1052
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1053
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1054
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1055
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1056
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1057
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1058
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1059
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1060
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1061
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1062
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1063
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1064
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1065
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1066
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1067
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1068
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1069
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1070
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1071
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1072
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1073
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1074
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1075
+
1076
+
1077
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
1078
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.7ms)
1079
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.1ms)
1080
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1081
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.3ms)
1082
+
1083
+
1084
+ Started GET "/js/main.js" for ::1 at 2015-07-19 21:22:06 +0300
1085
+
1086
+ ActionController::RoutingError (No route matches [GET] "/js/main.js"):
1087
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1088
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1089
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1090
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1091
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1092
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1093
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1094
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1095
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1096
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1097
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1098
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1099
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1100
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1101
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1102
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1103
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1104
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1105
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1106
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1107
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1108
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1109
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1110
+
1111
+
1112
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1113
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1114
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
1115
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
1116
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.5ms)
1117
+
1118
+
1119
+ Started GET "/" for ::1 at 2015-07-19 21:23:15 +0300
1120
+ Processing by HelloController#index as HTML
1121
+ Rendered hello/index.html.erb within layouts/application (1.5ms)
1122
+ Completed 500 Internal Server Error in 136ms (ActiveRecord: 0.0ms)
1123
+
1124
+ ActionView::Template::Error (couldn't find file 'jquery2' with type 'application/javascript'):
1125
+ 3: <head>
1126
+ 4: <title>Dummy</title>
1127
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1128
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1129
+ 7: <%= csrf_meta_tags %>
1130
+ 8: </head>
1131
+ 9: <body>
1132
+ app/assets/javascripts/application.js:13
1133
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1466353688447707486_70318767327520'
1134
+
1135
+
1136
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.5ms)
1137
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms)
1138
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
1139
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (302.4ms)
1140
+
1141
+
1142
+ Started GET "/" for ::1 at 2015-07-19 21:23:18 +0300
1143
+ Processing by HelloController#index as HTML
1144
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
1145
+ Completed 500 Internal Server Error in 37ms (ActiveRecord: 0.0ms)
1146
+
1147
+ ActionView::Template::Error (couldn't find file 'jquery2' with type 'application/javascript'):
1148
+ 3: <head>
1149
+ 4: <title>Dummy</title>
1150
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1151
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1152
+ 7: <%= csrf_meta_tags %>
1153
+ 8: </head>
1154
+ 9: <body>
1155
+ app/assets/javascripts/application.js:13
1156
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___1466353688447707486_70318767327520'
1157
+
1158
+
1159
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.0ms)
1160
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.1ms)
1161
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
1162
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (77.7ms)
1163
+
1164
+
1165
+ Started GET "/" for ::1 at 2015-07-19 21:25:45 +0300
1166
+ Processing by HelloController#index as HTML
1167
+ Rendered hello/index.html.erb within layouts/application (6.9ms)
1168
+ Completed 200 OK in 367ms (Views: 366.4ms | ActiveRecord: 0.0ms)
1169
+
1170
+
1171
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:25:46 +0300
1172
+
1173
+
1174
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:25:46 +0300
1175
+
1176
+
1177
+ Started GET "/css/main.css" for ::1 at 2015-07-19 21:25:46 +0300
1178
+
1179
+ ActionController::RoutingError (No route matches [GET] "/css/main.css"):
1180
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1181
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1182
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1183
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1184
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1185
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1186
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1187
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1188
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1189
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1190
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1191
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1192
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1193
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1194
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1195
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1196
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1197
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1198
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1199
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1200
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1201
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1202
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1203
+
1204
+
1205
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1206
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1207
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (38.6ms)
1208
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
1209
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (137.2ms)
1210
+
1211
+
1212
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-19 21:25:46 +0300
1213
+
1214
+
1215
+ Started GET "/assets/application.self-377610cd7c1509e934744c810e3b4cf672dfbcacac3274e7d039827e2ae0fcc7.js?body=1" for ::1 at 2015-07-19 21:25:46 +0300
1216
+
1217
+
1218
+ Started GET "/assets/js/jquery.min.js" for ::1 at 2015-07-19 21:25:46 +0300
1219
+
1220
+ ActionController::RoutingError (No route matches [GET] "/assets/js/jquery.min.js"):
1221
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1222
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1223
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1224
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1225
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1226
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1227
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1228
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1229
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1230
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1231
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1232
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1233
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1234
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1235
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1236
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1237
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1238
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1239
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1240
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1241
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1242
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1243
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1244
+
1245
+
1246
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
1247
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1248
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.7ms)
1249
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (4.2ms)
1250
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.6ms)
1251
+
1252
+
1253
+ Started GET "/dist/cropper.css" for ::1 at 2015-07-19 21:25:46 +0300
1254
+
1255
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.css"):
1256
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1257
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1258
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1259
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1260
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1261
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1262
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1263
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1264
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1265
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1266
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1267
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1268
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1269
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1270
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1271
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1272
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1273
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1274
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1275
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1276
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1277
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1278
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1279
+
1280
+
1281
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
1282
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms)
1283
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms)
1284
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms)
1285
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (89.7ms)
1286
+
1287
+
1288
+ Started GET "/assets/css/bootstrap.min.css" for ::1 at 2015-07-19 21:25:46 +0300
1289
+
1290
+ ActionController::RoutingError (No route matches [GET] "/assets/css/bootstrap.min.css"):
1291
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1292
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1293
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1294
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1295
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1296
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1297
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1298
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1299
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1300
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1301
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1302
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1303
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1304
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1305
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1306
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1307
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1308
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1309
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1310
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1311
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1312
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1313
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1314
+
1315
+
1316
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms)
1317
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.9ms)
1318
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.9ms)
1319
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.5ms)
1320
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.3ms)
1321
+
1322
+
1323
+ Started GET "/assets/js/bootstrap.min.js" for ::1 at 2015-07-19 21:25:46 +0300
1324
+
1325
+ ActionController::RoutingError (No route matches [GET] "/assets/js/bootstrap.min.js"):
1326
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1327
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1328
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1329
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1330
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1331
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1332
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1333
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1334
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1335
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1336
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1337
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1338
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1339
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1340
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1341
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1342
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1343
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1344
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1345
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1346
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1347
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1348
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1349
+
1350
+
1351
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
1352
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1353
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
1354
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1355
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (81.0ms)
1356
+
1357
+
1358
+ Started GET "/dist/cropper.js" for ::1 at 2015-07-19 21:25:46 +0300
1359
+
1360
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.js"):
1361
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1362
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1363
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1364
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1365
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1366
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1367
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1368
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1369
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1370
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1371
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1372
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1373
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1374
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1375
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1376
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1377
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1378
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1379
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1380
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1381
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1382
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1383
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1384
+
1385
+
1386
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1387
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1388
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.7ms)
1389
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1390
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.7ms)
1391
+
1392
+
1393
+ Started GET "/js/main.js" for ::1 at 2015-07-19 21:25:47 +0300
1394
+
1395
+ ActionController::RoutingError (No route matches [GET] "/js/main.js"):
1396
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1397
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1398
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1399
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1400
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1401
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1402
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1403
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1404
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1405
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1406
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1407
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1408
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1409
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1410
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1411
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1412
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1413
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1414
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1415
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1416
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1417
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1418
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1419
+
1420
+
1421
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
1422
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1423
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
1424
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
1425
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (79.4ms)
1426
+
1427
+
1428
+ Started GET "/" for ::1 at 2015-07-19 21:29:25 +0300
1429
+ Processing by HelloController#index as HTML
1430
+ Rendered hello/index.html.erb within layouts/application (7.4ms)
1431
+ Completed 500 Internal Server Error in 250ms (ActiveRecord: 0.0ms)
1432
+
1433
+ ActionView::Template::Error (couldn't find file 'bootstrap-sprockets' with type 'application/javascript'):
1434
+ 3: <head>
1435
+ 4: <title>Dummy</title>
1436
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1437
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1438
+ 7: <%= csrf_meta_tags %>
1439
+ 8: </head>
1440
+ 9: <body>
1441
+ app/assets/javascripts/application.js:13
1442
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___889308828197579976_70231447294600'
1443
+
1444
+
1445
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.6ms)
1446
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms)
1447
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.9ms)
1448
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (98.1ms)
1449
+
1450
+
1451
+ Started GET "/" for ::1 at 2015-07-19 21:30:28 +0300
1452
+ Processing by HelloController#index as HTML
1453
+ Rendered hello/index.html.erb within layouts/application (8.4ms)
1454
+ Completed 500 Internal Server Error in 357ms (ActiveRecord: 0.0ms)
1455
+
1456
+ ActionView::Template::Error (couldn't find file 'jquery2' with type 'application/javascript'):
1457
+ 3: <head>
1458
+ 4: <title>Dummy</title>
1459
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1460
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1461
+ 7: <%= csrf_meta_tags %>
1462
+ 8: </head>
1463
+ 9: <body>
1464
+ app/assets/javascripts/application.js:13
1465
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2623418752262190148_70170331491440'
1466
+
1467
+
1468
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.2ms)
1469
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
1470
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (13.7ms)
1471
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (91.1ms)
1472
+
1473
+
1474
+ Started GET "/" for ::1 at 2015-07-19 21:30:30 +0300
1475
+ Processing by HelloController#index as HTML
1476
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
1477
+ Completed 500 Internal Server Error in 13ms (ActiveRecord: 0.0ms)
1478
+
1479
+ ActionView::Template::Error (couldn't find file 'jquery2' with type 'application/javascript'):
1480
+ 3: <head>
1481
+ 4: <title>Dummy</title>
1482
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1483
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1484
+ 7: <%= csrf_meta_tags %>
1485
+ 8: </head>
1486
+ 9: <body>
1487
+ app/assets/javascripts/application.js:13
1488
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2623418752262190148_70170331491440'
1489
+
1490
+
1491
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (15.1ms)
1492
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (9.5ms)
1493
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.9ms)
1494
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (89.4ms)
1495
+
1496
+
1497
+ Started GET "/" for ::1 at 2015-07-19 21:30:43 +0300
1498
+ Processing by HelloController#index as HTML
1499
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
1500
+ Completed 500 Internal Server Error in 17ms (ActiveRecord: 0.0ms)
1501
+
1502
+ ActionView::Template::Error (couldn't find file 'jquery' with type 'application/javascript'):
1503
+ 3: <head>
1504
+ 4: <title>Dummy</title>
1505
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1506
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1507
+ 7: <%= csrf_meta_tags %>
1508
+ 8: </head>
1509
+ 9: <body>
1510
+ app/assets/javascripts/application.js:13
1511
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2623418752262190148_70170331491440'
1512
+
1513
+
1514
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.2ms)
1515
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
1516
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
1517
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (78.7ms)
1518
+
1519
+
1520
+ Started GET "/" for ::1 at 2015-07-19 21:30:44 +0300
1521
+ Processing by HelloController#index as HTML
1522
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
1523
+ Completed 500 Internal Server Error in 16ms (ActiveRecord: 0.0ms)
1524
+
1525
+ ActionView::Template::Error (couldn't find file 'jquery' with type 'application/javascript'):
1526
+ 3: <head>
1527
+ 4: <title>Dummy</title>
1528
+ 5: <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
1529
+ 6: <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
1530
+ 7: <%= csrf_meta_tags %>
1531
+ 8: </head>
1532
+ 9: <body>
1533
+ app/assets/javascripts/application.js:13
1534
+ app/views/layouts/application.html.erb:6:in `_app_views_layouts_application_html_erb___2623418752262190148_70170331491440'
1535
+
1536
+
1537
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_source.erb (13.3ms)
1538
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.5ms)
1539
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms)
1540
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (96.9ms)
1541
+
1542
+
1543
+ Started GET "/" for ::1 at 2015-07-19 21:31:40 +0300
1544
+ Processing by HelloController#index as HTML
1545
+ Rendered hello/index.html.erb within layouts/application (8.1ms)
1546
+ Completed 200 OK in 637ms (Views: 636.6ms | ActiveRecord: 0.0ms)
1547
+
1548
+
1549
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:31:41 +0300
1550
+
1551
+
1552
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:31:41 +0300
1553
+
1554
+
1555
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:31:41 +0300
1556
+
1557
+
1558
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:31:41 +0300
1559
+
1560
+
1561
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1562
+
1563
+
1564
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1565
+
1566
+
1567
+ Started GET "/dist/cropper.css" for ::1 at 2015-07-19 21:31:42 +0300
1568
+
1569
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.css"):
1570
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1571
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1572
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1573
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1574
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1575
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1576
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1577
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1578
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1579
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1580
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1581
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1582
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1583
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1584
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1585
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1586
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1587
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1588
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1589
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1590
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1591
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1592
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1593
+
1594
+
1595
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
1596
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1597
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (39.7ms)
1598
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
1599
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (145.1ms)
1600
+
1601
+
1602
+ Started GET "/css/main.css" for ::1 at 2015-07-19 21:31:42 +0300
1603
+
1604
+ ActionController::RoutingError (No route matches [GET] "/css/main.css"):
1605
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1606
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1607
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1608
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1609
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1610
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1611
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1612
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1613
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1614
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1615
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1616
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1617
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1618
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1619
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1620
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1621
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1622
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1623
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1624
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1625
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1626
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1627
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1628
+
1629
+
1630
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
1631
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1632
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
1633
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
1634
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (82.8ms)
1635
+
1636
+
1637
+ Started GET "/assets/css/bootstrap.min.css" for ::1 at 2015-07-19 21:31:42 +0300
1638
+
1639
+ ActionController::RoutingError (No route matches [GET] "/assets/css/bootstrap.min.css"):
1640
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1641
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1642
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1643
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1644
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1645
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1646
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1647
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1648
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1649
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1650
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1651
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1652
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1653
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1654
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1655
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1656
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1657
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1658
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1659
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1660
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1661
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1662
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1663
+
1664
+
1665
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
1666
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1667
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
1668
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
1669
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (86.3ms)
1670
+
1671
+
1672
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:31:42 +0300
1673
+
1674
+
1675
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:31:42 +0300
1676
+
1677
+
1678
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1679
+
1680
+
1681
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1682
+
1683
+
1684
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1685
+
1686
+
1687
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1688
+
1689
+
1690
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1691
+
1692
+
1693
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1694
+
1695
+
1696
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1697
+
1698
+
1699
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1700
+
1701
+
1702
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:31:42 +0300
1703
+
1704
+
1705
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:31:49 +0300
1706
+
1707
+
1708
+ Started GET "/assets/css/bootstrap.min.css" for ::1 at 2015-07-19 21:31:49 +0300
1709
+
1710
+ ActionController::RoutingError (No route matches [GET] "/assets/css/bootstrap.min.css"):
1711
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1712
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1713
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1714
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1715
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1716
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1717
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1718
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1719
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1720
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1721
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1722
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1723
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1724
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1725
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1726
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1727
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1728
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1729
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1730
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1731
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1732
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1733
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1734
+
1735
+
1736
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms)
1737
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1738
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.9ms)
1739
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms)
1740
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (105.6ms)
1741
+
1742
+
1743
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:31:49 +0300
1744
+
1745
+
1746
+ Started GET "/dist/cropper.css" for ::1 at 2015-07-19 21:31:49 +0300
1747
+
1748
+ ActionController::RoutingError (No route matches [GET] "/dist/cropper.css"):
1749
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1750
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1751
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1752
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1753
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1754
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1755
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1756
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1757
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1758
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1759
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1760
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1761
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1762
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1763
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1764
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1765
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1766
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1767
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1768
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1769
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1770
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1771
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1772
+
1773
+
1774
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
1775
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
1776
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.2ms)
1777
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.4ms)
1778
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.7ms)
1779
+
1780
+
1781
+ Started GET "/css/main.css" for ::1 at 2015-07-19 21:31:49 +0300
1782
+
1783
+ ActionController::RoutingError (No route matches [GET] "/css/main.css"):
1784
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1785
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1786
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
1787
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
1788
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1789
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
1790
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
1791
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
1792
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1793
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
1794
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
1795
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1796
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1797
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
1798
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
1799
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
1800
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
1801
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
1802
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
1803
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
1804
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1805
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1806
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1807
+
1808
+
1809
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.1ms)
1810
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.8ms)
1811
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.5ms)
1812
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.7ms)
1813
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (219.0ms)
1814
+
1815
+
1816
+ Started GET "/" for ::1 at 2015-07-19 21:32:30 +0300
1817
+ Processing by HelloController#index as HTML
1818
+ Rendered hello/index.html.erb within layouts/application (2.1ms)
1819
+ Completed 200 OK in 103ms (Views: 102.4ms | ActiveRecord: 0.0ms)
1820
+
1821
+
1822
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1823
+
1824
+
1825
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1826
+
1827
+
1828
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1829
+
1830
+
1831
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1832
+
1833
+
1834
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1835
+
1836
+
1837
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1838
+
1839
+
1840
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1841
+
1842
+
1843
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1844
+
1845
+
1846
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1847
+
1848
+
1849
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:32:30 +0300
1850
+
1851
+
1852
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:32:30 +0300
1853
+
1854
+
1855
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1856
+
1857
+
1858
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1859
+
1860
+
1861
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1862
+
1863
+
1864
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1865
+
1866
+
1867
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1868
+
1869
+
1870
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1871
+
1872
+
1873
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1874
+
1875
+
1876
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:32:30 +0300
1877
+
1878
+
1879
+ Started GET "/" for ::1 at 2015-07-19 21:32:35 +0300
1880
+ Processing by HelloController#index as HTML
1881
+ Rendered hello/index.html.erb within layouts/application (1.4ms)
1882
+ Completed 200 OK in 113ms (Views: 113.0ms | ActiveRecord: 0.0ms)
1883
+
1884
+
1885
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:32:35 +0300
1886
+
1887
+
1888
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:32:35 +0300
1889
+
1890
+
1891
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:32:35 +0300
1892
+
1893
+
1894
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:32:35 +0300
1895
+
1896
+
1897
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:32:35 +0300
1898
+
1899
+
1900
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1901
+
1902
+
1903
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1904
+
1905
+
1906
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1907
+
1908
+
1909
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1910
+
1911
+
1912
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1913
+
1914
+
1915
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1916
+
1917
+
1918
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:32:36 +0300
1919
+
1920
+
1921
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:32:36 +0300
1922
+
1923
+
1924
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1925
+
1926
+
1927
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1928
+
1929
+
1930
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1931
+
1932
+
1933
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1934
+
1935
+
1936
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1937
+
1938
+
1939
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:32:36 +0300
1940
+
1941
+
1942
+ Started GET "/" for ::1 at 2015-07-19 21:34:38 +0300
1943
+ Processing by HelloController#index as HTML
1944
+ Rendered hello/index.html.erb within layouts/application (12.4ms)
1945
+ Completed 200 OK in 478ms (Views: 477.1ms | ActiveRecord: 0.0ms)
1946
+
1947
+
1948
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1949
+
1950
+
1951
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1952
+
1953
+
1954
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1955
+
1956
+
1957
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1958
+
1959
+
1960
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1961
+
1962
+
1963
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1964
+
1965
+
1966
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1967
+
1968
+
1969
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1970
+
1971
+
1972
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1973
+
1974
+
1975
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1976
+
1977
+
1978
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1979
+
1980
+
1981
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1982
+
1983
+
1984
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1985
+
1986
+
1987
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1988
+
1989
+
1990
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:34:39 +0300
1991
+
1992
+
1993
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:34:39 +0300
1994
+
1995
+
1996
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
1997
+
1998
+
1999
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
2000
+
2001
+
2002
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:34:39 +0300
2003
+
2004
+
2005
+ Started GET "/" for ::1 at 2015-07-19 21:34:42 +0300
2006
+ Processing by HelloController#index as HTML
2007
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2008
+ Completed 200 OK in 143ms (Views: 142.8ms | ActiveRecord: 0.0ms)
2009
+
2010
+
2011
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2012
+
2013
+
2014
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2015
+
2016
+
2017
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2018
+
2019
+
2020
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2021
+
2022
+
2023
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2024
+
2025
+
2026
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2027
+
2028
+
2029
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2030
+
2031
+
2032
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2033
+
2034
+
2035
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2036
+
2037
+
2038
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2039
+
2040
+
2041
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:34:42 +0300
2042
+
2043
+
2044
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2045
+
2046
+
2047
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:34:42 +0300
2048
+
2049
+
2050
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2051
+
2052
+
2053
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2054
+
2055
+
2056
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2057
+
2058
+
2059
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2060
+
2061
+
2062
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2063
+
2064
+
2065
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:34:42 +0300
2066
+
2067
+
2068
+ Started GET "/" for ::1 at 2015-07-19 21:37:00 +0300
2069
+ Processing by HelloController#index as HTML
2070
+ Rendered hello/index.html.erb within layouts/application (0.9ms)
2071
+ Completed 200 OK in 157ms (Views: 156.3ms | ActiveRecord: 0.0ms)
2072
+
2073
+
2074
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:37:00 +0300
2075
+
2076
+
2077
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:37:00 +0300
2078
+
2079
+
2080
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:37:00 +0300
2081
+
2082
+
2083
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:37:04 +0300
2084
+
2085
+
2086
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:37:04 +0300
2087
+
2088
+
2089
+ Started GET "/" for ::1 at 2015-07-19 21:37:26 +0300
2090
+ Processing by HelloController#index as HTML
2091
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2092
+ Completed 200 OK in 123ms (Views: 123.1ms | ActiveRecord: 0.0ms)
2093
+
2094
+
2095
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:37:26 +0300
2096
+
2097
+
2098
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:37:26 +0300
2099
+
2100
+
2101
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:37:26 +0300
2102
+
2103
+
2104
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:37:26 +0300
2105
+
2106
+
2107
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2108
+
2109
+
2110
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2111
+
2112
+
2113
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2114
+
2115
+
2116
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2117
+
2118
+
2119
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2120
+
2121
+
2122
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2123
+
2124
+
2125
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:37:27 +0300
2126
+
2127
+
2128
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:37:27 +0300
2129
+
2130
+
2131
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2132
+
2133
+
2134
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2135
+
2136
+
2137
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2138
+
2139
+
2140
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2141
+
2142
+
2143
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2144
+
2145
+
2146
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2147
+
2148
+
2149
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2150
+
2151
+
2152
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:37:27 +0300
2153
+
2154
+
2155
+ Started GET "/" for ::1 at 2015-07-19 21:46:29 +0300
2156
+ Processing by HelloController#index as HTML
2157
+ Rendered hello/index.html.erb within layouts/application (7.3ms)
2158
+ Completed 200 OK in 578ms (Views: 577.3ms | ActiveRecord: 0.0ms)
2159
+
2160
+
2161
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2162
+
2163
+
2164
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2165
+
2166
+
2167
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2168
+
2169
+
2170
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2171
+
2172
+
2173
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2174
+
2175
+
2176
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2177
+
2178
+
2179
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2180
+
2181
+
2182
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2183
+
2184
+
2185
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2186
+
2187
+
2188
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2189
+
2190
+
2191
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2192
+
2193
+
2194
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2195
+
2196
+
2197
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2198
+
2199
+
2200
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2201
+
2202
+
2203
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2204
+
2205
+
2206
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2207
+
2208
+
2209
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2210
+
2211
+
2212
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:46:31 +0300
2213
+
2214
+
2215
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:46:31 +0300
2216
+
2217
+
2218
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:46:31 +0300
2219
+
2220
+
2221
+ Started GET "/" for ::1 at 2015-07-19 21:46:34 +0300
2222
+ Processing by HelloController#index as HTML
2223
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2224
+ Completed 200 OK in 144ms (Views: 143.8ms | ActiveRecord: 0.0ms)
2225
+
2226
+
2227
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2228
+
2229
+
2230
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2231
+
2232
+
2233
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2234
+
2235
+
2236
+ Started GET "/assets/application.self-bae8ee6a23d950570e5fba172d38a2c92b52bccb0582a326622817d2bd29986e.css?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2237
+
2238
+
2239
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2240
+
2241
+
2242
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2243
+
2244
+
2245
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2246
+
2247
+
2248
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2249
+
2250
+
2251
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2252
+
2253
+
2254
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2255
+
2256
+
2257
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:46:34 +0300
2258
+
2259
+
2260
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:46:34 +0300
2261
+
2262
+
2263
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2264
+
2265
+
2266
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2267
+
2268
+
2269
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2270
+
2271
+
2272
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2273
+
2274
+
2275
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2276
+
2277
+
2278
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2279
+
2280
+
2281
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2282
+
2283
+
2284
+ Started GET "/assets/application.self-3b8dabdc891efe46b9a144b400ad69e37d7e5876bdc39dee783419a69d7ca819.js?body=1" for ::1 at 2015-07-19 21:46:34 +0300
2285
+
2286
+
2287
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:46:36 +0300
2288
+
2289
+
2290
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:46:36 +0300
2291
+
2292
+
2293
+ Started GET "/" for ::1 at 2015-07-19 21:48:51 +0300
2294
+ Processing by HelloController#index as HTML
2295
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2296
+ Completed 200 OK in 276ms (Views: 275.3ms | ActiveRecord: 0.0ms)
2297
+
2298
+
2299
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2300
+
2301
+
2302
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2303
+
2304
+
2305
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2306
+
2307
+
2308
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2309
+
2310
+
2311
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2312
+
2313
+
2314
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2315
+
2316
+
2317
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2318
+
2319
+
2320
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:48:51 +0300
2321
+
2322
+
2323
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:48:51 +0300
2324
+
2325
+
2326
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2327
+
2328
+
2329
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2330
+
2331
+
2332
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2333
+
2334
+
2335
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2336
+
2337
+
2338
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2339
+
2340
+
2341
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2342
+
2343
+
2344
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2345
+
2346
+
2347
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2348
+
2349
+
2350
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2351
+
2352
+
2353
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2354
+
2355
+
2356
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2357
+
2358
+
2359
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2360
+
2361
+
2362
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:48:51 +0300
2363
+
2364
+
2365
+ Started GET "/" for ::1 at 2015-07-19 21:48:53 +0300
2366
+ Processing by HelloController#index as HTML
2367
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2368
+ Completed 200 OK in 132ms (Views: 132.0ms | ActiveRecord: 0.0ms)
2369
+
2370
+
2371
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2372
+
2373
+
2374
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2375
+
2376
+
2377
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2378
+
2379
+
2380
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2381
+
2382
+
2383
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2384
+
2385
+
2386
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2387
+
2388
+
2389
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2390
+
2391
+
2392
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2393
+
2394
+
2395
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2396
+
2397
+
2398
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2399
+
2400
+
2401
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2402
+
2403
+
2404
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:48:53 +0300
2405
+
2406
+
2407
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:48:53 +0300
2408
+
2409
+
2410
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2411
+
2412
+
2413
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2414
+
2415
+
2416
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2417
+
2418
+
2419
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2420
+
2421
+
2422
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2423
+
2424
+
2425
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2426
+
2427
+
2428
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2429
+
2430
+
2431
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2432
+
2433
+
2434
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:48:53 +0300
2435
+
2436
+
2437
+ Started GET "/" for ::1 at 2015-07-19 21:49:17 +0300
2438
+ Processing by HelloController#index as HTML
2439
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2440
+ Completed 200 OK in 107ms (Views: 106.4ms | ActiveRecord: 0.0ms)
2441
+
2442
+
2443
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2444
+
2445
+
2446
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2447
+
2448
+
2449
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2450
+
2451
+
2452
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2453
+
2454
+
2455
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2456
+
2457
+
2458
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2459
+
2460
+
2461
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2462
+
2463
+
2464
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2465
+
2466
+
2467
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2468
+
2469
+
2470
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2471
+
2472
+
2473
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2474
+
2475
+
2476
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:49:17 +0300
2477
+
2478
+
2479
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2480
+
2481
+
2482
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:49:17 +0300
2483
+
2484
+
2485
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2486
+
2487
+
2488
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2489
+
2490
+
2491
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2492
+
2493
+
2494
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2495
+
2496
+
2497
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2498
+
2499
+
2500
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2501
+
2502
+
2503
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2504
+
2505
+
2506
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:49:17 +0300
2507
+
2508
+
2509
+ Started GET "/" for ::1 at 2015-07-19 21:49:29 +0300
2510
+ Processing by HelloController#index as HTML
2511
+ Rendered hello/index.html.erb within layouts/application (0.2ms)
2512
+ Completed 200 OK in 147ms (Views: 146.6ms | ActiveRecord: 0.0ms)
2513
+
2514
+
2515
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2516
+
2517
+
2518
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2519
+
2520
+
2521
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2522
+
2523
+
2524
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2525
+
2526
+
2527
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2528
+
2529
+
2530
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2531
+
2532
+
2533
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2534
+
2535
+
2536
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2537
+
2538
+
2539
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2540
+
2541
+
2542
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2543
+
2544
+
2545
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2546
+
2547
+
2548
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2549
+
2550
+
2551
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2552
+
2553
+
2554
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:49:29 +0300
2555
+
2556
+
2557
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2558
+
2559
+
2560
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:49:29 +0300
2561
+
2562
+
2563
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2564
+
2565
+
2566
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2567
+
2568
+
2569
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2570
+
2571
+
2572
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2573
+
2574
+
2575
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2576
+
2577
+
2578
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:49:29 +0300
2579
+
2580
+
2581
+ Started GET "/" for ::1 at 2015-07-19 21:51:54 +0300
2582
+ Processing by HelloController#index as HTML
2583
+ Rendered hello/index.html.erb within layouts/application (1.0ms)
2584
+ Completed 200 OK in 110ms (Views: 109.7ms | ActiveRecord: 0.0ms)
2585
+
2586
+
2587
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2588
+
2589
+
2590
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2591
+
2592
+
2593
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2594
+
2595
+
2596
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2597
+
2598
+
2599
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2600
+
2601
+
2602
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2603
+
2604
+
2605
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2606
+
2607
+
2608
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2609
+
2610
+
2611
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:51:55 +0300
2612
+
2613
+
2614
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:51:55 +0300
2615
+
2616
+
2617
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2618
+
2619
+
2620
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2621
+
2622
+
2623
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2624
+
2625
+
2626
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2627
+
2628
+
2629
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2630
+
2631
+
2632
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2633
+
2634
+
2635
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2636
+
2637
+
2638
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2639
+
2640
+
2641
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2642
+
2643
+
2644
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2645
+
2646
+
2647
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2648
+
2649
+
2650
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:51:55 +0300
2651
+
2652
+
2653
+ Started GET "/" for ::1 at 2015-07-19 21:53:08 +0300
2654
+ Processing by HelloController#index as HTML
2655
+ Rendered hello/index.html.erb within layouts/application (1.3ms)
2656
+ Completed 200 OK in 122ms (Views: 121.1ms | ActiveRecord: 0.0ms)
2657
+
2658
+
2659
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2660
+
2661
+
2662
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2663
+
2664
+
2665
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2666
+
2667
+
2668
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2669
+
2670
+
2671
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2672
+
2673
+
2674
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2675
+
2676
+
2677
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2678
+
2679
+
2680
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2681
+
2682
+
2683
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2684
+
2685
+
2686
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2687
+
2688
+
2689
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2690
+
2691
+
2692
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2693
+
2694
+
2695
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2696
+
2697
+
2698
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2699
+
2700
+
2701
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2702
+
2703
+
2704
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2705
+
2706
+
2707
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2708
+
2709
+
2710
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:53:09 +0300
2711
+
2712
+
2713
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2714
+
2715
+
2716
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2717
+
2718
+
2719
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:53:09 +0300
2720
+
2721
+
2722
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:53:09 +0300
2723
+
2724
+
2725
+ Started GET "/" for ::1 at 2015-07-19 21:53:56 +0300
2726
+ Processing by HelloController#index as HTML
2727
+ Rendered hello/index.html.erb within layouts/application (1.3ms)
2728
+ Completed 200 OK in 141ms (Views: 140.8ms | ActiveRecord: 0.0ms)
2729
+
2730
+
2731
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2732
+
2733
+
2734
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2735
+
2736
+
2737
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2738
+
2739
+
2740
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2741
+
2742
+
2743
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2744
+
2745
+
2746
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2747
+
2748
+
2749
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2750
+
2751
+
2752
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2753
+
2754
+
2755
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2756
+
2757
+
2758
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2759
+
2760
+
2761
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2762
+
2763
+
2764
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2765
+
2766
+
2767
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2768
+
2769
+
2770
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2771
+
2772
+
2773
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:53:57 +0300
2774
+
2775
+
2776
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:53:57 +0300
2777
+
2778
+
2779
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2780
+
2781
+
2782
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2783
+
2784
+
2785
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2786
+
2787
+
2788
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2789
+
2790
+
2791
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2792
+
2793
+
2794
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:53:57 +0300
2795
+
2796
+
2797
+ Started GET "/" for ::1 at 2015-07-19 21:54:02 +0300
2798
+ Processing by HelloController#index as HTML
2799
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2800
+ Completed 200 OK in 108ms (Views: 107.9ms | ActiveRecord: 0.0ms)
2801
+
2802
+
2803
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2804
+
2805
+
2806
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2807
+
2808
+
2809
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2810
+
2811
+
2812
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2813
+
2814
+
2815
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2816
+
2817
+
2818
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2819
+
2820
+
2821
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:54:02 +0300
2822
+
2823
+
2824
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2825
+
2826
+
2827
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2828
+
2829
+
2830
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2831
+
2832
+
2833
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:54:03 +0300
2834
+
2835
+
2836
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:54:03 +0300
2837
+
2838
+
2839
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2840
+
2841
+
2842
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2843
+
2844
+
2845
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2846
+
2847
+
2848
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2849
+
2850
+
2851
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2852
+
2853
+
2854
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2855
+
2856
+
2857
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2858
+
2859
+
2860
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2861
+
2862
+
2863
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2864
+
2865
+
2866
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:54:03 +0300
2867
+
2868
+
2869
+ Started GET "/" for ::1 at 2015-07-19 21:54:56 +0300
2870
+ Processing by HelloController#index as HTML
2871
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2872
+ Completed 200 OK in 116ms (Views: 115.8ms | ActiveRecord: 0.0ms)
2873
+
2874
+
2875
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2876
+
2877
+
2878
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2879
+
2880
+
2881
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2882
+
2883
+
2884
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2885
+
2886
+
2887
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2888
+
2889
+
2890
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2891
+
2892
+
2893
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:54:56 +0300
2894
+
2895
+
2896
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2897
+
2898
+
2899
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2900
+
2901
+
2902
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2903
+
2904
+
2905
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:54:56 +0300
2906
+
2907
+
2908
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2909
+
2910
+
2911
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2912
+
2913
+
2914
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2915
+
2916
+
2917
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:54:56 +0300
2918
+
2919
+
2920
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2921
+
2922
+
2923
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2924
+
2925
+
2926
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2927
+
2928
+
2929
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2930
+
2931
+
2932
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2933
+
2934
+
2935
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2936
+
2937
+
2938
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:54:57 +0300
2939
+
2940
+
2941
+ Started GET "/" for ::1 at 2015-07-19 21:56:13 +0300
2942
+ Processing by HelloController#index as HTML
2943
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
2944
+ Completed 200 OK in 213ms (Views: 213.1ms | ActiveRecord: 0.0ms)
2945
+
2946
+
2947
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2948
+
2949
+
2950
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2951
+
2952
+
2953
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2954
+
2955
+
2956
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2957
+
2958
+
2959
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2960
+
2961
+
2962
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2963
+
2964
+
2965
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2966
+
2967
+
2968
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2969
+
2970
+
2971
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2972
+
2973
+
2974
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2975
+
2976
+
2977
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2978
+
2979
+
2980
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2981
+
2982
+
2983
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2984
+
2985
+
2986
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2987
+
2988
+
2989
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:56:13 +0300
2990
+
2991
+
2992
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:56:14 +0300
2993
+
2994
+
2995
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:56:14 +0300
2996
+
2997
+
2998
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:56:14 +0300
2999
+
3000
+
3001
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:56:14 +0300
3002
+
3003
+
3004
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:56:14 +0300
3005
+
3006
+
3007
+ Started GET "/assets/index.self-0f912fa6f09db09f6a56797c1654604fe7bb31637d336efa7ba9b886c77bf88f.js?body=1" for ::1 at 2015-07-19 21:56:14 +0300
3008
+
3009
+
3010
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:56:14 +0300
3011
+
3012
+
3013
+ Started GET "/" for ::1 at 2015-07-19 21:56:15 +0300
3014
+ Processing by HelloController#index as HTML
3015
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
3016
+ Completed 200 OK in 106ms (Views: 105.8ms | ActiveRecord: 0.0ms)
3017
+
3018
+
3019
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:56:15 +0300
3020
+
3021
+
3022
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:56:15 +0300
3023
+
3024
+
3025
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:56:15 +0300
3026
+
3027
+
3028
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3029
+
3030
+
3031
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3032
+
3033
+
3034
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3035
+
3036
+
3037
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3038
+
3039
+
3040
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3041
+
3042
+
3043
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3044
+
3045
+
3046
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3047
+
3048
+
3049
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3050
+
3051
+
3052
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3053
+
3054
+
3055
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3056
+
3057
+
3058
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3059
+
3060
+
3061
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:56:16 +0300
3062
+
3063
+
3064
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3065
+
3066
+
3067
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:56:16 +0300
3068
+
3069
+
3070
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3071
+
3072
+
3073
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3074
+
3075
+
3076
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3077
+
3078
+
3079
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3080
+
3081
+
3082
+ Started GET "/assets/index.self-0f912fa6f09db09f6a56797c1654604fe7bb31637d336efa7ba9b886c77bf88f.js?body=1" for ::1 at 2015-07-19 21:56:16 +0300
3083
+
3084
+
3085
+ Started GET "/" for ::1 at 2015-07-19 21:56:33 +0300
3086
+ Processing by HelloController#index as HTML
3087
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
3088
+ Completed 200 OK in 109ms (Views: 108.8ms | ActiveRecord: 0.0ms)
3089
+
3090
+
3091
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3092
+
3093
+
3094
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3095
+
3096
+
3097
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3098
+
3099
+
3100
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3101
+
3102
+
3103
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3104
+
3105
+
3106
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3107
+
3108
+
3109
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3110
+
3111
+
3112
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3113
+
3114
+
3115
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3116
+
3117
+
3118
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3119
+
3120
+
3121
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:56:33 +0300
3122
+
3123
+
3124
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3125
+
3126
+
3127
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:56:33 +0300
3128
+
3129
+
3130
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3131
+
3132
+
3133
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3134
+
3135
+
3136
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3137
+
3138
+
3139
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3140
+
3141
+
3142
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3143
+
3144
+
3145
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3146
+
3147
+
3148
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3149
+
3150
+
3151
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3152
+
3153
+
3154
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:56:33 +0300
3155
+
3156
+
3157
+ Started GET "/" for ::1 at 2015-07-19 21:56:39 +0300
3158
+ Processing by HelloController#index as HTML
3159
+ Rendered hello/index.html.erb within layouts/application (0.5ms)
3160
+ Completed 200 OK in 122ms (Views: 122.0ms | ActiveRecord: 0.0ms)
3161
+
3162
+
3163
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3164
+
3165
+
3166
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3167
+
3168
+
3169
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3170
+
3171
+
3172
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3173
+
3174
+
3175
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3176
+
3177
+
3178
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3179
+
3180
+
3181
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3182
+
3183
+
3184
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3185
+
3186
+
3187
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3188
+
3189
+
3190
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3191
+
3192
+
3193
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3194
+
3195
+
3196
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3197
+
3198
+
3199
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3200
+
3201
+
3202
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:56:39 +0300
3203
+
3204
+
3205
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3206
+
3207
+
3208
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3209
+
3210
+
3211
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:56:39 +0300
3212
+
3213
+
3214
+ Started GET "/assets/index.self-d5a5707acfec73d7f06fc244f28c5ce33f1cd590dd00eba4812c8fb8325697ab.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3215
+
3216
+
3217
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3218
+
3219
+
3220
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3221
+
3222
+
3223
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:56:39 +0300
3224
+
3225
+
3226
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:56:40 +0300
3227
+
3228
+
3229
+ Started GET "/" for ::1 at 2015-07-19 21:57:00 +0300
3230
+ Processing by HelloController#index as HTML
3231
+ Rendered hello/index.html.erb within layouts/application (0.6ms)
3232
+ Completed 200 OK in 227ms (Views: 227.1ms | ActiveRecord: 0.0ms)
3233
+
3234
+
3235
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3236
+
3237
+
3238
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3239
+
3240
+
3241
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3242
+
3243
+
3244
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3245
+
3246
+
3247
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3248
+
3249
+
3250
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3251
+
3252
+
3253
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3254
+
3255
+
3256
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3257
+
3258
+
3259
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3260
+
3261
+
3262
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3263
+
3264
+
3265
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:57:00 +0300
3266
+
3267
+
3268
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3269
+
3270
+
3271
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3272
+
3273
+
3274
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3275
+
3276
+
3277
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3278
+
3279
+
3280
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:57:01 +0300
3281
+
3282
+
3283
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:57:01 +0300
3284
+
3285
+
3286
+ Started GET "/assets/index.self-0abbe914297ae9af1c25e10d50627294908d34cd8e1c7f895edcedf26db28910.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3287
+
3288
+
3289
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3290
+
3291
+
3292
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3293
+
3294
+
3295
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3296
+
3297
+
3298
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:57:01 +0300
3299
+
3300
+
3301
+ Started GET "/" for ::1 at 2015-07-19 21:57:34 +0300
3302
+ Processing by HelloController#index as HTML
3303
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
3304
+ Completed 200 OK in 297ms (Views: 296.9ms | ActiveRecord: 0.0ms)
3305
+
3306
+
3307
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3308
+
3309
+
3310
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3311
+
3312
+
3313
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3314
+
3315
+
3316
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3317
+
3318
+
3319
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3320
+
3321
+
3322
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3323
+
3324
+
3325
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3326
+
3327
+
3328
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3329
+
3330
+
3331
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3332
+
3333
+
3334
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3335
+
3336
+
3337
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3338
+
3339
+
3340
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3341
+
3342
+
3343
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:57:34 +0300
3344
+
3345
+
3346
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:57:34 +0300
3347
+
3348
+
3349
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:57:35 +0300
3350
+
3351
+
3352
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3353
+
3354
+
3355
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3356
+
3357
+
3358
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3359
+
3360
+
3361
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3362
+
3363
+
3364
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3365
+
3366
+
3367
+ Started GET "/assets/index.self-316a79a569274945160425f804a6dd8a4db5b3e370f741aed2529f8b3636ed65.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3368
+
3369
+
3370
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:57:35 +0300
3371
+
3372
+
3373
+ Started GET "/" for ::1 at 2015-07-19 21:57:44 +0300
3374
+ Processing by HelloController#index as HTML
3375
+ Rendered hello/index.html.erb within layouts/application (0.1ms)
3376
+ Completed 200 OK in 114ms (Views: 113.9ms | ActiveRecord: 0.0ms)
3377
+
3378
+
3379
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3380
+
3381
+
3382
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3383
+
3384
+
3385
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3386
+
3387
+
3388
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3389
+
3390
+
3391
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3392
+
3393
+
3394
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3395
+
3396
+
3397
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3398
+
3399
+
3400
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3401
+
3402
+
3403
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3404
+
3405
+
3406
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3407
+
3408
+
3409
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3410
+
3411
+
3412
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3413
+
3414
+
3415
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3416
+
3417
+
3418
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3419
+
3420
+
3421
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3422
+
3423
+
3424
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3425
+
3426
+
3427
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:57:45 +0300
3428
+
3429
+
3430
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:57:45 +0300
3431
+
3432
+
3433
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3434
+
3435
+
3436
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3437
+
3438
+
3439
+ Started GET "/assets/index.self-316a79a569274945160425f804a6dd8a4db5b3e370f741aed2529f8b3636ed65.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3440
+
3441
+
3442
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:57:45 +0300
3443
+
3444
+
3445
+ Started GET "/" for ::1 at 2015-07-19 21:58:43 +0300
3446
+ Processing by HelloController#index as HTML
3447
+ Rendered hello/index.html.erb within layouts/application (0.6ms)
3448
+ Completed 200 OK in 215ms (Views: 214.6ms | ActiveRecord: 0.0ms)
3449
+
3450
+
3451
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3452
+
3453
+
3454
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3455
+
3456
+
3457
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3458
+
3459
+
3460
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3461
+
3462
+
3463
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3464
+
3465
+
3466
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3467
+
3468
+
3469
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3470
+
3471
+
3472
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:58:43 +0300
3473
+
3474
+
3475
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3476
+
3477
+
3478
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3479
+
3480
+
3481
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3482
+
3483
+
3484
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3485
+
3486
+
3487
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3488
+
3489
+
3490
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:58:44 +0300
3491
+
3492
+
3493
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3494
+
3495
+
3496
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:58:44 +0300
3497
+
3498
+
3499
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3500
+
3501
+
3502
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3503
+
3504
+
3505
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3506
+
3507
+
3508
+ Started GET "/assets/index.self-57a0bf80da8243a6292745dbcbe8c8d2e83fa7acba160659b4f604d28301e935.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3509
+
3510
+
3511
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3512
+
3513
+
3514
+ Started GET "/img/picture.jpg" for ::1 at 2015-07-19 21:58:44 +0300
3515
+
3516
+ ActionController::RoutingError (No route matches [GET] "/img/picture.jpg"):
3517
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3518
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3519
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
3520
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
3521
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3522
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
3523
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
3524
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
3525
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3526
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
3527
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
3528
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3529
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3530
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
3531
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
3532
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
3533
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
3534
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3535
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
3536
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
3537
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3538
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3539
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3540
+
3541
+
3542
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
3543
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
3544
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (34.5ms)
3545
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.0ms)
3546
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (160.0ms)
3547
+
3548
+
3549
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:58:44 +0300
3550
+
3551
+
3552
+ Started GET "/img/picture.jpg" for ::1 at 2015-07-19 21:58:44 +0300
3553
+
3554
+ ActionController::RoutingError (No route matches [GET] "/img/picture.jpg"):
3555
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3556
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3557
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
3558
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
3559
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3560
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
3561
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
3562
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
3563
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3564
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
3565
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
3566
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3567
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3568
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
3569
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
3570
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
3571
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
3572
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3573
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
3574
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
3575
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3576
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3577
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3578
+
3579
+
3580
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
3581
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
3582
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.0ms)
3583
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
3584
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (104.9ms)
3585
+
3586
+
3587
+ Started GET "/img/picture.jpg" for ::1 at 2015-07-19 21:58:44 +0300
3588
+
3589
+ ActionController::RoutingError (No route matches [GET] "/img/picture.jpg"):
3590
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3591
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3592
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
3593
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
3594
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3595
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
3596
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
3597
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
3598
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3599
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
3600
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
3601
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3602
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3603
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
3604
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
3605
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
3606
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
3607
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3608
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
3609
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
3610
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3611
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3612
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3613
+
3614
+
3615
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
3616
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
3617
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.7ms)
3618
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
3619
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (178.9ms)
3620
+
3621
+
3622
+ Started GET "/" for ::1 at 2015-07-19 21:58:57 +0300
3623
+ Processing by HelloController#index as HTML
3624
+ Rendered hello/index.html.erb within layouts/application (0.5ms)
3625
+ Completed 200 OK in 118ms (Views: 118.1ms | ActiveRecord: 0.0ms)
3626
+
3627
+
3628
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3629
+
3630
+
3631
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3632
+
3633
+
3634
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3635
+
3636
+
3637
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3638
+
3639
+
3640
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3641
+
3642
+
3643
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3644
+
3645
+
3646
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3647
+
3648
+
3649
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3650
+
3651
+
3652
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3653
+
3654
+
3655
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3656
+
3657
+
3658
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3659
+
3660
+
3661
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3662
+
3663
+
3664
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3665
+
3666
+
3667
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3668
+
3669
+
3670
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3671
+
3672
+
3673
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3674
+
3675
+
3676
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 21:58:57 +0300
3677
+
3678
+
3679
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3680
+
3681
+
3682
+ Started GET "/assets/index.self-57a0bf80da8243a6292745dbcbe8c8d2e83fa7acba160659b4f604d28301e935.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3683
+
3684
+
3685
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3686
+
3687
+
3688
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 21:58:57 +0300
3689
+
3690
+
3691
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 21:58:57 +0300
3692
+
3693
+
3694
+ Started GET "/" for ::1 at 2015-07-19 22:00:06 +0300
3695
+ Processing by HelloController#index as HTML
3696
+ Rendered hello/index.html.erb within layouts/application (0.7ms)
3697
+ Completed 200 OK in 262ms (Views: 261.7ms | ActiveRecord: 0.0ms)
3698
+
3699
+
3700
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3701
+
3702
+
3703
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3704
+
3705
+
3706
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3707
+
3708
+
3709
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3710
+
3711
+
3712
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3713
+
3714
+
3715
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3716
+
3717
+
3718
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3719
+
3720
+
3721
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3722
+
3723
+
3724
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3725
+
3726
+
3727
+ Started GET "/assets/index.self-59e5bff5b5a1e1eb9dc01f8ec83f3a14197d7e780416b54660b8fccd56431395.css?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3728
+
3729
+
3730
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 22:00:06 +0300
3731
+
3732
+
3733
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 22:00:06 +0300
3734
+
3735
+
3736
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3737
+
3738
+
3739
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3740
+
3741
+
3742
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3743
+
3744
+
3745
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3746
+
3747
+
3748
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3749
+
3750
+
3751
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3752
+
3753
+
3754
+ Started GET "/assets/index.self-174c52fbc383f5ad8597676f2c4dcfa433177dfeef2f3c374bc222f653efd748.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3755
+
3756
+
3757
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3758
+
3759
+
3760
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3761
+
3762
+
3763
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 22:00:06 +0300
3764
+
3765
+
3766
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 22:00:07 +0300
3767
+
3768
+
3769
+ Started GET "/img/picture.jpg" for ::1 at 2015-07-19 22:00:07 +0300
3770
+
3771
+ ActionController::RoutingError (No route matches [GET] "/img/picture.jpg"):
3772
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3773
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3774
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
3775
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
3776
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3777
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
3778
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
3779
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
3780
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3781
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
3782
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
3783
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3784
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3785
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
3786
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
3787
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
3788
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
3789
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3790
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
3791
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
3792
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3793
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3794
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3795
+
3796
+
3797
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms)
3798
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
3799
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.8ms)
3800
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
3801
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.9ms)
3802
+
3803
+
3804
+ Started GET "/img/picture.jpg" for ::1 at 2015-07-19 22:00:07 +0300
3805
+
3806
+ ActionController::RoutingError (No route matches [GET] "/img/picture.jpg"):
3807
+ actionpack (4.2.3) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
3808
+ actionpack (4.2.3) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3809
+ railties (4.2.3) lib/rails/rack/logger.rb:38:in `call_app'
3810
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `block in call'
3811
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3812
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:26:in `tagged'
3813
+ activesupport (4.2.3) lib/active_support/tagged_logging.rb:68:in `tagged'
3814
+ railties (4.2.3) lib/rails/rack/logger.rb:20:in `call'
3815
+ actionpack (4.2.3) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3816
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
3817
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
3818
+ activesupport (4.2.3) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
3819
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3820
+ actionpack (4.2.3) lib/action_dispatch/middleware/static.rb:116:in `call'
3821
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
3822
+ railties (4.2.3) lib/rails/engine.rb:518:in `call'
3823
+ railties (4.2.3) lib/rails/application.rb:165:in `call'
3824
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
3825
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
3826
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
3827
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
3828
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
3829
+ /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
3830
+
3831
+
3832
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
3833
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
3834
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/routes/_table.html.erb (2.3ms)
3835
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.9ms)
3836
+ Rendered /Users/syndbg/.rbenv/versions/2.2.2/lib/ruby/gems/2.2.0/gems/actionpack-4.2.3/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.9ms)
3837
+
3838
+
3839
+ Started GET "/" for ::1 at 2015-07-19 22:00:19 +0300
3840
+ Processing by HelloController#index as HTML
3841
+ Rendered hello/index.html.erb within layouts/application (0.6ms)
3842
+ Completed 200 OK in 129ms (Views: 128.3ms | ActiveRecord: 0.0ms)
3843
+
3844
+
3845
+ Started GET "/assets/index.self-59e5bff5b5a1e1eb9dc01f8ec83f3a14197d7e780416b54660b8fccd56431395.css?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3846
+
3847
+
3848
+ Started GET "/assets/application.self-27be66bfa5e25a052c9869ef1519680896b9a8b9247ad6b105b7af48cc399d66.css?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3849
+
3850
+
3851
+ Started GET "/assets/jquery2.self-0664d02dcbfb008e715c754b00b9af29d6f1796828c03610aee4265bdfc6afff.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3852
+
3853
+
3854
+ Started GET "/assets/bootstrap/alert.self-896ab026e6823f5cef2441e07dac53d0692a5b772ac58b1ce20aa624c342d3f4.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3855
+
3856
+
3857
+ Started GET "/assets/cropper.self-0ce8be594100c246f3dbca76de1c769a85514721f9f13dce2a42ba6bf0f51bf4.css?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3858
+
3859
+
3860
+ Started GET "/assets/bootstrap/button.self-d19f3e2bcd3a7a4d75c11b9141b3fabd2c11987da1e99c85548ec3ecf8db30c3.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3861
+
3862
+
3863
+ Started GET "/assets/bootstrap/affix.self-f7aef9d98ee5ece34a6a92a6a15bba777d93e8d908b75c95a85088277f394200.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3864
+
3865
+
3866
+ Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3867
+
3868
+
3869
+ Started GET "/assets/bootstrap/carousel.self-b2e5e14483e6c31343a83861b7d487620f143d6fc2d07d5ae7544b6b225ba6be.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3870
+
3871
+
3872
+ Started GET "/assets/bootstrap/collapse.self-93820e9b486e375a7fb4477602def3a6f8381fa6d50938d5378297ffbe4a1248.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3873
+
3874
+
3875
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 22:00:19 +0300
3876
+
3877
+
3878
+ Started GET "/assets/bootstrap/dropdown.self-30536ae4d54b2685c26b5787ed0eb549a9075717fe690cce6270873bedf2df00.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3879
+
3880
+
3881
+ Started GET "/assets/bootstrap/scrollspy.self-c5c6ed008955656d345067e9821d79f1216b8383134d08465d4aa1a33a2b93b4.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3882
+
3883
+
3884
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 22:00:19 +0300
3885
+
3886
+
3887
+ Started GET "/assets/bootstrap/transition.self-9616c4e856b57659b67da3c6f2adcd584b5601ef4bebcdadab8ebb387d80bb25.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3888
+
3889
+
3890
+ Started GET "/assets/bootstrap/tab.self-9b77df34cbbb08ec93a806d6cdb741f04e3dbf3389978a0679146f2d2987bc89.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3891
+
3892
+
3893
+ Started GET "/assets/bootstrap/modal.self-bcfe54f3132bf16a8c5ce4289e47eba488f6522a08f49f378a037061c6c7aa4c.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3894
+
3895
+
3896
+ Started GET "/assets/bootstrap/tooltip.self-3aa41fbe871573b34e0ebddf31598cd5a11a9841ca85f90934ea46326e46626d.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3897
+
3898
+
3899
+ Started GET "/assets/bootstrap/popover.self-b73e9c9111d01148e24bbc46e096782e024dc5db630e7078cf11ed2587ef8551.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3900
+
3901
+
3902
+ Started GET "/assets/bootstrap-sprockets.self-fbfa5ad7d9aa0afe439ec4ff3883acc4cb92b62cb67c40d674320c9aa1d4642d.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3903
+
3904
+
3905
+ Started GET "/assets/cropper.self-9026e066dbe61041da2812260bc353f6cf4dfc3d6d2691644b07ee585841c20d.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3906
+
3907
+
3908
+ Started GET "/assets/application.self-f8806224e027f3e3f0138ea9ce99319e298dfdb323304d1f1be6eae8e8c74724.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3909
+
3910
+
3911
+ Started GET "/assets/index.self-174c52fbc383f5ad8597676f2c4dcfa433177dfeef2f3c374bc222f653efd748.js?body=1" for ::1 at 2015-07-19 22:00:19 +0300
3912
+
3913
+
3914
+ Started GET "/" for ::1 at 2015-07-19 22:01:47 +0300
3915
+ Processing by HelloController#index as HTML
3916
+ Rendered hello/index.html.erb within layouts/application (0.6ms)
3917
+ Completed 200 OK in 231ms (Views: 230.3ms | ActiveRecord: 0.0ms)
3918
+
3919
+
3920
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 22:01:48 +0300
3921
+
3922
+
3923
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 22:01:48 +0300
3924
+
3925
+
3926
+ Started GET "/assets/bootstrap-sprockets" for ::1 at 2015-07-19 22:01:51 +0300
3927
+
3928
+
3929
+ Started GET "/assets/bootstrap" for ::1 at 2015-07-19 22:01:51 +0300