activerecord-sortable 0.0.3 → 0.0.4

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 (393) hide show
  1. checksums.yaml +4 -4
  2. data/lib/activerecord/sortable/acts_as_sortable.rb +7 -7
  3. data/lib/activerecord/sortable/acts_as_sortable/instance_methods.rb +10 -12
  4. data/lib/activerecord/sortable/version.rb +1 -1
  5. data/spec/dummy-3.2/Rakefile +7 -0
  6. data/spec/dummy-3.2/app/assets/images/rails.png +0 -0
  7. data/spec/dummy-3.2/app/assets/javascripts/application.js +10 -0
  8. data/spec/{dummy → dummy-3.2}/app/assets/javascripts/jquery.simulate.js +0 -0
  9. data/spec/{dummy → dummy-3.2}/app/assets/stylesheets/application.css +0 -0
  10. data/spec/{dummy → dummy-3.2}/app/controllers/application_controller.rb +0 -0
  11. data/spec/dummy-3.2/app/controllers/parents_controller.rb +24 -0
  12. data/spec/{dummy → dummy-3.2}/app/controllers/things_controller.rb +0 -0
  13. data/spec/{dummy → dummy-3.2}/app/helpers/application_helper.rb +0 -0
  14. data/spec/dummy-3.2/app/models/child.rb +9 -0
  15. data/spec/{dummy → dummy-3.2}/app/models/item.rb +0 -0
  16. data/spec/{dummy → dummy-3.2}/app/models/other_thing.rb +0 -0
  17. data/spec/dummy-3.2/app/models/parent.rb +7 -0
  18. data/spec/{dummy → dummy-3.2}/app/models/thing.rb +0 -0
  19. data/spec/{dummy → dummy-3.2}/app/views/layouts/application.html.erb +0 -0
  20. data/spec/{dummy → dummy-3.2}/app/views/parents/_form.html.erb +0 -0
  21. data/spec/{dummy → dummy-3.2}/app/views/parents/new.html.erb +0 -0
  22. data/spec/{dummy → dummy-3.2}/app/views/parents/show.html.erb +0 -0
  23. data/spec/{dummy → dummy-3.2}/app/views/things/_thing.html.erb +0 -0
  24. data/spec/{dummy → dummy-3.2}/app/views/things/index.html.erb +0 -0
  25. data/spec/{dummy → dummy-3.2}/app/views/things/move.js.erb +0 -0
  26. data/spec/dummy-3.2/config.ru +4 -0
  27. data/spec/dummy-3.2/config/application.rb +65 -0
  28. data/spec/dummy-3.2/config/boot.rb +6 -0
  29. data/spec/{dummy → dummy-3.2}/config/database.yml +0 -0
  30. data/spec/dummy-3.2/config/environment.rb +5 -0
  31. data/spec/dummy-3.2/config/environments/development.rb +32 -0
  32. data/spec/dummy-3.2/config/environments/production.rb +54 -0
  33. data/spec/dummy-3.2/config/environments/test.rb +37 -0
  34. data/spec/{dummy → dummy-3.2}/config/initializers/backtrace_silencers.rb +0 -0
  35. data/spec/dummy-3.2/config/initializers/inflections.rb +15 -0
  36. data/spec/{dummy → dummy-3.2}/config/initializers/mime_types.rb +0 -0
  37. data/spec/dummy-3.2/config/initializers/secret_token.rb +7 -0
  38. data/spec/dummy-3.2/config/initializers/session_store.rb +8 -0
  39. data/spec/dummy-3.2/config/initializers/wrap_parameters.rb +14 -0
  40. data/spec/dummy-3.2/config/locales/en.yml +5 -0
  41. data/spec/dummy-3.2/config/routes.rb +10 -0
  42. data/spec/{dummy → dummy-3.2}/db/migrate/20140512100816_create_things.rb +0 -0
  43. data/spec/{dummy → dummy-3.2}/db/migrate/20140525104834_create_other_things.rb +0 -0
  44. data/spec/{dummy → dummy-3.2}/db/migrate/20140525111906_create_items.rb +0 -0
  45. data/spec/{dummy → dummy-3.2}/db/migrate/20140525112123_add_position_to_items.rb +0 -0
  46. data/spec/{dummy → dummy-3.2}/db/migrate/20140721161028_create_parents.rb +0 -0
  47. data/spec/{dummy → dummy-3.2}/db/migrate/20140721161122_create_children.rb +0 -0
  48. data/spec/dummy-3.2/db/schema.rb +55 -0
  49. data/spec/dummy-3.2/db/seeds.rb +7 -0
  50. data/spec/{dummy/db/development.sqlite3 → dummy-3.2/db/test.sqlite3} +0 -0
  51. data/spec/dummy-3.2/log/test.log +36041 -0
  52. data/spec/dummy-3.2/public/404.html +26 -0
  53. data/spec/dummy-3.2/public/422.html +26 -0
  54. data/spec/dummy-3.2/public/500.html +25 -0
  55. data/spec/{dummy → dummy-3.2}/public/favicon.ico +0 -0
  56. data/spec/dummy-3.2/public/robots.txt +5 -0
  57. data/spec/dummy-3.2/script/rails +6 -0
  58. data/spec/dummy-3.2/tmp/cache/assets/C1D/DC0/sprockets%2Fbd257232b00955899e62111d88f71041 +0 -0
  59. data/spec/dummy-3.2/tmp/cache/assets/C28/E50/sprockets%2Fcaf21088467d229770a205c793606696 +0 -0
  60. data/spec/dummy-3.2/tmp/cache/assets/C5F/C30/sprockets%2F84e4e9c827d1814423aef96781130936 +0 -0
  61. data/spec/dummy-3.2/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
  62. data/spec/dummy-3.2/tmp/cache/assets/CF2/E80/sprockets%2F1a6f1c162b9dfb93795797f662d126f5 +0 -0
  63. data/spec/dummy-3.2/tmp/cache/assets/CFB/D20/sprockets%2F5df6058037c4d659aff637757e6e26e7 +0 -0
  64. data/spec/dummy-3.2/tmp/cache/assets/CFD/3D0/sprockets%2Ff98a36c3de128188a92b989fe146b597 +0 -0
  65. data/spec/dummy-3.2/tmp/cache/assets/D0D/4D0/sprockets%2F75ce7784ba307d080147ccc3b8f18b52 +0 -0
  66. data/spec/dummy-3.2/tmp/cache/assets/D0E/EB0/sprockets%2Ffb491b7b510d8f810fa99e54106f232e +0 -0
  67. data/spec/dummy-3.2/tmp/cache/assets/D16/490/sprockets%2F9f74f5b15b509b3d296fe3ab392d1591 +0 -0
  68. data/spec/{dummy/tmp/cache/assets/development/sprockets/b84a4d17f27ef190e1eed6129eaac20b → dummy-3.2/tmp/cache/assets/D17/5F0/sprockets%2Fe36f5b9a442f84c3592c7fb2169a5d15} +0 -0
  69. data/spec/dummy-3.2/tmp/cache/assets/D1D/2E0/sprockets%2F2823f8b739b392b4df3acc1a59787c39 +0 -0
  70. data/spec/dummy-3.2/tmp/cache/assets/D2A/090/sprockets%2F11820a6ecc13dd7f7094529f02abab32 +0 -0
  71. data/spec/dummy-3.2/tmp/cache/assets/D30/020/sprockets%2Fcaf0d6f1b1316a9cb603579bca409318 +0 -0
  72. data/spec/dummy-3.2/tmp/cache/assets/D31/250/sprockets%2Faf2c32ff2528da1f13a6d630b2475f36 +0 -0
  73. data/spec/dummy-3.2/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
  74. data/spec/dummy-3.2/tmp/cache/assets/D3C/C90/sprockets%2F10910e286e7d2d8870157db2abcafe39 +0 -0
  75. data/spec/dummy-3.2/tmp/cache/assets/D49/5C0/sprockets%2Fae7d162666d06a17f86cb4e34719dd7e +0 -0
  76. data/spec/dummy-3.2/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
  77. data/spec/dummy-3.2/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
  78. data/spec/dummy-3.2/tmp/cache/assets/D62/470/sprockets%2F970fcaaf1f2e080f41516cae13c267e4 +0 -0
  79. data/spec/{dummy/tmp/cache/assets/development/sprockets/67ad3a3d9a5fa9dd07456e131ce9c2a8 → dummy-3.2/tmp/cache/assets/D69/C30/sprockets%2Fad2bd7e647c68002aaee26990c98da10} +0 -0
  80. data/spec/dummy-3.2/tmp/cache/assets/D6B/4C0/sprockets%2Fd2c5de321ee505d7989880baceaa1065 +0 -0
  81. data/spec/dummy-3.2/tmp/cache/assets/D73/900/sprockets%2Fac9267f1f84fd085b4ea4c720b8b6f70 +0 -0
  82. data/spec/dummy-3.2/tmp/cache/assets/DC8/7B0/sprockets%2Fa00bb25f3c19ec36bd45b9f8f5db42c7 +0 -0
  83. data/spec/dummy-3.2/tmp/cache/assets/DC9/F90/sprockets%2F09c11bdeef2fe5ba3fb3983de6031f72 +0 -0
  84. data/spec/dummy-3.2/tmp/cache/assets/DD3/8B0/sprockets%2F0bb2483991c2c5f7f83fde21edafb6a9 +0 -0
  85. data/spec/dummy-3.2/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
  86. data/spec/dummy-3.2/tmp/cache/assets/DE2/810/sprockets%2F02e6da2de0eeda095c3ab81e1033fc1d +0 -0
  87. data/spec/dummy-3.2/tmp/cache/assets/DFF/FC0/sprockets%2F2cddaa943bba17b89f9db05d6493f7ab +0 -0
  88. data/spec/dummy-3.2/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
  89. data/spec/dummy-3.2/tmp/cache/assets/E06/100/sprockets%2Febe17685dedaf8f574dde1463bdea118 +0 -0
  90. data/spec/dummy-3.2/tmp/cache/assets/E2F/BB0/sprockets%2F7eabb62183b7ca5d57cefb5c558e0cdf +0 -0
  91. data/spec/dummy-3.2/tmp/cache/assets/E4B/D50/sprockets%2Ff4e214ad5a26cfeb52bf6aa05ecae9a2 +0 -0
  92. data/spec/dummy-3.2/tmp/cache/assets/E58/A50/sprockets%2F9dabdc14eb4aece9a09cf86c11c52ec6 +0 -0
  93. data/spec/{dummy → dummy-4.0}/Rakefile +0 -0
  94. data/spec/{dummy → dummy-4.0}/app/assets/javascripts/application.js +1 -1
  95. data/spec/dummy-4.0/app/assets/javascripts/jquery.simulate.js +312 -0
  96. data/spec/dummy-4.0/app/assets/stylesheets/application.css +14 -0
  97. data/spec/dummy-4.0/app/controllers/application_controller.rb +5 -0
  98. data/spec/{dummy → dummy-4.0}/app/controllers/parents_controller.rb +0 -0
  99. data/spec/dummy-4.0/app/controllers/things_controller.rb +10 -0
  100. data/spec/dummy-4.0/app/helpers/application_helper.rb +2 -0
  101. data/spec/{dummy → dummy-4.0}/app/models/child.rb +0 -0
  102. data/spec/dummy-4.0/app/models/item.rb +3 -0
  103. data/spec/dummy-4.0/app/models/other_thing.rb +5 -0
  104. data/spec/{dummy → dummy-4.0}/app/models/parent.rb +0 -0
  105. data/spec/dummy-4.0/app/models/thing.rb +3 -0
  106. data/spec/dummy-4.0/app/views/layouts/application.html.erb +14 -0
  107. data/spec/dummy-4.0/app/views/parents/_form.html.erb +18 -0
  108. data/spec/dummy-4.0/app/views/parents/new.html.erb +3 -0
  109. data/spec/dummy-4.0/app/views/parents/show.html.erb +9 -0
  110. data/spec/dummy-4.0/app/views/things/_thing.html.erb +3 -0
  111. data/spec/dummy-4.0/app/views/things/index.html.erb +11 -0
  112. data/spec/dummy-4.0/app/views/things/move.js.erb +4 -0
  113. data/spec/{dummy → dummy-4.0}/bin/bundle +0 -0
  114. data/spec/{dummy → dummy-4.0}/bin/rails +0 -0
  115. data/spec/{dummy → dummy-4.0}/bin/rake +0 -0
  116. data/spec/{dummy → dummy-4.0}/config.ru +0 -0
  117. data/spec/dummy-4.0/config/application.rb +29 -0
  118. data/spec/dummy-4.0/config/boot.rb +4 -0
  119. data/spec/dummy-4.0/config/database.yml +25 -0
  120. data/spec/{dummy → dummy-4.0}/config/environment.rb +0 -0
  121. data/spec/dummy-4.0/config/environments/development.rb +28 -0
  122. data/spec/dummy-4.0/config/environments/production.rb +65 -0
  123. data/spec/dummy-4.0/config/environments/test.rb +39 -0
  124. data/spec/dummy-4.0/config/initializers/backtrace_silencers.rb +7 -0
  125. data/spec/{dummy → dummy-4.0}/config/initializers/filter_parameter_logging.rb +0 -0
  126. data/spec/{dummy → dummy-4.0}/config/initializers/inflections.rb +0 -0
  127. data/spec/dummy-4.0/config/initializers/mime_types.rb +5 -0
  128. data/spec/dummy-4.0/config/initializers/secret_token.rb +12 -0
  129. data/spec/dummy-4.0/config/initializers/session_store.rb +3 -0
  130. data/spec/{dummy → dummy-4.0}/config/initializers/wrap_parameters.rb +0 -0
  131. data/spec/{dummy → dummy-4.0}/config/locales/en.yml +0 -0
  132. data/spec/{dummy → dummy-4.0}/config/routes.rb +0 -0
  133. data/spec/dummy-4.0/db/migrate/20140512100816_create_things.rb +10 -0
  134. data/spec/dummy-4.0/db/migrate/20140525104834_create_other_things.rb +10 -0
  135. data/spec/dummy-4.0/db/migrate/20140525111906_create_items.rb +7 -0
  136. data/spec/dummy-4.0/db/migrate/20140525112123_add_position_to_items.rb +13 -0
  137. data/spec/dummy-4.0/db/migrate/20140721161028_create_parents.rb +7 -0
  138. data/spec/dummy-4.0/db/migrate/20140721161122_create_children.rb +16 -0
  139. data/spec/{dummy → dummy-4.0}/db/schema.rb +0 -0
  140. data/spec/dummy-4.0/db/seeds.rb +7 -0
  141. data/spec/{dummy → dummy-4.0}/db/test.sqlite3 +0 -0
  142. data/spec/dummy-4.0/log/test.log +12754 -0
  143. data/spec/{dummy → dummy-4.0}/public/404.html +0 -0
  144. data/spec/{dummy → dummy-4.0}/public/422.html +0 -0
  145. data/spec/{dummy → dummy-4.0}/public/500.html +0 -0
  146. data/spec/dummy-4.0/public/favicon.ico +0 -0
  147. data/spec/dummy-4.0/public/robots.txt +5 -0
  148. data/spec/{dummy/tmp/cache/assets/development/sprockets/485c8ac4edde07df3f326e4f4b9f9106 → dummy-4.0/tmp/cache/assets/test/sprockets/0064817819e876c7ff900af85ee43f56} +0 -0
  149. data/spec/{dummy → dummy-4.0}/tmp/cache/assets/test/sprockets/02e6da2de0eeda095c3ab81e1033fc1d +0 -0
  150. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/04a713519ca48222acdb217c3096698e +0 -0
  151. data/spec/{dummy/tmp/cache/assets/test/sprockets/fd13af7854ecfb6bedf12ce71539b636 → dummy-4.0/tmp/cache/assets/test/sprockets/09c11bdeef2fe5ba3fb3983de6031f72} +0 -0
  152. data/spec/{dummy → dummy-4.0}/tmp/cache/assets/test/sprockets/0bb2483991c2c5f7f83fde21edafb6a9 +0 -0
  153. data/spec/{dummy/tmp/cache/assets/development/sprockets/a2038db6aaa5289fba7fde9aea561a08 → dummy-4.0/tmp/cache/assets/test/sprockets/10910e286e7d2d8870157db2abcafe39} +0 -0
  154. data/spec/{dummy → dummy-4.0}/tmp/cache/assets/test/sprockets/11820a6ecc13dd7f7094529f02abab32 +0 -0
  155. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  156. data/spec/{dummy/tmp/cache/assets/test/sprockets/c7e351cd01a8592503c63b37d7d69e4f → dummy-4.0/tmp/cache/assets/test/sprockets/1a6f1c162b9dfb93795797f662d126f5} +0 -0
  157. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/1e098f872b206638e45fa1d876911101 +0 -0
  158. data/spec/{dummy/tmp/cache/assets/test/sprockets/63c434ac472c04632133d9bc2f8ebe44 → dummy-4.0/tmp/cache/assets/test/sprockets/2823f8b739b392b4df3acc1a59787c39} +0 -0
  159. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/2b4d2c277d29ebcc820a703775782533 +0 -0
  160. data/spec/{dummy/tmp/cache/assets/test/sprockets/77088c2f43bec60ff0e030676e96f686 → dummy-4.0/tmp/cache/assets/test/sprockets/2cddaa943bba17b89f9db05d6493f7ab} +0 -0
  161. data/spec/{dummy/tmp/cache/assets/development → dummy-4.0/tmp/cache/assets/test}/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  162. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  163. data/spec/{dummy/tmp/cache/assets/development/sprockets/8b39a75a80c1fb3a07395e674644e2cc → dummy-4.0/tmp/cache/assets/test/sprockets/5df6058037c4d659aff637757e6e26e7} +0 -0
  164. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/62c4b0a9f5a12db1adec334b02769b0d +0 -0
  165. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/6fd04a935d68f1c60e1a2c81a4fa46e7 +0 -0
  166. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/71a89e2084661527bc1382c3060ff905 +0 -0
  167. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/75ce7784ba307d080147ccc3b8f18b52 +0 -0
  168. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/7d90c7857f7b003f362f23e59da38a39 +0 -0
  169. data/spec/{dummy/tmp/cache/assets/test/sprockets/d8b62b055a9e2933d39777275cd166f0 → dummy-4.0/tmp/cache/assets/test/sprockets/7eabb62183b7ca5d57cefb5c558e0cdf} +0 -0
  170. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/84e4e9c827d1814423aef96781130936 +0 -0
  171. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/970fcaaf1f2e080f41516cae13c267e4 +0 -0
  172. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/9bef970315f0b5b23ee7eb56386184c3 +0 -0
  173. data/spec/{dummy/tmp/cache/assets/development/sprockets/80d43205b7942ece8d8b09f859813908 → dummy-4.0/tmp/cache/assets/test/sprockets/9dabdc14eb4aece9a09cf86c11c52ec6} +0 -0
  174. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/9dc32bddd6d4c6beb21a47a83d7223bd +0 -0
  175. data/spec/{dummy/tmp/cache/assets/test/sprockets/405ef6e6ee991e0b2d850f3443245dc8 → dummy-4.0/tmp/cache/assets/test/sprockets/9f74f5b15b509b3d296fe3ab392d1591} +0 -0
  176. data/spec/{dummy/tmp/cache/assets/development/sprockets/7ed5d11be8a68c295f8833e4961891ff → dummy-4.0/tmp/cache/assets/test/sprockets/a00bb25f3c19ec36bd45b9f8f5db42c7} +0 -0
  177. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/ac9267f1f84fd085b4ea4c720b8b6f70 +0 -0
  178. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/ad2bd7e647c68002aaee26990c98da10 +0 -0
  179. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/ae7d162666d06a17f86cb4e34719dd7e +0 -0
  180. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/af2c32ff2528da1f13a6d630b2475f36 +0 -0
  181. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/b4cf8f048b47d0f8deebe56ac5e47a9c +0 -0
  182. data/spec/{dummy/tmp/cache/assets/development/sprockets/c7e351cd01a8592503c63b37d7d69e4f → dummy-4.0/tmp/cache/assets/test/sprockets/bd257232b00955899e62111d88f71041} +0 -0
  183. data/spec/{dummy/tmp/cache/assets/test/sprockets/a2038db6aaa5289fba7fde9aea561a08 → dummy-4.0/tmp/cache/assets/test/sprockets/caf0d6f1b1316a9cb603579bca409318} +0 -0
  184. data/spec/{dummy → dummy-4.0}/tmp/cache/assets/test/sprockets/caf21088467d229770a205c793606696 +0 -0
  185. data/spec/{dummy → dummy-4.0}/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  186. data/spec/{dummy/tmp/cache/assets/test/sprockets/67ad3a3d9a5fa9dd07456e131ce9c2a8 → dummy-4.0/tmp/cache/assets/test/sprockets/d2c5de321ee505d7989880baceaa1065} +0 -0
  187. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  188. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/e36f5b9a442f84c3592c7fb2169a5d15 +0 -0
  189. data/spec/{dummy → dummy-4.0}/tmp/cache/assets/test/sprockets/ebe17685dedaf8f574dde1463bdea118 +0 -0
  190. data/spec/{dummy/tmp/cache/assets/test/sprockets/fba7f1b57d7cc3253cb40677cbbd8f54 → dummy-4.0/tmp/cache/assets/test/sprockets/f4e214ad5a26cfeb52bf6aa05ecae9a2} +0 -0
  191. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  192. data/spec/{dummy/tmp/cache/assets/development/sprockets/63c434ac472c04632133d9bc2f8ebe44 → dummy-4.0/tmp/cache/assets/test/sprockets/f98a36c3de128188a92b989fe146b597} +0 -0
  193. data/spec/{dummy/tmp/cache/assets/development/sprockets/fd13af7854ecfb6bedf12ce71539b636 → dummy-4.0/tmp/cache/assets/test/sprockets/fb491b7b510d8f810fa99e54106f232e} +0 -0
  194. data/spec/dummy-4.0/tmp/cache/assets/test/sprockets/fcfbcdc8cadbbe2d7860d592143b5d67 +0 -0
  195. data/spec/dummy-4.1/Rakefile +6 -0
  196. data/spec/dummy-4.1/app/assets/javascripts/application.js +9 -0
  197. data/spec/dummy-4.1/app/assets/javascripts/jquery.simulate.js +312 -0
  198. data/spec/dummy-4.1/app/assets/stylesheets/application.css +14 -0
  199. data/spec/dummy-4.1/app/controllers/application_controller.rb +5 -0
  200. data/spec/dummy-4.1/app/controllers/parents_controller.rb +31 -0
  201. data/spec/dummy-4.1/app/controllers/things_controller.rb +10 -0
  202. data/spec/dummy-4.1/app/helpers/application_helper.rb +2 -0
  203. data/spec/dummy-4.1/app/models/child.rb +7 -0
  204. data/spec/dummy-4.1/app/models/item.rb +3 -0
  205. data/spec/dummy-4.1/app/models/other_thing.rb +5 -0
  206. data/spec/dummy-4.1/app/models/parent.rb +5 -0
  207. data/spec/dummy-4.1/app/models/thing.rb +3 -0
  208. data/spec/dummy-4.1/app/views/layouts/application.html.erb +14 -0
  209. data/spec/dummy-4.1/app/views/parents/_form.html.erb +18 -0
  210. data/spec/dummy-4.1/app/views/parents/new.html.erb +3 -0
  211. data/spec/dummy-4.1/app/views/parents/show.html.erb +9 -0
  212. data/spec/dummy-4.1/app/views/things/_thing.html.erb +3 -0
  213. data/spec/dummy-4.1/app/views/things/index.html.erb +11 -0
  214. data/spec/dummy-4.1/app/views/things/move.js.erb +4 -0
  215. data/spec/dummy-4.1/bin/bundle +3 -0
  216. data/spec/dummy-4.1/bin/rails +4 -0
  217. data/spec/dummy-4.1/bin/rake +4 -0
  218. data/spec/dummy-4.1/config.ru +4 -0
  219. data/spec/{dummy → dummy-4.1}/config/application.rb +0 -0
  220. data/spec/{dummy → dummy-4.1}/config/boot.rb +0 -0
  221. data/spec/dummy-4.1/config/database.yml +25 -0
  222. data/spec/dummy-4.1/config/environment.rb +5 -0
  223. data/spec/{dummy → dummy-4.1}/config/environments/development.rb +0 -0
  224. data/spec/{dummy → dummy-4.1}/config/environments/production.rb +0 -0
  225. data/spec/{dummy → dummy-4.1}/config/environments/test.rb +0 -0
  226. data/spec/dummy-4.1/config/initializers/backtrace_silencers.rb +7 -0
  227. data/spec/dummy-4.1/config/initializers/filter_parameter_logging.rb +4 -0
  228. data/spec/dummy-4.1/config/initializers/inflections.rb +16 -0
  229. data/spec/dummy-4.1/config/initializers/mime_types.rb +5 -0
  230. data/spec/{dummy → dummy-4.1}/config/initializers/secret_token.rb +0 -0
  231. data/spec/{dummy → dummy-4.1}/config/initializers/session_store.rb +0 -0
  232. data/spec/dummy-4.1/config/initializers/wrap_parameters.rb +14 -0
  233. data/spec/dummy-4.1/config/locales/en.yml +23 -0
  234. data/spec/dummy-4.1/config/routes.rb +10 -0
  235. data/spec/dummy-4.1/db/migrate/20140512100816_create_things.rb +10 -0
  236. data/spec/dummy-4.1/db/migrate/20140525104834_create_other_things.rb +10 -0
  237. data/spec/dummy-4.1/db/migrate/20140525111906_create_items.rb +7 -0
  238. data/spec/dummy-4.1/db/migrate/20140525112123_add_position_to_items.rb +13 -0
  239. data/spec/dummy-4.1/db/migrate/20140721161028_create_parents.rb +7 -0
  240. data/spec/dummy-4.1/db/migrate/20140721161122_create_children.rb +16 -0
  241. data/spec/dummy-4.1/db/schema.rb +55 -0
  242. data/spec/{dummy → dummy-4.1}/db/seeds.rb +0 -0
  243. data/spec/dummy-4.1/db/test.sqlite3 +0 -0
  244. data/spec/dummy-4.1/log/test.log +21299 -0
  245. data/spec/dummy-4.1/public/404.html +58 -0
  246. data/spec/dummy-4.1/public/422.html +58 -0
  247. data/spec/dummy-4.1/public/500.html +57 -0
  248. data/spec/dummy-4.1/public/favicon.ico +0 -0
  249. data/spec/{dummy/tmp/cache/assets/development → dummy-4.1/tmp/cache/assets/test}/sprockets/02e6da2de0eeda095c3ab81e1033fc1d +0 -0
  250. data/spec/{dummy/tmp/cache/assets/test/sprockets/bbceab6aa0252d0552d3a37d2d11e98d → dummy-4.1/tmp/cache/assets/test/sprockets/09c11bdeef2fe5ba3fb3983de6031f72} +0 -0
  251. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/0bb2483991c2c5f7f83fde21edafb6a9 +0 -0
  252. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/10910e286e7d2d8870157db2abcafe39 +0 -0
  253. data/spec/{dummy/tmp/cache/assets/development → dummy-4.1/tmp/cache/assets/test}/sprockets/11820a6ecc13dd7f7094529f02abab32 +0 -0
  254. data/spec/{dummy/tmp/cache/assets/development → dummy-4.1/tmp/cache/assets/test}/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  255. data/spec/{dummy/tmp/cache/assets/test/sprockets/485c8ac4edde07df3f326e4f4b9f9106 → dummy-4.1/tmp/cache/assets/test/sprockets/1a6f1c162b9dfb93795797f662d126f5} +0 -0
  256. data/spec/{dummy/tmp/cache/assets/development/sprockets/405ef6e6ee991e0b2d850f3443245dc8 → dummy-4.1/tmp/cache/assets/test/sprockets/2823f8b739b392b4df3acc1a59787c39} +0 -0
  257. data/spec/{dummy/tmp/cache/assets/development/sprockets/77088c2f43bec60ff0e030676e96f686 → dummy-4.1/tmp/cache/assets/test/sprockets/2cddaa943bba17b89f9db05d6493f7ab} +0 -0
  258. data/spec/{dummy → dummy-4.1}/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  259. data/spec/{dummy/tmp/cache/assets/development → dummy-4.1/tmp/cache/assets/test}/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  260. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/5df6058037c4d659aff637757e6e26e7 +0 -0
  261. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/75ce7784ba307d080147ccc3b8f18b52 +0 -0
  262. data/spec/{dummy/tmp/cache/assets/development/sprockets/d8b62b055a9e2933d39777275cd166f0 → dummy-4.1/tmp/cache/assets/test/sprockets/7eabb62183b7ca5d57cefb5c558e0cdf} +0 -0
  263. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/84e4e9c827d1814423aef96781130936 +0 -0
  264. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/970fcaaf1f2e080f41516cae13c267e4 +0 -0
  265. data/spec/{dummy/tmp/cache/assets/test/sprockets/80d43205b7942ece8d8b09f859813908 → dummy-4.1/tmp/cache/assets/test/sprockets/9dabdc14eb4aece9a09cf86c11c52ec6} +0 -0
  266. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/9f74f5b15b509b3d296fe3ab392d1591 +0 -0
  267. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/a00bb25f3c19ec36bd45b9f8f5db42c7 +0 -0
  268. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/ac9267f1f84fd085b4ea4c720b8b6f70 +0 -0
  269. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/ad2bd7e647c68002aaee26990c98da10 +0 -0
  270. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/ae7d162666d06a17f86cb4e34719dd7e +0 -0
  271. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/af2c32ff2528da1f13a6d630b2475f36 +0 -0
  272. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/bd257232b00955899e62111d88f71041 +0 -0
  273. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/caf0d6f1b1316a9cb603579bca409318 +0 -0
  274. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/caf21088467d229770a205c793606696 +0 -0
  275. data/spec/{dummy/tmp/cache/assets/development → dummy-4.1/tmp/cache/assets/test}/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  276. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/d2c5de321ee505d7989880baceaa1065 +0 -0
  277. data/spec/{dummy → dummy-4.1}/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  278. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/e36f5b9a442f84c3592c7fb2169a5d15 +0 -0
  279. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/ebe17685dedaf8f574dde1463bdea118 +0 -0
  280. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/f4e214ad5a26cfeb52bf6aa05ecae9a2 +0 -0
  281. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  282. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/f98a36c3de128188a92b989fe146b597 +0 -0
  283. data/spec/dummy-4.1/tmp/cache/assets/test/sprockets/fb491b7b510d8f810fa99e54106f232e +0 -0
  284. data/spec/dummy-4.2/Rakefile +6 -0
  285. data/spec/dummy-4.2/app/assets/javascripts/application.js +9 -0
  286. data/spec/dummy-4.2/app/assets/javascripts/jquery.simulate.js +312 -0
  287. data/spec/dummy-4.2/app/assets/stylesheets/application.css +14 -0
  288. data/spec/dummy-4.2/app/controllers/application_controller.rb +5 -0
  289. data/spec/dummy-4.2/app/controllers/parents_controller.rb +31 -0
  290. data/spec/dummy-4.2/app/controllers/things_controller.rb +10 -0
  291. data/spec/dummy-4.2/app/helpers/application_helper.rb +2 -0
  292. data/spec/dummy-4.2/app/models/child.rb +7 -0
  293. data/spec/dummy-4.2/app/models/item.rb +3 -0
  294. data/spec/dummy-4.2/app/models/other_thing.rb +5 -0
  295. data/spec/dummy-4.2/app/models/parent.rb +5 -0
  296. data/spec/dummy-4.2/app/models/thing.rb +3 -0
  297. data/spec/dummy-4.2/app/views/layouts/application.html.erb +14 -0
  298. data/spec/dummy-4.2/app/views/parents/_form.html.erb +18 -0
  299. data/spec/dummy-4.2/app/views/parents/new.html.erb +3 -0
  300. data/spec/dummy-4.2/app/views/parents/show.html.erb +9 -0
  301. data/spec/dummy-4.2/app/views/things/_thing.html.erb +3 -0
  302. data/spec/dummy-4.2/app/views/things/index.html.erb +11 -0
  303. data/spec/dummy-4.2/app/views/things/move.js.erb +4 -0
  304. data/spec/dummy-4.2/bin/bundle +3 -0
  305. data/spec/dummy-4.2/bin/rails +4 -0
  306. data/spec/dummy-4.2/bin/rake +4 -0
  307. data/spec/dummy-4.2/bin/setup +29 -0
  308. data/spec/dummy-4.2/config.ru +4 -0
  309. data/spec/dummy-4.2/config/application.rb +36 -0
  310. data/spec/dummy-4.2/config/boot.rb +3 -0
  311. data/spec/dummy-4.2/config/database.yml +25 -0
  312. data/spec/dummy-4.2/config/environment.rb +5 -0
  313. data/spec/dummy-4.2/config/environments/development.rb +28 -0
  314. data/spec/dummy-4.2/config/environments/production.rb +67 -0
  315. data/spec/dummy-4.2/config/environments/test.rb +42 -0
  316. data/spec/dummy-4.2/config/initializers/backtrace_silencers.rb +7 -0
  317. data/spec/dummy-4.2/config/initializers/cookies_serializer.rb +3 -0
  318. data/spec/dummy-4.2/config/initializers/filter_parameter_logging.rb +4 -0
  319. data/spec/dummy-4.2/config/initializers/inflections.rb +16 -0
  320. data/spec/dummy-4.2/config/initializers/mime_types.rb +4 -0
  321. data/spec/dummy-4.2/config/initializers/session_store.rb +3 -0
  322. data/spec/dummy-4.2/config/initializers/wrap_parameters.rb +14 -0
  323. data/spec/dummy-4.2/config/locales/en.yml +23 -0
  324. data/spec/dummy-4.2/config/routes.rb +10 -0
  325. data/spec/dummy-4.2/config/secrets.yml +22 -0
  326. data/spec/dummy-4.2/db/migrate/20140512100816_create_things.rb +10 -0
  327. data/spec/dummy-4.2/db/migrate/20140525104834_create_other_things.rb +10 -0
  328. data/spec/dummy-4.2/db/migrate/20140525111906_create_items.rb +7 -0
  329. data/spec/dummy-4.2/db/migrate/20140525112123_add_position_to_items.rb +13 -0
  330. data/spec/dummy-4.2/db/migrate/20140721161028_create_parents.rb +7 -0
  331. data/spec/dummy-4.2/db/migrate/20140721161122_create_children.rb +16 -0
  332. data/spec/dummy-4.2/db/schema.rb +55 -0
  333. data/spec/dummy-4.2/db/seeds.rb +7 -0
  334. data/spec/dummy-4.2/db/test.sqlite3 +0 -0
  335. data/spec/dummy-4.2/log/test.log +19722 -0
  336. data/spec/dummy-4.2/public/404.html +67 -0
  337. data/spec/dummy-4.2/public/422.html +67 -0
  338. data/spec/dummy-4.2/public/500.html +66 -0
  339. data/spec/dummy-4.2/public/favicon.ico +0 -0
  340. data/spec/dummy-4.2/public/robots.txt +5 -0
  341. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/02e6da2de0eeda095c3ab81e1033fc1d +0 -0
  342. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/098ee8d0808d837e812642b0e7aedd6c +0 -0
  343. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/0bb2483991c2c5f7f83fde21edafb6a9 +0 -0
  344. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/10910e286e7d2d8870157db2abcafe39 +0 -0
  345. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/11820a6ecc13dd7f7094529f02abab32 +0 -0
  346. data/spec/{dummy → dummy-4.2}/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  347. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/1a6f1c162b9dfb93795797f662d126f5 +0 -0
  348. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/2cddaa943bba17b89f9db05d6493f7ab +0 -0
  349. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  350. data/spec/{dummy → dummy-4.2}/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  351. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/58b58ea970ac7d5894111f3fe2b9cc77 +0 -0
  352. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/75ce7784ba307d080147ccc3b8f18b52 +0 -0
  353. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/7eabb62183b7ca5d57cefb5c558e0cdf +0 -0
  354. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/87c93f7710db56918b3d0b4fe9794584 +0 -0
  355. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/8805137339a3d09aafe1fd64ea4a00e3 +0 -0
  356. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/970fcaaf1f2e080f41516cae13c267e4 +0 -0
  357. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/9718db5d5f68bc201506dd701c13cf2b +0 -0
  358. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/97e84ab0b96056af12525fcdf79820d3 +0 -0
  359. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/9dabdc14eb4aece9a09cf86c11c52ec6 +0 -0
  360. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/ac9267f1f84fd085b4ea4c720b8b6f70 +0 -0
  361. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/ad2bd7e647c68002aaee26990c98da10 +0 -0
  362. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/ae7d162666d06a17f86cb4e34719dd7e +0 -0
  363. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/af2c32ff2528da1f13a6d630b2475f36 +0 -0
  364. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/bd257232b00955899e62111d88f71041 +0 -0
  365. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/cac92854b252f44e16e915b2804d40c5 +0 -0
  366. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/caf0d6f1b1316a9cb603579bca409318 +0 -0
  367. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/caf21088467d229770a205c793606696 +0 -0
  368. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  369. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/d2c5de321ee505d7989880baceaa1065 +0 -0
  370. data/spec/{dummy/tmp/cache/assets/development → dummy-4.2/tmp/cache/assets/test}/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  371. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/e1f2e41ca7f4433bfbd9e632a7359fe8 +0 -0
  372. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/e36f5b9a442f84c3592c7fb2169a5d15 +0 -0
  373. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/ebe17685dedaf8f574dde1463bdea118 +0 -0
  374. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/f4e214ad5a26cfeb52bf6aa05ecae9a2 +0 -0
  375. data/spec/dummy-4.2/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  376. data/spec/dummy_rails_app.rb +31 -0
  377. data/spec/features/drag_and_drop_spec.rb +40 -18
  378. data/spec/other_thing_spec.rb +1 -1
  379. data/spec/spec_helper.rb +4 -2
  380. data/spec/support/activerecord_sortable.rb +24 -60
  381. metadata +749 -234
  382. data/Rakefile +0 -33
  383. data/spec/dummy/README.rdoc +0 -28
  384. data/spec/dummy/log/development.log +0 -3806
  385. data/spec/dummy/log/test.log +0 -57795
  386. data/spec/dummy/tmp/cache/assets/development/sprockets/30e32f924769f4b2ef4ec2ed78d62f3d +0 -0
  387. data/spec/dummy/tmp/cache/assets/development/sprockets/402789e80a4ebf130058eeae9bacd1e3 +0 -0
  388. data/spec/dummy/tmp/cache/assets/development/sprockets/743ab64e3ac90ba4734a5a1af916fd93 +0 -0
  389. data/spec/dummy/tmp/cache/assets/development/sprockets/bbceab6aa0252d0552d3a37d2d11e98d +0 -0
  390. data/spec/dummy/tmp/cache/assets/development/sprockets/d5449ece5f819190ad6dd88c1caccffc +0 -0
  391. data/spec/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  392. data/spec/dummy/tmp/cache/assets/development/sprockets/fba7f1b57d7cc3253cb40677cbbd8f54 +0 -0
  393. data/spec/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
data/Rakefile DELETED
@@ -1,33 +0,0 @@
1
- begin
2
- require 'bundler/setup'
3
- rescue LoadError
4
- puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
5
- end
6
-
7
-
8
- require 'rdoc/task'
9
-
10
- RDoc::Task.new(:rdoc) do |rdoc|
11
- rdoc.rdoc_dir = 'rdoc'
12
- rdoc.title = 'Sortable'
13
- rdoc.options << '--line-numbers'
14
- rdoc.rdoc_files.include('README.rdoc')
15
- rdoc.rdoc_files.include('lib/**/*.rb')
16
- end
17
-
18
-
19
- APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
20
-
21
- load 'rails/tasks/engine.rake'
22
-
23
- Bundler::GemHelper.install_tasks
24
-
25
- Dir[File.join(File.dirname(__FILE__), 'tasks/**/*.rake')].each {|f| load f }
26
-
27
- require 'rspec/core'
28
- require 'rspec/core/rake_task'
29
-
30
- desc "Run all specs in spec directory (excluding plugin specs)"
31
- RSpec::Core::RakeTask.new(:spec => 'app:db:test:prepare')
32
-
33
- task :default => :spec
@@ -1,28 +0,0 @@
1
- == README
2
-
3
- This README would normally document whatever steps are necessary to get the
4
- application up and running.
5
-
6
- Things you may want to cover:
7
-
8
- * Ruby version
9
-
10
- * System dependencies
11
-
12
- * Configuration
13
-
14
- * Database creation
15
-
16
- * Database initialization
17
-
18
- * How to run the test suite
19
-
20
- * Services (job queues, cache servers, search engines, etc.)
21
-
22
- * Deployment instructions
23
-
24
- * ...
25
-
26
-
27
- Please feel free to use a different markup language if you do not plan to run
28
- <tt>rake doc:app</tt>.
@@ -1,3806 +0,0 @@
1
-
2
-
3
- Started GET "/" for 127.0.0.1 at 2014-07-21 22:05:52 +0600
4
-
5
- ActiveRecord::PendingMigrationError (
6
-
7
- Migrations are pending. To resolve this issue, run:
8
-
9
- bin/rake db:migrate RAILS_ENV=development
10
-
11
- ):
12
- activerecord (4.1.1) lib/active_record/migration.rb:389:in `check_pending!'
13
- activerecord (4.1.1) lib/active_record/migration.rb:377:in `call'
14
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
16
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
18
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
19
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
22
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
23
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
24
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
25
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
26
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
27
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
28
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
29
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
30
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
31
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
32
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
33
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
34
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
35
- railties (4.1.1) lib/rails/application.rb:144:in `call'
36
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
37
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
38
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
39
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
40
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
41
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
42
-
43
-
44
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
45
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.7ms)
46
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
47
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (46.7ms)
48
-  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
49
-  (0.4ms) select sqlite_version(*)
50
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
51
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
- Migrating to CreateThings (20140512100816)
53
-  (0.1ms) begin transaction
54
-  (0.5ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
55
-  (0.1ms) CREATE INDEX "index_things_on_position" ON "things" ("position")
56
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140512100816"]]
57
-  (1.0ms) commit transaction
58
- Migrating to CreateOtherThings (20140525104834)
59
-  (0.1ms) begin transaction
60
-  (0.5ms) CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
61
-  (0.1ms) CREATE INDEX "index_other_things_on_place" ON "other_things" ("place")
62
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140525104834"]]
63
-  (0.8ms) commit transaction
64
- Migrating to CreateItems (20140525111906)
65
-  (0.1ms) begin transaction
66
-  (0.4ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
67
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140525111906"]]
68
-  (0.8ms) commit transaction
69
- Migrating to AddPositionToItems (20140525112123)
70
-  (0.1ms) begin transaction
71
-  (0.4ms) ALTER TABLE "items" ADD "position" integer
72
- Item Load (0.1ms) SELECT "items".* FROM "items" ORDER BY id desc
73
-  (1.2ms) CREATE TEMPORARY TABLE "aitems" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "position" integer)
74
-  (0.1ms) SELECT * FROM "items"
75
-  (0.3ms) DROP TABLE "items"
76
-  (0.1ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "position" integer NOT NULL) 
77
-  (0.1ms) SELECT * FROM "aitems"
78
-  (0.4ms) DROP TABLE "aitems"
79
-  (0.2ms) CREATE INDEX "index_items_on_position" ON "items" ("position")
80
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140525112123"]]
81
-  (1.1ms) commit transaction
82
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
83
-  (0.2ms) SELECT sql
84
- FROM sqlite_master
85
- WHERE name='index_items_on_position' AND type='index'
86
- UNION ALL
87
- SELECT sql
88
- FROM sqlite_temp_master
89
- WHERE name='index_items_on_position' AND type='index'
90
-
91
-  (0.2ms)  SELECT sql
92
- FROM sqlite_master
93
- WHERE name='index_other_things_on_place' AND type='index'
94
- UNION ALL
95
- SELECT sql
96
- FROM sqlite_temp_master
97
- WHERE name='index_other_things_on_place' AND type='index'
98
- 
99
-  (0.2ms) SELECT sql
100
- FROM sqlite_master
101
- WHERE name='index_things_on_position' AND type='index'
102
- UNION ALL
103
- SELECT sql
104
- FROM sqlite_temp_master
105
- WHERE name='index_things_on_position' AND type='index'
106
-
107
-
108
-
109
- Started GET "/" for 127.0.0.1 at 2014-07-21 22:06:21 +0600
110
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
111
- Processing by ThingsController#index as HTML
112
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
113
- Rendered collection (0.0ms)
114
- Rendered things/index.html.erb within layouts/application (4.7ms)
115
- Completed 200 OK in 405ms (Views: 399.9ms | ActiveRecord: 0.2ms)
116
-
117
-
118
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:21 +0600
119
-
120
-
121
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
122
-
123
-
124
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
125
-
126
-
127
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
128
-
129
-
130
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
131
-
132
-
133
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
134
-
135
-
136
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
137
-
138
-
139
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
140
-
141
-
142
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:22 +0600
143
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
144
-  (0.1ms) begin transaction
145
- SQL (0.2ms) UPDATE "things" SET position = position + 1, updated_at = '2014-07-21 16:06:32.135802'
146
- SQL (0.6ms) INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.132675"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.132675"]]
147
-  (0.9ms) commit transaction
148
-  (0.1ms) begin transaction
149
- SQL (0.4ms) UPDATE "things" SET position = position + 1, updated_at = '2014-07-21 16:06:32.152493'
150
- SQL (0.1ms) INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.152293"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.152293"]]
151
-  (0.8ms) commit transaction
152
-  (0.0ms) begin transaction
153
- SQL (0.4ms) UPDATE "things" SET position = position + 1, updated_at = '2014-07-21 16:06:32.160177'
154
- SQL (0.1ms) INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.160012"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.160012"]]
155
-  (0.8ms) commit transaction
156
-  (0.0ms) begin transaction
157
- SQL (0.4ms) UPDATE "things" SET position = position + 1, updated_at = '2014-07-21 16:06:32.168074'
158
- SQL (0.1ms) INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.167910"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.167910"]]
159
-  (0.9ms) commit transaction
160
-  (0.1ms) begin transaction
161
- SQL (0.4ms) UPDATE "things" SET position = position + 1, updated_at = '2014-07-21 16:06:32.175999'
162
- SQL (0.1ms) INSERT INTO "things" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.175836"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.175836"]]
163
-  (0.8ms) commit transaction
164
-  (0.1ms) begin transaction
165
- SQL (0.2ms) UPDATE "items" SET position = position + 1, updated_at = '2014-07-21 16:06:32.189143'
166
- SQL (0.6ms) INSERT INTO "items" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.186076"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.186076"]]
167
-  (0.8ms) commit transaction
168
-  (0.1ms) begin transaction
169
- SQL (0.5ms) UPDATE "items" SET position = position + 1, updated_at = '2014-07-21 16:06:32.198269'
170
- SQL (0.2ms) INSERT INTO "items" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.197959"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.197959"]]
171
-  (0.8ms) commit transaction
172
-  (0.1ms) begin transaction
173
- SQL (0.5ms) UPDATE "items" SET position = position + 1, updated_at = '2014-07-21 16:06:32.206739'
174
- SQL (0.2ms) INSERT INTO "items" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.206536"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.206536"]]
175
-  (4.3ms) commit transaction
176
-  (0.1ms) begin transaction
177
- SQL (0.5ms) UPDATE "items" SET position = position + 1, updated_at = '2014-07-21 16:06:32.222431'
178
- SQL (0.2ms) INSERT INTO "items" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.222184"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.222184"]]
179
-  (0.9ms) commit transaction
180
-  (0.1ms) begin transaction
181
- SQL (0.5ms) UPDATE "items" SET position = position + 1, updated_at = '2014-07-21 16:06:32.231874'
182
- SQL (0.2ms) INSERT INTO "items" ("created_at", "position", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-07-21 16:06:32.231487"], ["position", 0], ["updated_at", "2014-07-21 16:06:32.231487"]]
183
-  (0.9ms) commit transaction
184
-
185
-
186
- Started GET "/" for 127.0.0.1 at 2014-07-21 22:06:40 +0600
187
- Processing by ThingsController#index as HTML
188
- Thing Load (0.3ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
189
- Rendered things/_thing.html.erb (1.6ms)
190
- Rendered things/index.html.erb within layouts/application (7.6ms)
191
- Completed 200 OK in 14ms (Views: 13.5ms | ActiveRecord: 0.6ms)
192
-
193
-
194
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:40 +0600
195
-
196
-
197
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:40 +0600
198
-
199
-
200
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:40 +0600
201
-
202
-
203
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:41 +0600
204
-
205
-
206
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:41 +0600
207
-
208
-
209
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:41 +0600
210
-
211
-
212
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:41 +0600
213
-
214
-
215
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:06:41 +0600
216
-
217
-
218
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:06:41 +0600
219
-
220
-
221
- Started GET "/" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
222
- Processing by ThingsController#index as HTML
223
- Thing Load (0.4ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
224
- Rendered things/_thing.html.erb (0.9ms)
225
- Rendered things/index.html.erb within layouts/application (7.1ms)
226
- Completed 200 OK in 17ms (Views: 13.4ms | ActiveRecord: 0.7ms)
227
-
228
-
229
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
230
-
231
-
232
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
233
-
234
-
235
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
236
-
237
-
238
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
239
-
240
-
241
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
242
-
243
-
244
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
245
-
246
-
247
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
248
-
249
-
250
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
251
-
252
-
253
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:09:04 +0600
254
-
255
-
256
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:09:06 +0600
257
-
258
- ActionController::RoutingError (uninitialized constant ParentsController):
259
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:238:in `const_get'
260
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:238:in `block in constantize'
261
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `each'
262
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `inject'
263
- activesupport (4.1.1) lib/active_support/inflector/methods.rb:236:in `constantize'
264
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:76:in `controller_reference'
265
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:66:in `controller'
266
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:44:in `call'
267
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
268
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
269
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
270
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
271
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
272
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
273
- rack (1.5.2) lib/rack/head.rb:11:in `call'
274
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
275
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
276
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
277
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
278
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
279
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
280
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
281
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
282
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
283
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
284
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
285
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
286
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
287
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
288
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
289
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
290
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
291
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
292
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
293
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
294
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
295
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
296
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
297
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
298
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
299
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
300
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
301
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
302
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
303
- railties (4.1.1) lib/rails/application.rb:144:in `call'
304
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
305
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
306
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
307
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
308
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
309
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
310
-
311
-
312
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
313
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
314
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.6ms)
315
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (35.4ms)
316
-
317
-
318
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:18:14 +0600
319
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
320
-
321
- ActiveRecord::PendingMigrationError (
322
-
323
- Migrations are pending. To resolve this issue, run:
324
-
325
- bin/rake db:migrate RAILS_ENV=development
326
-
327
- ):
328
- activerecord (4.1.1) lib/active_record/migration.rb:389:in `check_pending!'
329
- activerecord (4.1.1) lib/active_record/migration.rb:377:in `call'
330
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
331
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
332
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
333
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
334
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
335
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
336
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
337
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
338
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
339
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
340
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
341
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
342
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
343
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
344
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
345
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
346
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
347
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
348
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
349
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
350
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
351
- railties (4.1.1) lib/rails/application.rb:144:in `call'
352
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
353
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
354
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
355
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
356
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
357
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
358
-
359
-
360
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
361
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
362
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
363
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
364
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
365
- Migrating to CreateParents (20140721161028)
366
-  (0.1ms) begin transaction
367
-  (0.6ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
368
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140721161028"]]
369
-  (0.9ms) commit transaction
370
- Migrating to CreateChildren (20140721161122)
371
-  (0.1ms) begin transaction
372
-  (0.4ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
373
-  (0.1ms) select sqlite_version(*)
374
-  (0.1ms) CREATE INDEX "index_children_on_position" ON "children" ("position")
375
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140721161122"]]
376
-  (0.8ms) commit transaction
377
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
378
-  (0.1ms)  SELECT sql
379
- FROM sqlite_master
380
- WHERE name='index_children_on_position' AND type='index'
381
- UNION ALL
382
- SELECT sql
383
- FROM sqlite_temp_master
384
- WHERE name='index_children_on_position' AND type='index'
385
- 
386
-  (0.1ms) SELECT sql
387
- FROM sqlite_master
388
- WHERE name='index_items_on_position' AND type='index'
389
- UNION ALL
390
- SELECT sql
391
- FROM sqlite_temp_master
392
- WHERE name='index_items_on_position' AND type='index'
393
-
394
-  (0.1ms)  SELECT sql
395
- FROM sqlite_master
396
- WHERE name='index_other_things_on_place' AND type='index'
397
- UNION ALL
398
- SELECT sql
399
- FROM sqlite_temp_master
400
- WHERE name='index_other_things_on_place' AND type='index'
401
- 
402
-  (0.1ms) SELECT sql
403
- FROM sqlite_master
404
- WHERE name='index_things_on_position' AND type='index'
405
- UNION ALL
406
- SELECT sql
407
- FROM sqlite_temp_master
408
- WHERE name='index_things_on_position' AND type='index'
409
-
410
-
411
-
412
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:18:25 +0600
413
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
414
- Processing by ParentsController#new as HTML
415
- Completed 500 Internal Server Error in 60ms
416
-
417
- ActionView::MissingTemplate (Missing template parents/new, application/new with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
418
- * "/Users/aishek/projects/activerecord-sortable/spec/dummy/app/views"
419
- ):
420
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
421
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
422
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
423
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
424
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
425
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
426
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
427
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
428
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
429
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
430
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
431
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
432
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
433
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
434
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
435
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
436
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
437
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
438
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
439
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
440
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
441
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
442
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
443
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
444
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
445
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
446
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
447
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
448
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
449
- activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
450
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
451
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
452
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
453
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
454
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
455
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
456
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
457
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
458
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
459
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
460
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
461
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
462
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
463
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
464
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
465
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
466
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
467
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
468
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
469
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
470
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
471
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
472
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
473
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
474
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
475
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
476
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
477
- rack (1.5.2) lib/rack/head.rb:11:in `call'
478
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
479
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
480
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
481
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
482
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
483
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
484
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
485
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
486
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
487
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
488
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
489
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
490
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
491
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
492
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
493
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
494
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
495
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
496
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
497
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
498
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
499
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
500
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
501
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
502
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
503
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
504
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
505
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
506
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
507
- railties (4.1.1) lib/rails/application.rb:144:in `call'
508
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
509
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
510
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
511
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
512
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
513
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
514
-
515
-
516
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.6ms)
517
-
518
-
519
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
520
- Processing by ParentsController#new as HTML
521
- Rendered parents/new.html.erb within layouts/application (0.5ms)
522
- Completed 200 OK in 13ms (Views: 11.1ms | ActiveRecord: 0.0ms)
523
-
524
-
525
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
526
-
527
-
528
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
529
-
530
-
531
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
532
-
533
-
534
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
535
-
536
-
537
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
538
-
539
-
540
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
541
-
542
-
543
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
544
-
545
-
546
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
547
-
548
-
549
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:18:47 +0600
550
-
551
-
552
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:19:32 +0600
553
- Processing by ParentsController#new as HTML
554
- Rendered parents/new.html.erb within layouts/application (2.2ms)
555
- Completed 500 Internal Server Error in 5ms
556
-
557
- ActionView::Template::Error (Missing partial parents/_form, application/_form with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
558
- * "/Users/aishek/projects/activerecord-sortable/spec/dummy/app/views"
559
- ):
560
- 1: <h1>New parent</h1>
561
- 2:
562
- 3: <%= render :partial => 'form' %>
563
- app/views/parents/new.html.erb:3:in `_app_views_parents_new_html_erb__1956501754930493783_70206162322480'
564
-
565
-
566
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
567
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.5ms)
568
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (17.5ms)
569
-
570
-
571
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
572
- Processing by ParentsController#new as HTML
573
- Rendered parents/_form.html.erb (4.7ms)
574
- Rendered parents/new.html.erb within layouts/application (5.7ms)
575
- Completed 200 OK in 13ms (Views: 11.4ms | ActiveRecord: 0.0ms)
576
-
577
-
578
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
579
-
580
-
581
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
582
-
583
-
584
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
585
-
586
-
587
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
588
-
589
-
590
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
591
-
592
-
593
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
594
-
595
-
596
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
597
-
598
-
599
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
600
-
601
-
602
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:00 +0600
603
-
604
-
605
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
606
- Processing by ParentsController#new as HTML
607
- Rendered parents/_form.html.erb (17.8ms)
608
- Rendered parents/new.html.erb within layouts/application (18.6ms)
609
- Completed 200 OK in 26ms (Views: 24.1ms | ActiveRecord: 0.0ms)
610
-
611
-
612
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
613
-
614
-
615
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
616
-
617
-
618
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
619
-
620
-
621
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
622
-
623
-
624
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
625
-
626
-
627
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
628
-
629
-
630
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
631
-
632
-
633
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
634
-
635
-
636
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:20:38 +0600
637
-
638
-
639
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
640
- Processing by ParentsController#new as HTML
641
- Rendered parents/_form.html.erb (6.5ms)
642
- Rendered parents/new.html.erb within layouts/application (7.6ms)
643
- Completed 200 OK in 31ms (Views: 13.8ms | ActiveRecord: 1.1ms)
644
-
645
-
646
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
647
-
648
-
649
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
650
-
651
-
652
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
653
-
654
-
655
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
656
-
657
-
658
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
659
-
660
-
661
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
662
-
663
-
664
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
665
-
666
-
667
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
668
-
669
-
670
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:22:34 +0600
671
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
672
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
673
- Migrating to CreateChildren (20140721161122)
674
-  (0.1ms) begin transaction
675
- SQL (0.5ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140721161122'
676
-  (0.8ms) commit transaction
677
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
678
-  (0.2ms)  SELECT sql
679
- FROM sqlite_master
680
- WHERE name='index_children_on_position' AND type='index'
681
- UNION ALL
682
- SELECT sql
683
- FROM sqlite_temp_master
684
- WHERE name='index_children_on_position' AND type='index'
685
- 
686
-  (0.2ms) SELECT sql
687
- FROM sqlite_master
688
- WHERE name='index_items_on_position' AND type='index'
689
- UNION ALL
690
- SELECT sql
691
- FROM sqlite_temp_master
692
- WHERE name='index_items_on_position' AND type='index'
693
-
694
-  (0.1ms)  SELECT sql
695
- FROM sqlite_master
696
- WHERE name='index_other_things_on_place' AND type='index'
697
- UNION ALL
698
- SELECT sql
699
- FROM sqlite_temp_master
700
- WHERE name='index_other_things_on_place' AND type='index'
701
- 
702
-  (0.1ms) SELECT sql
703
- FROM sqlite_master
704
- WHERE name='index_things_on_position' AND type='index'
705
- UNION ALL
706
- SELECT sql
707
- FROM sqlite_temp_master
708
- WHERE name='index_things_on_position' AND type='index'
709
-
710
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
711
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
712
- Migrating to CreateParents (20140721161028)
713
-  (0.1ms) begin transaction
714
-  (0.7ms) DROP TABLE "parents"
715
- SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140721161028'
716
-  (0.9ms) commit transaction
717
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
718
-  (0.2ms) SELECT sql
719
- FROM sqlite_master
720
- WHERE name='index_children_on_position' AND type='index'
721
- UNION ALL
722
- SELECT sql
723
- FROM sqlite_temp_master
724
- WHERE name='index_children_on_position' AND type='index'
725
-
726
-  (0.2ms)  SELECT sql
727
- FROM sqlite_master
728
- WHERE name='index_items_on_position' AND type='index'
729
- UNION ALL
730
- SELECT sql
731
- FROM sqlite_temp_master
732
- WHERE name='index_items_on_position' AND type='index'
733
- 
734
-  (0.1ms) SELECT sql
735
- FROM sqlite_master
736
- WHERE name='index_other_things_on_place' AND type='index'
737
- UNION ALL
738
- SELECT sql
739
- FROM sqlite_temp_master
740
- WHERE name='index_other_things_on_place' AND type='index'
741
-
742
-  (0.1ms)  SELECT sql
743
- FROM sqlite_master
744
- WHERE name='index_things_on_position' AND type='index'
745
- UNION ALL
746
- SELECT sql
747
- FROM sqlite_temp_master
748
- WHERE name='index_things_on_position' AND type='index'
749
- 
750
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
751
- Migrating to CreateParents (20140721161028)
752
-  (0.1ms) begin transaction
753
-  (0.6ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime) 
754
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140721161028"]]
755
-  (0.9ms) commit transaction
756
- Migrating to CreateChildren (20140721161122)
757
-  (0.1ms) begin transaction
758
-  (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
759
- SQLite3::SQLException: table "children" already exists: CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
760
-  (0.0ms) rollback transaction
761
-
762
-
763
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:24:40 +0600
764
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
765
-
766
- ActiveRecord::PendingMigrationError (
767
-
768
- Migrations are pending. To resolve this issue, run:
769
-
770
- bin/rake db:migrate RAILS_ENV=development
771
-
772
- ):
773
- activerecord (4.1.1) lib/active_record/migration.rb:389:in `check_pending!'
774
- activerecord (4.1.1) lib/active_record/migration.rb:377:in `call'
775
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
776
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
777
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
778
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
779
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
780
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
781
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
782
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
783
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
784
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
785
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
786
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
787
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
788
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
789
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
790
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
791
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
792
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
793
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
794
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
795
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
796
- railties (4.1.1) lib/rails/application.rb:144:in `call'
797
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
798
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
799
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
800
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
801
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
802
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
803
-
804
-
805
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
806
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
807
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
808
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (16.0ms)
809
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
810
- Migrating to CreateChildren (20140721161122)
811
-  (0.1ms) begin transaction
812
-  (0.2ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
813
- SQLite3::SQLException: table "children" already exists: CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
814
-  (0.1ms) rollback transaction
815
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
816
- Migrating to CreateChildren (20140721161122)
817
-  (0.1ms) begin transaction
818
-  (0.6ms) DROP TABLE "children"
819
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140721161122"]]
820
-  (0.9ms) commit transaction
821
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
822
-  (0.1ms)  SELECT sql
823
- FROM sqlite_master
824
- WHERE name='index_items_on_position' AND type='index'
825
- UNION ALL
826
- SELECT sql
827
- FROM sqlite_temp_master
828
- WHERE name='index_items_on_position' AND type='index'
829
- 
830
-  (0.2ms) SELECT sql
831
- FROM sqlite_master
832
- WHERE name='index_other_things_on_place' AND type='index'
833
- UNION ALL
834
- SELECT sql
835
- FROM sqlite_temp_master
836
- WHERE name='index_other_things_on_place' AND type='index'
837
-
838
-  (0.1ms)  SELECT sql
839
- FROM sqlite_master
840
- WHERE name='index_things_on_position' AND type='index'
841
- UNION ALL
842
- SELECT sql
843
- FROM sqlite_temp_master
844
- WHERE name='index_things_on_position' AND type='index'
845
- 
846
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
847
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
848
- Migrating to CreateChildren (20140721161122)
849
-  (0.1ms) begin transaction
850
- SQL (0.6ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20140721161122'
851
-  (0.8ms) commit transaction
852
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
853
-  (0.2ms)  SELECT sql
854
- FROM sqlite_master
855
- WHERE name='index_items_on_position' AND type='index'
856
- UNION ALL
857
- SELECT sql
858
- FROM sqlite_temp_master
859
- WHERE name='index_items_on_position' AND type='index'
860
- 
861
-  (0.2ms) SELECT sql
862
- FROM sqlite_master
863
- WHERE name='index_other_things_on_place' AND type='index'
864
- UNION ALL
865
- SELECT sql
866
- FROM sqlite_temp_master
867
- WHERE name='index_other_things_on_place' AND type='index'
868
-
869
-  (0.1ms)  SELECT sql
870
- FROM sqlite_master
871
- WHERE name='index_things_on_position' AND type='index'
872
- UNION ALL
873
- SELECT sql
874
- FROM sqlite_temp_master
875
- WHERE name='index_things_on_position' AND type='index'
876
- 
877
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
878
- Migrating to CreateChildren (20140721161122)
879
-  (0.1ms) begin transaction
880
-  (0.7ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
881
-  (0.1ms) select sqlite_version(*)
882
-  (0.2ms) CREATE INDEX "index_children_on_position" ON "children" ("position")
883
- SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140721161122"]]
884
-  (0.9ms) commit transaction
885
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
886
-  (0.2ms)  SELECT sql
887
- FROM sqlite_master
888
- WHERE name='index_children_on_position' AND type='index'
889
- UNION ALL
890
- SELECT sql
891
- FROM sqlite_temp_master
892
- WHERE name='index_children_on_position' AND type='index'
893
- 
894
-  (0.1ms) SELECT sql
895
- FROM sqlite_master
896
- WHERE name='index_items_on_position' AND type='index'
897
- UNION ALL
898
- SELECT sql
899
- FROM sqlite_temp_master
900
- WHERE name='index_items_on_position' AND type='index'
901
-
902
-  (0.1ms)  SELECT sql
903
- FROM sqlite_master
904
- WHERE name='index_other_things_on_place' AND type='index'
905
- UNION ALL
906
- SELECT sql
907
- FROM sqlite_temp_master
908
- WHERE name='index_other_things_on_place' AND type='index'
909
- 
910
-  (0.1ms) SELECT sql
911
- FROM sqlite_master
912
- WHERE name='index_things_on_position' AND type='index'
913
- UNION ALL
914
- SELECT sql
915
- FROM sqlite_temp_master
916
- WHERE name='index_things_on_position' AND type='index'
917
-
918
-
919
-
920
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
921
- ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
922
- Processing by ParentsController#new as HTML
923
- Rendered parents/_form.html.erb (6.0ms)
924
- Rendered parents/new.html.erb within layouts/application (6.8ms)
925
- Completed 200 OK in 28ms (Views: 12.5ms | ActiveRecord: 0.8ms)
926
-
927
-
928
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
929
-
930
-
931
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
932
-
933
-
934
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
935
-
936
-
937
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
938
-
939
-
940
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
941
-
942
-
943
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
944
-
945
-
946
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
947
-
948
-
949
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
950
-
951
-
952
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:26:05 +0600
953
-
954
-
955
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
956
- Processing by ParentsController#new as HTML
957
- Rendered parents/_form.html.erb (3.4ms)
958
- Rendered parents/new.html.erb within layouts/application (8.9ms)
959
- Completed 200 OK in 19ms (Views: 16.3ms | ActiveRecord: 0.0ms)
960
-
961
-
962
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
963
-
964
-
965
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
966
-
967
-
968
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
969
-
970
-
971
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
972
-
973
-
974
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
975
-
976
-
977
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
978
-
979
-
980
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
981
-
982
-
983
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
984
-
985
-
986
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:27:51 +0600
987
-
988
-
989
- Started POST "/parents/new" for 127.0.0.1 at 2014-07-21 22:27:58 +0600
990
-
991
- ActionController::RoutingError (No route matches [POST] "/parents/new"):
992
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
993
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
994
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
995
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
996
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
997
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
998
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
999
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
1000
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1001
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1002
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1003
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1004
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1005
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1006
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1007
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
1008
- railties (4.1.1) lib/rails/application.rb:144:in `call'
1009
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1010
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1011
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1012
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1013
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1014
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1015
-
1016
-
1017
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (0.8ms)
1018
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (5.6ms)
1019
-
1020
-
1021
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1022
- Processing by ParentsController#new as HTML
1023
- Rendered parents/_form.html.erb (3.6ms)
1024
- Rendered parents/new.html.erb within layouts/application (4.6ms)
1025
- Completed 200 OK in 131ms (Views: 129.0ms | ActiveRecord: 0.0ms)
1026
-
1027
-
1028
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1029
-
1030
-
1031
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1032
-
1033
-
1034
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1035
-
1036
-
1037
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1038
-
1039
-
1040
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1041
-
1042
-
1043
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1044
-
1045
-
1046
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1047
-
1048
-
1049
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1050
-
1051
-
1052
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:29:57 +0600
1053
-
1054
-
1055
- Started POST "/parents/new" for 127.0.0.1 at 2014-07-21 22:30:04 +0600
1056
-
1057
- ActionController::RoutingError (No route matches [POST] "/parents/new"):
1058
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1059
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1060
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
1061
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
1062
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1063
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
1064
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
1065
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
1066
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1067
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1068
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1069
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1070
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1071
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
1072
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1073
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
1074
- railties (4.1.1) lib/rails/application.rb:144:in `call'
1075
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
1076
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1077
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1078
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1079
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1080
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1081
-
1082
-
1083
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.text.erb (1.0ms)
1084
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.text.erb (6.6ms)
1085
-
1086
-
1087
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:30:46 +0600
1088
- Processing by ParentsController#new as HTML
1089
- Rendered parents/_form.html.erb (7.2ms)
1090
- Rendered parents/new.html.erb within layouts/application (8.6ms)
1091
- Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.0ms)
1092
-
1093
-
1094
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1095
-
1096
-
1097
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1098
-
1099
-
1100
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1101
-
1102
-
1103
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1104
-
1105
-
1106
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1107
-
1108
-
1109
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1110
-
1111
-
1112
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1113
-
1114
-
1115
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1116
-
1117
-
1118
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:30:47 +0600
1119
-
1120
-
1121
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:30:48 +0600
1122
- Processing by ParentsController#new as HTML
1123
- Rendered parents/_form.html.erb (5.2ms)
1124
- Rendered parents/new.html.erb within layouts/application (6.6ms)
1125
- Completed 200 OK in 15ms (Views: 13.1ms | ActiveRecord: 0.0ms)
1126
-
1127
-
1128
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:48 +0600
1129
-
1130
-
1131
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:48 +0600
1132
-
1133
-
1134
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:48 +0600
1135
-
1136
-
1137
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:48 +0600
1138
-
1139
-
1140
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:49 +0600
1141
-
1142
-
1143
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:49 +0600
1144
-
1145
-
1146
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:49 +0600
1147
-
1148
-
1149
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:30:49 +0600
1150
-
1151
-
1152
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:49 +0600
1153
-
1154
-
1155
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1156
- Processing by ParentsController#new as HTML
1157
- Rendered parents/_form.html.erb (7.6ms)
1158
- Rendered parents/new.html.erb within layouts/application (9.5ms)
1159
- Completed 200 OK in 18ms (Views: 16.1ms | ActiveRecord: 0.0ms)
1160
-
1161
-
1162
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1163
-
1164
-
1165
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1166
-
1167
-
1168
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1169
-
1170
-
1171
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1172
-
1173
-
1174
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1175
-
1176
-
1177
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1178
-
1179
-
1180
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1181
-
1182
-
1183
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1184
-
1185
-
1186
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:30:54 +0600
1187
-
1188
-
1189
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1190
- Processing by ParentsController#new as HTML
1191
- Rendered parents/_form.html.erb (6.7ms)
1192
- Rendered parents/new.html.erb within layouts/application (7.4ms)
1193
- Completed 200 OK in 28ms (Views: 13.2ms | ActiveRecord: 1.0ms)
1194
-
1195
-
1196
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1197
-
1198
-
1199
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1200
-
1201
-
1202
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1203
-
1204
-
1205
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1206
-
1207
-
1208
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1209
-
1210
-
1211
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1212
-
1213
-
1214
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1215
-
1216
-
1217
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1218
-
1219
-
1220
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1221
-
1222
-
1223
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1224
-
1225
-
1226
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:32:59 +0600
1227
-
1228
-
1229
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1230
- Processing by ParentsController#new as HTML
1231
- Rendered parents/_form.html.erb (6.8ms)
1232
- Rendered parents/new.html.erb within layouts/application (7.6ms)
1233
- Completed 200 OK in 27ms (Views: 13.2ms | ActiveRecord: 0.9ms)
1234
-
1235
-
1236
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1237
-
1238
-
1239
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1240
-
1241
-
1242
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1243
-
1244
-
1245
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1246
-
1247
-
1248
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1249
-
1250
-
1251
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1252
-
1253
-
1254
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1255
-
1256
-
1257
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1258
-
1259
-
1260
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:38:09 +0600
1261
-
1262
-
1263
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:46:05 +0600
1264
- Processing by ParentsController#new as HTML
1265
- Rendered parents/_form.html.erb (3.5ms)
1266
- Rendered parents/new.html.erb within layouts/application (4.2ms)
1267
- Completed 200 OK in 129ms (Views: 126.6ms | ActiveRecord: 0.0ms)
1268
-
1269
-
1270
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1271
-
1272
-
1273
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1274
-
1275
-
1276
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1277
-
1278
-
1279
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1280
-
1281
-
1282
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1283
-
1284
-
1285
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1286
-
1287
-
1288
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1289
-
1290
-
1291
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1292
-
1293
-
1294
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:46:06 +0600
1295
-
1296
-
1297
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1298
- Processing by ParentsController#new as HTML
1299
- Rendered parents/_form.html.erb (23.1ms)
1300
- Rendered parents/new.html.erb within layouts/application (24.3ms)
1301
- Completed 200 OK in 32ms (Views: 30.1ms | ActiveRecord: 0.0ms)
1302
-
1303
-
1304
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1305
-
1306
-
1307
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1308
-
1309
-
1310
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1311
-
1312
-
1313
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1314
-
1315
-
1316
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1317
-
1318
-
1319
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1320
-
1321
-
1322
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1323
-
1324
-
1325
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1326
-
1327
-
1328
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:19 +0600
1329
-
1330
-
1331
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1332
- Processing by ParentsController#new as HTML
1333
- Rendered parents/_form.html.erb (3.4ms)
1334
- Rendered parents/new.html.erb within layouts/application (4.1ms)
1335
- Completed 200 OK in 116ms (Views: 113.6ms | ActiveRecord: 0.0ms)
1336
-
1337
-
1338
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1339
-
1340
-
1341
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1342
-
1343
-
1344
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1345
-
1346
-
1347
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1348
-
1349
-
1350
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1351
-
1352
-
1353
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1354
-
1355
-
1356
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1357
-
1358
-
1359
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1360
-
1361
-
1362
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:46:44 +0600
1363
-
1364
-
1365
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1366
- Processing by ParentsController#new as HTML
1367
- Rendered parents/_form.html.erb (3.6ms)
1368
- Rendered parents/new.html.erb within layouts/application (4.4ms)
1369
- Completed 200 OK in 117ms (Views: 115.2ms | ActiveRecord: 0.0ms)
1370
-
1371
-
1372
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1373
-
1374
-
1375
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1376
-
1377
-
1378
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1379
-
1380
-
1381
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1382
-
1383
-
1384
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1385
-
1386
-
1387
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1388
-
1389
-
1390
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1391
-
1392
-
1393
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1394
-
1395
-
1396
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:48:14 +0600
1397
-
1398
-
1399
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1400
- Processing by ParentsController#new as HTML
1401
- Rendered parents/_form.html.erb (5.1ms)
1402
- Rendered parents/new.html.erb within layouts/application (6.3ms)
1403
- Completed 200 OK in 185ms (Views: 181.2ms | ActiveRecord: 0.0ms)
1404
-
1405
-
1406
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1407
-
1408
-
1409
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1410
-
1411
-
1412
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1413
-
1414
-
1415
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1416
-
1417
-
1418
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1419
-
1420
-
1421
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1422
-
1423
-
1424
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1425
-
1426
-
1427
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1428
-
1429
-
1430
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:48:27 +0600
1431
-
1432
-
1433
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:48:43 +0600
1434
- Processing by ParentsController#new as HTML
1435
- Rendered parents/_form.html.erb (11.7ms)
1436
- Rendered parents/new.html.erb within layouts/application (13.3ms)
1437
- Completed 200 OK in 200ms (Views: 194.5ms | ActiveRecord: 0.0ms)
1438
-
1439
-
1440
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1441
-
1442
-
1443
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1444
-
1445
-
1446
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1447
-
1448
-
1449
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1450
-
1451
-
1452
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1453
-
1454
-
1455
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1456
-
1457
-
1458
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1459
-
1460
-
1461
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1462
-
1463
-
1464
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:44 +0600
1465
-
1466
-
1467
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1468
- Processing by ParentsController#new as HTML
1469
- Rendered parents/_form.html.erb (3.0ms)
1470
- Rendered parents/new.html.erb within layouts/application (3.7ms)
1471
- Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.0ms)
1472
-
1473
-
1474
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1475
-
1476
-
1477
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1478
-
1479
-
1480
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1481
-
1482
-
1483
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1484
-
1485
-
1486
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1487
-
1488
-
1489
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1490
-
1491
-
1492
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1493
-
1494
-
1495
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1496
-
1497
-
1498
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:48:55 +0600
1499
-
1500
-
1501
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1502
- Processing by ParentsController#new as HTML
1503
- Rendered parents/_form.html.erb (4.5ms)
1504
- Rendered parents/new.html.erb within layouts/application (5.2ms)
1505
- Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.0ms)
1506
-
1507
-
1508
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1509
-
1510
-
1511
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1512
-
1513
-
1514
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1515
-
1516
-
1517
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1518
-
1519
-
1520
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1521
-
1522
-
1523
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1524
-
1525
-
1526
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1527
-
1528
-
1529
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1530
-
1531
-
1532
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:08 +0600
1533
-
1534
-
1535
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:50:58 +0600
1536
- Processing by ParentsController#new as HTML
1537
- Rendered parents/_form.html.erb (4.5ms)
1538
- Rendered parents/new.html.erb within layouts/application (5.2ms)
1539
- Completed 200 OK in 115ms (Views: 113.3ms | ActiveRecord: 0.0ms)
1540
-
1541
-
1542
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:58 +0600
1543
-
1544
-
1545
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:58 +0600
1546
-
1547
-
1548
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:58 +0600
1549
-
1550
-
1551
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:59 +0600
1552
-
1553
-
1554
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:59 +0600
1555
-
1556
-
1557
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:59 +0600
1558
-
1559
-
1560
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:50:59 +0600
1561
-
1562
-
1563
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:59 +0600
1564
-
1565
-
1566
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:50:59 +0600
1567
-
1568
-
1569
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1570
- Processing by ParentsController#new as HTML
1571
- Rendered parents/_form.html.erb (3.6ms)
1572
- Rendered parents/new.html.erb within layouts/application (4.3ms)
1573
- Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1574
-
1575
-
1576
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1577
-
1578
-
1579
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1580
-
1581
-
1582
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1583
-
1584
-
1585
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1586
-
1587
-
1588
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1589
-
1590
-
1591
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1592
-
1593
-
1594
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1595
-
1596
-
1597
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1598
-
1599
-
1600
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:05 +0600
1601
-
1602
-
1603
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1604
- Processing by ParentsController#new as HTML
1605
- Rendered parents/_form.html.erb (8.4ms)
1606
- Rendered parents/new.html.erb within layouts/application (9.7ms)
1607
- Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 0.0ms)
1608
-
1609
-
1610
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1611
-
1612
-
1613
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1614
-
1615
-
1616
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1617
-
1618
-
1619
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1620
-
1621
-
1622
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1623
-
1624
-
1625
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1626
-
1627
-
1628
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1629
-
1630
-
1631
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1632
-
1633
-
1634
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:51:14 +0600
1635
-
1636
-
1637
- Started GET "/" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1638
- Processing by ThingsController#index as HTML
1639
- Thing Load (0.4ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
1640
- Rendered things/_thing.html.erb (1.7ms)
1641
- Rendered things/index.html.erb within layouts/application (13.4ms)
1642
- Completed 200 OK in 28ms (Views: 24.5ms | ActiveRecord: 0.7ms)
1643
-
1644
-
1645
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1646
-
1647
-
1648
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1649
-
1650
-
1651
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1652
-
1653
-
1654
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1655
-
1656
-
1657
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1658
-
1659
-
1660
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1661
-
1662
-
1663
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1664
-
1665
-
1666
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1667
-
1668
-
1669
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:24 +0600
1670
-
1671
-
1672
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1673
- Processing by ParentsController#new as HTML
1674
- Rendered parents/_form.html.erb (4.3ms)
1675
- Rendered parents/new.html.erb within layouts/application (5.0ms)
1676
- Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.0ms)
1677
-
1678
-
1679
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1680
-
1681
-
1682
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1683
-
1684
-
1685
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1686
-
1687
-
1688
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1689
-
1690
-
1691
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1692
-
1693
-
1694
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1695
-
1696
-
1697
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1698
-
1699
-
1700
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1701
-
1702
-
1703
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:51:36 +0600
1704
-
1705
-
1706
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1707
- Processing by ParentsController#new as HTML
1708
- Rendered parents/_form.html.erb (4.5ms)
1709
- Rendered parents/new.html.erb within layouts/application (5.4ms)
1710
- Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.0ms)
1711
-
1712
-
1713
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1714
-
1715
-
1716
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1717
-
1718
-
1719
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1720
-
1721
-
1722
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1723
-
1724
-
1725
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1726
-
1727
-
1728
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1729
-
1730
-
1731
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1732
-
1733
-
1734
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1735
-
1736
-
1737
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:51:44 +0600
1738
-
1739
-
1740
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1741
- Processing by ParentsController#new as HTML
1742
- Rendered parents/_form.html.erb (5.2ms)
1743
- Rendered parents/new.html.erb within layouts/application (6.5ms)
1744
- Completed 200 OK in 202ms (Views: 200.2ms | ActiveRecord: 0.0ms)
1745
-
1746
-
1747
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1748
-
1749
-
1750
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1751
-
1752
-
1753
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1754
-
1755
-
1756
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1757
-
1758
-
1759
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1760
-
1761
-
1762
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1763
-
1764
-
1765
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1766
-
1767
-
1768
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1769
-
1770
-
1771
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:52:21 +0600
1772
-
1773
-
1774
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1775
- ActiveRecord::SchemaMigration Load (1.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
1776
- Processing by ParentsController#new as HTML
1777
- Rendered parents/_form.html.erb (50.7ms)
1778
- Rendered parents/new.html.erb within layouts/application (57.3ms)
1779
- Completed 200 OK in 188ms (Views: 145.0ms | ActiveRecord: 0.7ms)
1780
-
1781
-
1782
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1783
-
1784
-
1785
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1786
-
1787
-
1788
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1789
-
1790
-
1791
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1792
-
1793
-
1794
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1795
-
1796
-
1797
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1798
-
1799
-
1800
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1801
-
1802
-
1803
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1804
-
1805
-
1806
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:52:37 +0600
1807
-
1808
-
1809
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1810
- Processing by ParentsController#new as HTML
1811
- Rendered parents/_form.html.erb (4.1ms)
1812
- Rendered parents/new.html.erb within layouts/application (4.9ms)
1813
- Completed 200 OK in 137ms (Views: 135.0ms | ActiveRecord: 0.0ms)
1814
-
1815
-
1816
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1817
-
1818
-
1819
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1820
-
1821
-
1822
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1823
-
1824
-
1825
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1826
-
1827
-
1828
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1829
-
1830
-
1831
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1832
-
1833
-
1834
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1835
-
1836
-
1837
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1838
-
1839
-
1840
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:16 +0600
1841
-
1842
-
1843
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1844
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1845
- Processing by ParentsController#new as HTML
1846
- Rendered parents/_form.html.erb (41.6ms)
1847
- Rendered parents/new.html.erb within layouts/application (46.3ms)
1848
- Completed 200 OK in 155ms (Views: 122.6ms | ActiveRecord: 0.7ms)
1849
-
1850
-
1851
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1852
-
1853
-
1854
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1855
-
1856
-
1857
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1858
-
1859
-
1860
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1861
-
1862
-
1863
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1864
-
1865
-
1866
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1867
-
1868
-
1869
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1870
-
1871
-
1872
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1873
-
1874
-
1875
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:53:34 +0600
1876
-
1877
-
1878
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1879
- Processing by ParentsController#new as HTML
1880
- Rendered parents/_form.html.erb (5.0ms)
1881
- Rendered parents/new.html.erb within layouts/application (5.9ms)
1882
- Completed 200 OK in 127ms (Views: 125.4ms | ActiveRecord: 0.0ms)
1883
-
1884
-
1885
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1886
-
1887
-
1888
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1889
-
1890
-
1891
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1892
-
1893
-
1894
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1895
-
1896
-
1897
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1898
-
1899
-
1900
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1901
-
1902
-
1903
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1904
-
1905
-
1906
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1907
-
1908
-
1909
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:54:21 +0600
1910
-
1911
-
1912
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:54:50 +0600
1913
- Processing by ParentsController#new as HTML
1914
- Rendered parents/_form.html.erb (12.4ms)
1915
- Rendered parents/new.html.erb within layouts/application (13.5ms)
1916
- Completed 200 OK in 173ms (Views: 171.2ms | ActiveRecord: 0.0ms)
1917
-
1918
-
1919
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1920
-
1921
-
1922
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1923
-
1924
-
1925
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1926
-
1927
-
1928
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1929
-
1930
-
1931
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1932
-
1933
-
1934
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1935
-
1936
-
1937
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1938
-
1939
-
1940
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1941
-
1942
-
1943
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:54:51 +0600
1944
-
1945
-
1946
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1947
- Processing by ParentsController#new as HTML
1948
- Rendered parents/_form.html.erb (3.8ms)
1949
- Rendered parents/new.html.erb within layouts/application (4.5ms)
1950
- Completed 200 OK in 129ms (Views: 127.6ms | ActiveRecord: 0.0ms)
1951
-
1952
-
1953
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1954
-
1955
-
1956
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1957
-
1958
-
1959
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1960
-
1961
-
1962
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1963
-
1964
-
1965
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1966
-
1967
-
1968
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1969
-
1970
-
1971
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1972
-
1973
-
1974
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1975
-
1976
-
1977
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:55:28 +0600
1978
-
1979
-
1980
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
1981
- Processing by ParentsController#new as HTML
1982
- Rendered parents/_form.html.erb (3.8ms)
1983
- Rendered parents/new.html.erb within layouts/application (4.7ms)
1984
- Completed 200 OK in 124ms (Views: 122.4ms | ActiveRecord: 0.0ms)
1985
-
1986
-
1987
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
1988
-
1989
-
1990
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
1991
-
1992
-
1993
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
1994
-
1995
-
1996
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
1997
-
1998
-
1999
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
2000
-
2001
-
2002
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
2003
-
2004
-
2005
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
2006
-
2007
-
2008
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
2009
-
2010
-
2011
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:56:16 +0600
2012
-
2013
-
2014
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2015
- Processing by ParentsController#new as HTML
2016
- Rendered parents/_form.html.erb (5.8ms)
2017
- Rendered parents/new.html.erb within layouts/application (6.6ms)
2018
- Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.0ms)
2019
-
2020
-
2021
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2022
-
2023
-
2024
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2025
-
2026
-
2027
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2028
-
2029
-
2030
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2031
-
2032
-
2033
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2034
-
2035
-
2036
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2037
-
2038
-
2039
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2040
-
2041
-
2042
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2043
-
2044
-
2045
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:57:15 +0600
2046
-
2047
-
2048
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:57:58 +0600
2049
- Processing by ParentsController#new as HTML
2050
- Rendered parents/_form.html.erb (5.9ms)
2051
- Rendered parents/new.html.erb within layouts/application (6.9ms)
2052
- Completed 200 OK in 122ms (Views: 120.8ms | ActiveRecord: 0.0ms)
2053
-
2054
-
2055
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:58 +0600
2056
-
2057
-
2058
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2059
-
2060
-
2061
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2062
-
2063
-
2064
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2065
-
2066
-
2067
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2068
-
2069
-
2070
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2071
-
2072
-
2073
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2074
-
2075
-
2076
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2077
-
2078
-
2079
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:57:59 +0600
2080
-
2081
-
2082
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2083
- Processing by ParentsController#new as HTML
2084
- Rendered parents/_form.html.erb (4.5ms)
2085
- Rendered parents/new.html.erb within layouts/application (5.3ms)
2086
- Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.0ms)
2087
-
2088
-
2089
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2090
-
2091
-
2092
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2093
-
2094
-
2095
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2096
-
2097
-
2098
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2099
-
2100
-
2101
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2102
-
2103
-
2104
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2105
-
2106
-
2107
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2108
-
2109
-
2110
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2111
-
2112
-
2113
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:58:25 +0600
2114
-
2115
-
2116
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2117
- Processing by ParentsController#new as HTML
2118
- Rendered parents/_form.html.erb (3.9ms)
2119
- Rendered parents/new.html.erb within layouts/application (4.6ms)
2120
- Completed 200 OK in 12ms (Views: 10.1ms | ActiveRecord: 0.0ms)
2121
-
2122
-
2123
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2124
-
2125
-
2126
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2127
-
2128
-
2129
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2130
-
2131
-
2132
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2133
-
2134
-
2135
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2136
-
2137
-
2138
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2139
-
2140
-
2141
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2142
-
2143
-
2144
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2145
-
2146
-
2147
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:58:46 +0600
2148
-
2149
-
2150
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2151
- Processing by ParentsController#new as HTML
2152
- Rendered parents/_form.html.erb (4.6ms)
2153
- Rendered parents/new.html.erb within layouts/application (6.9ms)
2154
- Completed 200 OK in 14ms (Views: 12.1ms | ActiveRecord: 0.0ms)
2155
-
2156
-
2157
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2158
-
2159
-
2160
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2161
-
2162
-
2163
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2164
-
2165
-
2166
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2167
-
2168
-
2169
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2170
-
2171
-
2172
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2173
-
2174
-
2175
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2176
-
2177
-
2178
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2179
-
2180
-
2181
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 22:59:13 +0600
2182
-
2183
-
2184
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2185
- Processing by ParentsController#new as HTML
2186
- Rendered parents/_form.html.erb (18.0ms)
2187
- Rendered parents/new.html.erb within layouts/application (18.8ms)
2188
- Completed 200 OK in 159ms (Views: 156.9ms | ActiveRecord: 0.0ms)
2189
-
2190
-
2191
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2192
-
2193
-
2194
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2195
-
2196
-
2197
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2198
-
2199
-
2200
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2201
-
2202
-
2203
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2204
-
2205
-
2206
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2207
-
2208
-
2209
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2210
-
2211
-
2212
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2213
-
2214
-
2215
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:00:45 +0600
2216
-
2217
-
2218
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2219
- Processing by ParentsController#new as HTML
2220
- Rendered parents/_form.html.erb (4.3ms)
2221
- Rendered parents/new.html.erb within layouts/application (5.1ms)
2222
- Completed 200 OK in 12ms (Views: 10.5ms | ActiveRecord: 0.0ms)
2223
-
2224
-
2225
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2226
-
2227
-
2228
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2229
-
2230
-
2231
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2232
-
2233
-
2234
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2235
-
2236
-
2237
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2238
-
2239
-
2240
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2241
-
2242
-
2243
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2244
-
2245
-
2246
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2247
-
2248
-
2249
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:01:03 +0600
2250
-
2251
-
2252
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2253
- Processing by ParentsController#new as HTML
2254
- Rendered parents/_form.html.erb (4.3ms)
2255
- Rendered parents/new.html.erb within layouts/application (5.3ms)
2256
- Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.0ms)
2257
-
2258
-
2259
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2260
-
2261
-
2262
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2263
-
2264
-
2265
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2266
-
2267
-
2268
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2269
-
2270
-
2271
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2272
-
2273
-
2274
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2275
-
2276
-
2277
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2278
-
2279
-
2280
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2281
-
2282
-
2283
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:01:10 +0600
2284
-
2285
-
2286
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2287
- Processing by ParentsController#new as HTML
2288
- Rendered parents/_form.html.erb (9.0ms)
2289
- Rendered parents/new.html.erb within layouts/application (9.7ms)
2290
- Completed 200 OK in 144ms (Views: 142.5ms | ActiveRecord: 0.0ms)
2291
-
2292
-
2293
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2294
-
2295
-
2296
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2297
-
2298
-
2299
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2300
-
2301
-
2302
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2303
-
2304
-
2305
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2306
-
2307
-
2308
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2309
-
2310
-
2311
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2312
-
2313
-
2314
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2315
-
2316
-
2317
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:02:46 +0600
2318
-
2319
-
2320
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:03:27 +0600
2321
- Processing by ParentsController#create as HTML
2322
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "0"=>{"name"=>"Child 0", "position"=>"1"}, "1"=>{"name"=>"Child 1", "position"=>"2"}}}, "commit"=>"Create Parent"}
2323
-  (0.1ms) begin transaction
2324
- SQL (0.7ms) INSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-07-21 17:03:27.145852"], ["updated_at", "2014-07-21 17:03:27.145852"]]
2325
-  (1.3ms) commit transaction
2326
- Redirected to http://0.0.0.0:3000/parents/1
2327
- Completed 302 Found in 20ms (ActiveRecord: 2.1ms)
2328
-
2329
-
2330
- Started GET "/parents/1" for 127.0.0.1 at 2014-07-21 23:03:27 +0600
2331
- Processing by ParentsController#show as HTML
2332
- Parameters: {"id"=>"1"}
2333
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 1]]
2334
- Completed 500 Internal Server Error in 7ms
2335
-
2336
- ActionView::MissingTemplate (Missing template parents/show, application/show with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
2337
- * "/Users/aishek/projects/activerecord-sortable/spec/dummy/app/views"
2338
- ):
2339
- actionview (4.1.1) lib/action_view/path_set.rb:46:in `find'
2340
- actionview (4.1.1) lib/action_view/lookup_context.rb:124:in `find'
2341
- actionview (4.1.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
2342
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:41:in `determine_template'
2343
- actionview (4.1.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
2344
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
2345
- actionview (4.1.1) lib/action_view/renderer/renderer.rb:23:in `render'
2346
- actionview (4.1.1) lib/action_view/rendering.rb:99:in `_render_template'
2347
- actionpack (4.1.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
2348
- actionview (4.1.1) lib/action_view/rendering.rb:82:in `render_to_body'
2349
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
2350
- actionpack (4.1.1) lib/action_controller/metal/renderers.rb:32:in `render_to_body'
2351
- actionpack (4.1.1) lib/abstract_controller/rendering.rb:25:in `render'
2352
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:16:in `render'
2353
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
2354
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
2355
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/benchmark.rb:294:in `realtime'
2356
- activesupport (4.1.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
2357
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
2358
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
2359
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
2360
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:40:in `render'
2361
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
2362
- actionpack (4.1.1) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
2363
- actionpack (4.1.1) lib/abstract_controller/base.rb:189:in `process_action'
2364
- actionpack (4.1.1) lib/action_controller/metal/rendering.rb:10:in `process_action'
2365
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2366
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
2367
- activesupport (4.1.1) lib/active_support/callbacks.rb:113:in `call'
2368
- activesupport (4.1.1) lib/active_support/callbacks.rb:229:in `block in halting'
2369
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `call'
2370
- activesupport (4.1.1) lib/active_support/callbacks.rb:166:in `block in halting'
2371
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `call'
2372
- activesupport (4.1.1) lib/active_support/callbacks.rb:86:in `run_callbacks'
2373
- actionpack (4.1.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
2374
- actionpack (4.1.1) lib/action_controller/metal/rescue.rb:29:in `process_action'
2375
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2376
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `block in instrument'
2377
- activesupport (4.1.1) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2378
- activesupport (4.1.1) lib/active_support/notifications.rb:159:in `instrument'
2379
- actionpack (4.1.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2380
- actionpack (4.1.1) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2381
- activerecord (4.1.1) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2382
- actionpack (4.1.1) lib/abstract_controller/base.rb:136:in `process'
2383
- actionview (4.1.1) lib/action_view/rendering.rb:30:in `process'
2384
- actionpack (4.1.1) lib/action_controller/metal.rb:195:in `dispatch'
2385
- actionpack (4.1.1) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2386
- actionpack (4.1.1) lib/action_controller/metal.rb:231:in `block in action'
2387
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `call'
2388
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:80:in `dispatch'
2389
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:48:in `call'
2390
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:71:in `block in call'
2391
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `each'
2392
- actionpack (4.1.1) lib/action_dispatch/journey/router.rb:59:in `call'
2393
- actionpack (4.1.1) lib/action_dispatch/routing/route_set.rb:676:in `call'
2394
- rack (1.5.2) lib/rack/etag.rb:23:in `call'
2395
- rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2396
- rack (1.5.2) lib/rack/head.rb:11:in `call'
2397
- actionpack (4.1.1) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2398
- actionpack (4.1.1) lib/action_dispatch/middleware/flash.rb:254:in `call'
2399
- rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2400
- rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2401
- actionpack (4.1.1) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2402
- activerecord (4.1.1) lib/active_record/query_cache.rb:36:in `call'
2403
- activerecord (4.1.1) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2404
- activerecord (4.1.1) lib/active_record/migration.rb:380:in `call'
2405
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2406
- activesupport (4.1.1) lib/active_support/callbacks.rb:82:in `run_callbacks'
2407
- actionpack (4.1.1) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2408
- actionpack (4.1.1) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2409
- actionpack (4.1.1) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2410
- actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2411
- actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2412
- railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
2413
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
2414
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2415
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
2416
- activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
2417
- railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
2418
- actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2419
- rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2420
- rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2421
- activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2422
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2423
- actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
2424
- rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2425
- railties (4.1.1) lib/rails/engine.rb:514:in `call'
2426
- railties (4.1.1) lib/rails/application.rb:144:in `call'
2427
- rack (1.5.2) lib/rack/lock.rb:17:in `call'
2428
- rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2429
- rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2430
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2431
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2432
- /Users/aishek/.rvm/rubies/ruby-2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2433
-
2434
-
2435
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (0.6ms)
2436
-
2437
-
2438
- Started GET "/parents/1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2439
- Processing by ParentsController#show as HTML
2440
- Parameters: {"id"=>"1"}
2441
- Parent Load (0.1ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 1]]
2442
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 1]]
2443
- Rendered parents/show.html.erb within layouts/application (2.0ms)
2444
- Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.4ms)
2445
-
2446
-
2447
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2448
-
2449
-
2450
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2451
-
2452
-
2453
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2454
-
2455
-
2456
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2457
-
2458
-
2459
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2460
-
2461
-
2462
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2463
-
2464
-
2465
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2466
-
2467
-
2468
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2469
-
2470
-
2471
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:05:22 +0600
2472
-
2473
-
2474
- Started GET "/parents/1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2475
- Processing by ParentsController#show as HTML
2476
- Parameters: {"id"=>"1"}
2477
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 1]]
2478
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 1]]
2479
- Rendered parents/show.html.erb within layouts/application (2.2ms)
2480
- Completed 200 OK in 53ms (Views: 47.1ms | ActiveRecord: 0.4ms)
2481
-
2482
-
2483
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2484
-
2485
-
2486
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2487
-
2488
-
2489
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2490
-
2491
-
2492
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2493
-
2494
-
2495
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2496
-
2497
-
2498
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2499
-
2500
-
2501
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2502
-
2503
-
2504
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2505
-
2506
-
2507
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:05:29 +0600
2508
-
2509
-
2510
- Started GET "/parents/1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2511
- Processing by ParentsController#show as HTML
2512
- Parameters: {"id"=>"1"}
2513
- Parent Load (0.1ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 1]]
2514
- Child Load (0.1ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 1]]
2515
- Rendered parents/show.html.erb within layouts/application (1.2ms)
2516
- Completed 200 OK in 10ms (Views: 8.2ms | ActiveRecord: 0.3ms)
2517
-
2518
-
2519
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2520
-
2521
-
2522
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2523
-
2524
-
2525
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2526
-
2527
-
2528
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2529
-
2530
-
2531
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2532
-
2533
-
2534
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2535
-
2536
-
2537
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2538
-
2539
-
2540
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2541
-
2542
-
2543
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:05:30 +0600
2544
-
2545
-
2546
- Started GET "/parents/1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2547
- Processing by ParentsController#show as HTML
2548
- Parameters: {"id"=>"1"}
2549
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 1]]
2550
-  (0.2ms) SELECT COUNT(*) FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 1]]
2551
- Rendered parents/show.html.erb within layouts/application (3.0ms)
2552
- Completed 200 OK in 18ms (Views: 12.1ms | ActiveRecord: 0.4ms)
2553
-
2554
-
2555
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2556
-
2557
-
2558
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2559
-
2560
-
2561
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2562
-
2563
-
2564
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2565
-
2566
-
2567
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2568
-
2569
-
2570
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2571
-
2572
-
2573
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2574
-
2575
-
2576
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2577
-
2578
-
2579
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:05:46 +0600
2580
-
2581
-
2582
- Started GET "/parents/1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2583
- Processing by ParentsController#show as HTML
2584
- Parameters: {"id"=>"1"}
2585
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 1]]
2586
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 1]]
2587
- Rendered parents/show.html.erb within layouts/application (18.3ms)
2588
- Completed 200 OK in 39ms (Views: 26.7ms | ActiveRecord: 1.4ms)
2589
-
2590
-
2591
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2592
-
2593
-
2594
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2595
-
2596
-
2597
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2598
-
2599
-
2600
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2601
-
2602
-
2603
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2604
-
2605
-
2606
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2607
-
2608
-
2609
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2610
-
2611
-
2612
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2613
-
2614
-
2615
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:38 +0600
2616
-
2617
-
2618
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:06:39 +0600
2619
- Processing by ParentsController#new as HTML
2620
- Rendered parents/_form.html.erb (7.7ms)
2621
- Rendered parents/new.html.erb within layouts/application (8.9ms)
2622
- Completed 200 OK in 23ms (Views: 14.7ms | ActiveRecord: 0.3ms)
2623
-
2624
-
2625
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:39 +0600
2626
-
2627
-
2628
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:39 +0600
2629
-
2630
-
2631
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:39 +0600
2632
-
2633
-
2634
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:40 +0600
2635
-
2636
-
2637
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:40 +0600
2638
-
2639
-
2640
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:40 +0600
2641
-
2642
-
2643
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:40 +0600
2644
-
2645
-
2646
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:06:40 +0600
2647
-
2648
-
2649
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:06:40 +0600
2650
-
2651
-
2652
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:06:48 +0600
2653
- Processing by ParentsController#create as HTML
2654
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "1"=>{"name"=>"Child 1", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
2655
- Completed 500 Internal Server Error in 3ms
2656
-
2657
- ActiveModel::ForbiddenAttributesError (ActiveModel::ForbiddenAttributesError):
2658
- app/controllers/parents_controller.rb:13:in `create'
2659
-
2660
-
2661
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
2662
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2663
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
2664
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.4ms)
2665
-
2666
-
2667
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2668
- Processing by ParentsController#new as HTML
2669
- Rendered parents/_form.html.erb (7.5ms)
2670
- Rendered parents/new.html.erb within layouts/application (8.8ms)
2671
- Completed 200 OK in 38ms (Views: 23.8ms | ActiveRecord: 0.9ms)
2672
-
2673
-
2674
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2675
-
2676
-
2677
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2678
-
2679
-
2680
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2681
-
2682
-
2683
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2684
-
2685
-
2686
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2687
-
2688
-
2689
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2690
-
2691
-
2692
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2693
-
2694
-
2695
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2696
-
2697
-
2698
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:09:49 +0600
2699
-
2700
-
2701
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2702
- Processing by ParentsController#new as HTML
2703
- Rendered parents/_form.html.erb (4.3ms)
2704
- Rendered parents/new.html.erb within layouts/application (5.1ms)
2705
- Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.0ms)
2706
-
2707
-
2708
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2709
-
2710
-
2711
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2712
-
2713
-
2714
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2715
-
2716
-
2717
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2718
-
2719
-
2720
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2721
-
2722
-
2723
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2724
-
2725
-
2726
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2727
-
2728
-
2729
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2730
-
2731
-
2732
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:09:50 +0600
2733
-
2734
-
2735
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:10:04 +0600
2736
- Processing by ParentsController#create as HTML
2737
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "1"=>{"name"=>"Child 1", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
2738
- Completed 400 Bad Request in 2ms
2739
-
2740
- ActionController::ParameterMissing (param is missing or the value is empty: parent):
2741
- app/controllers/parents_controller.rb:29:in `parent_params'
2742
- app/controllers/parents_controller.rb:13:in `create'
2743
-
2744
-
2745
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
2746
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2747
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.2ms)
2748
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.2ms)
2749
-
2750
-
2751
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:10:25 +0600
2752
- Processing by ParentsController#create as HTML
2753
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "1"=>{"name"=>"Child 1", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
2754
- Completed 400 Bad Request in 7ms
2755
-
2756
- ActionController::ParameterMissing (param is missing or the value is empty: parent):
2757
- app/controllers/parents_controller.rb:29:in `parent_params'
2758
- app/controllers/parents_controller.rb:13:in `create'
2759
-
2760
-
2761
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.0ms)
2762
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
2763
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
2764
- Rendered /Users/aishek/.rvm/gems/ruby-2.1.1/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.9ms)
2765
-
2766
-
2767
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2768
- Processing by ParentsController#create as HTML
2769
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "1"=>{"name"=>"Child 1", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
2770
-  (0.1ms) begin transaction
2771
- SQL (0.5ms) INSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-07-21 17:10:56.207701"], ["updated_at", "2014-07-21 17:10:56.207701"]]
2772
- SQL (0.2ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:10:56.214685"], ["name", "Child 2"], ["parent_id", 2], ["position", 0], ["updated_at", "2014-07-21 17:10:56.214685"]]
2773
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:10:56.219457"], ["name", "Child 1"], ["parent_id", 2], ["position", 1], ["updated_at", "2014-07-21 17:10:56.219457"]]
2774
- SQL (0.2ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:10:56.223665"], ["name", "Child 0"], ["parent_id", 2], ["position", 2], ["updated_at", "2014-07-21 17:10:56.223665"]]
2775
-  (1.2ms) commit transaction
2776
- Redirected to http://0.0.0.0:3000/parents/2
2777
- Completed 302 Found in 47ms (ActiveRecord: 3.2ms)
2778
-
2779
-
2780
- Started GET "/parents/2" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2781
- Processing by ParentsController#show as HTML
2782
- Parameters: {"id"=>"2"}
2783
- Parent Load (0.3ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 2]]
2784
- Child Load (0.3ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 2]]
2785
- Rendered parents/show.html.erb within layouts/application (2.2ms)
2786
- Completed 200 OK in 18ms (Views: 9.7ms | ActiveRecord: 0.6ms)
2787
-
2788
-
2789
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2790
-
2791
-
2792
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2793
-
2794
-
2795
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2796
-
2797
-
2798
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2799
-
2800
-
2801
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2802
-
2803
-
2804
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2805
-
2806
-
2807
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2808
-
2809
-
2810
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2811
-
2812
-
2813
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:10:56 +0600
2814
-
2815
-
2816
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2817
- Processing by ParentsController#new as HTML
2818
- Rendered parents/_form.html.erb (4.5ms)
2819
- Rendered parents/new.html.erb within layouts/application (5.6ms)
2820
- Completed 200 OK in 13ms (Views: 11.5ms | ActiveRecord: 0.0ms)
2821
-
2822
-
2823
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2824
-
2825
-
2826
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2827
-
2828
-
2829
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2830
-
2831
-
2832
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2833
-
2834
-
2835
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2836
-
2837
-
2838
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2839
-
2840
-
2841
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2842
-
2843
-
2844
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2845
-
2846
-
2847
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:10:59 +0600
2848
-
2849
-
2850
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2851
- Processing by ParentsController#new as HTML
2852
- Rendered parents/_form.html.erb (6.4ms)
2853
- Rendered parents/new.html.erb within layouts/application (7.2ms)
2854
- Completed 200 OK in 34ms (Views: 12.9ms | ActiveRecord: 1.2ms)
2855
-
2856
-
2857
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2858
-
2859
-
2860
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2861
-
2862
-
2863
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2864
-
2865
-
2866
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2867
-
2868
-
2869
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2870
-
2871
-
2872
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2873
-
2874
-
2875
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2876
-
2877
-
2878
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2879
-
2880
-
2881
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:14:54 +0600
2882
-
2883
-
2884
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:14:56 +0600
2885
- Processing by ParentsController#new as HTML
2886
- Rendered parents/_form.html.erb (3.8ms)
2887
- Rendered parents/new.html.erb within layouts/application (4.5ms)
2888
- Completed 200 OK in 12ms (Views: 10.7ms | ActiveRecord: 0.0ms)
2889
-
2890
-
2891
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:56 +0600
2892
-
2893
-
2894
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:56 +0600
2895
-
2896
-
2897
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2898
-
2899
-
2900
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2901
-
2902
-
2903
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2904
-
2905
-
2906
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2907
-
2908
-
2909
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2910
-
2911
-
2912
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2913
-
2914
-
2915
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:14:57 +0600
2916
-
2917
-
2918
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:15:04 +0600
2919
- Processing by ParentsController#create as HTML
2920
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"1"=>{"name"=>"Child 1", "position"=>""}, "0"=>{"name"=>"Child 0", "position"=>"1"}, "2"=>{"name"=>"Child 2", "position"=>""}}}, "commit"=>"Create Parent"}
2921
-  (0.1ms) begin transaction
2922
- SQL (0.5ms) INSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-07-21 17:15:04.988467"], ["updated_at", "2014-07-21 17:15:04.988467"]]
2923
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 3]]
2924
- SQL (0.2ms) UPDATE "children" SET position = position + 1, updated_at = '2014-07-21 17:15:04.999657' WHERE "children"."parent_id" = ? [["parent_id", 3]]
2925
- SQL (0.3ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:15:04.993630"], ["name", "Child 1"], ["parent_id", 3], ["position", 0], ["updated_at", "2014-07-21 17:15:04.993630"]]
2926
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:15:05.006916"], ["name", "Child 0"], ["parent_id", 3], ["position", 1], ["updated_at", "2014-07-21 17:15:05.006916"]]
2927
- Parent Load (0.1ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 3]]
2928
- SQL (1.2ms) UPDATE "children" SET position = position + 1, updated_at = '2014-07-21 17:15:05.012897' WHERE "children"."parent_id" = ? [["parent_id", 3]]
2929
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:15:05.011279"], ["name", "Child 2"], ["parent_id", 3], ["position", 0], ["updated_at", "2014-07-21 17:15:05.011279"]]
2930
-  (1.1ms) commit transaction
2931
- Redirected to http://0.0.0.0:3000/parents/3
2932
- Completed 302 Found in 38ms (ActiveRecord: 3.8ms)
2933
-
2934
-
2935
- Started GET "/parents/3" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2936
- Processing by ParentsController#show as HTML
2937
- Parameters: {"id"=>"3"}
2938
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 3]]
2939
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 3]]
2940
- Rendered parents/show.html.erb within layouts/application (4.4ms)
2941
- Completed 200 OK in 13ms (Views: 10.9ms | ActiveRecord: 0.4ms)
2942
-
2943
-
2944
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2945
-
2946
-
2947
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2948
-
2949
-
2950
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2951
-
2952
-
2953
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2954
-
2955
-
2956
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2957
-
2958
-
2959
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2960
-
2961
-
2962
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2963
-
2964
-
2965
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2966
-
2967
-
2968
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:05 +0600
2969
-
2970
-
2971
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2972
- Processing by ParentsController#new as HTML
2973
- Rendered parents/_form.html.erb (4.0ms)
2974
- Rendered parents/new.html.erb within layouts/application (4.8ms)
2975
- Completed 200 OK in 13ms (Views: 9.8ms | ActiveRecord: 0.0ms)
2976
-
2977
-
2978
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2979
-
2980
-
2981
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2982
-
2983
-
2984
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2985
-
2986
-
2987
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2988
-
2989
-
2990
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2991
-
2992
-
2993
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2994
-
2995
-
2996
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
2997
-
2998
-
2999
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
3000
-
3001
-
3002
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:15:06 +0600
3003
-
3004
-
3005
- Started POST "/parents" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3006
- Processing by ParentsController#create as HTML
3007
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"2"=>{"name"=>"Child 2", "position"=>"0"}, "1"=>{"name"=>"Child 1", "position"=>"1"}, "0"=>{"name"=>"Child 0", "position"=>"2"}}}, "commit"=>"Create Parent"}
3008
-  (0.1ms) begin transaction
3009
- SQL (1.4ms) INSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-07-21 17:15:24.524217"], ["updated_at", "2014-07-21 17:15:24.524217"]]
3010
- SQL (0.2ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:15:24.530422"], ["name", "Child 2"], ["parent_id", 4], ["position", 0], ["updated_at", "2014-07-21 17:15:24.530422"]]
3011
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:15:24.534891"], ["name", "Child 1"], ["parent_id", 4], ["position", 1], ["updated_at", "2014-07-21 17:15:24.534891"]]
3012
- SQL (0.2ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-21 17:15:24.541009"], ["name", "Child 0"], ["parent_id", 4], ["position", 2], ["updated_at", "2014-07-21 17:15:24.541009"]]
3013
-  (1.1ms) commit transaction
3014
- Redirected to http://0.0.0.0:3000/parents/4
3015
- Completed 302 Found in 28ms (ActiveRecord: 3.0ms)
3016
-
3017
-
3018
- Started GET "/parents/4" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3019
- Processing by ParentsController#show as HTML
3020
- Parameters: {"id"=>"4"}
3021
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 4]]
3022
- Child Load (0.1ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 4]]
3023
- Rendered parents/show.html.erb within layouts/application (1.4ms)
3024
- Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.3ms)
3025
-
3026
-
3027
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3028
-
3029
-
3030
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3031
-
3032
-
3033
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3034
-
3035
-
3036
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3037
-
3038
-
3039
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3040
-
3041
-
3042
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3043
-
3044
-
3045
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3046
-
3047
-
3048
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3049
-
3050
-
3051
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:15:24 +0600
3052
-
3053
-
3054
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3055
- Processing by ParentsController#new as HTML
3056
- Rendered parents/_form.html.erb (4.4ms)
3057
- Rendered parents/new.html.erb within layouts/application (5.2ms)
3058
- Completed 200 OK in 16ms (Views: 10.4ms | ActiveRecord: 0.0ms)
3059
-
3060
-
3061
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3062
-
3063
-
3064
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3065
-
3066
-
3067
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3068
-
3069
-
3070
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3071
-
3072
-
3073
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3074
-
3075
-
3076
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3077
-
3078
-
3079
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3080
-
3081
-
3082
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3083
-
3084
-
3085
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:15:40 +0600
3086
-
3087
-
3088
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3089
- Processing by ParentsController#new as HTML
3090
- Rendered parents/_form.html.erb (3.6ms)
3091
- Rendered parents/new.html.erb within layouts/application (4.5ms)
3092
- Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms)
3093
-
3094
-
3095
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3096
-
3097
-
3098
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3099
-
3100
-
3101
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3102
-
3103
-
3104
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3105
-
3106
-
3107
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3108
-
3109
-
3110
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3111
-
3112
-
3113
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3114
-
3115
-
3116
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3117
-
3118
-
3119
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-21 23:21:30 +0600
3120
-  (2.6ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
3121
-  (0.1ms) select sqlite_version(*)
3122
-  (1.1ms) CREATE INDEX "index_children_on_position" ON "children" ("position")
3123
-  (1.0ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "position" integer NOT NULL)
3124
-  (0.9ms) CREATE INDEX "index_items_on_position" ON "items" ("position")
3125
-  (1.1ms) CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
3126
-  (1.0ms) CREATE INDEX "index_other_things_on_place" ON "other_things" ("place")
3127
-  (1.8ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3128
-  (1.1ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
3129
-  (1.0ms) CREATE INDEX "index_things_on_position" ON "things" ("position")
3130
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3131
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3132
-  (0.1ms) SELECT version FROM "schema_migrations"
3133
-  (1.5ms) INSERT INTO "schema_migrations" (version) VALUES ('20140721161122')
3134
-  (1.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20140512100816')
3135
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140525104834')
3136
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140525111906')
3137
-  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140525112123')
3138
-  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140721161028')
3139
-  (1.5ms) CREATE TABLE "children" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255) NOT NULL, "parent_id" integer NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
3140
-  (0.1ms) select sqlite_version(*)
3141
-  (1.2ms) CREATE INDEX "index_children_on_position" ON "children" ("position")
3142
-  (1.0ms) CREATE TABLE "items" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime, "position" integer NOT NULL)
3143
-  (1.0ms) CREATE INDEX "index_items_on_position" ON "items" ("position")
3144
-  (0.9ms) CREATE TABLE "other_things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "place" integer NOT NULL, "created_at" datetime, "updated_at" datetime)
3145
-  (1.0ms) CREATE INDEX "index_other_things_on_place" ON "other_things" ("place")
3146
-  (1.8ms) CREATE TABLE "parents" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "created_at" datetime, "updated_at" datetime)
3147
-  (1.2ms) CREATE TABLE "things" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "position" integer NOT NULL, "created_at" datetime, "updated_at" datetime) 
3148
-  (0.9ms) CREATE INDEX "index_things_on_position" ON "things" ("position")
3149
-  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3150
-  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3151
-  (0.1ms) SELECT version FROM "schema_migrations"
3152
-  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140721161122')
3153
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140512100816')
3154
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140525104834')
3155
-  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140525111906')
3156
-  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20140525112123')
3157
-  (1.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20140721161028')
3158
-
3159
-
3160
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:35:19 +0600
3161
- ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3162
- Processing by ThingsController#index as HTML
3163
- Thing Load (0.5ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3164
- Rendered things/_thing.html.erb (1.9ms)
3165
- Rendered things/index.html.erb within layouts/application (20.8ms)
3166
- Completed 200 OK in 222ms (Views: 217.1ms | ActiveRecord: 0.8ms)
3167
-
3168
-
3169
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:19 +0600
3170
-
3171
-
3172
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:19 +0600
3173
-
3174
-
3175
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:19 +0600
3176
-
3177
-
3178
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:19 +0600
3179
-
3180
-
3181
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:20 +0600
3182
-
3183
-
3184
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:35:20 +0600
3185
-
3186
-
3187
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:20 +0600
3188
-
3189
-
3190
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:20 +0600
3191
-
3192
-
3193
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:20 +0600
3194
-
3195
-
3196
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3197
- Processing by ThingsController#index as HTML
3198
- Thing Load (0.3ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3199
- Rendered things/_thing.html.erb (1.0ms)
3200
- Rendered things/index.html.erb within layouts/application (3.4ms)
3201
- Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.3ms)
3202
-
3203
-
3204
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3205
-
3206
-
3207
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3208
-
3209
-
3210
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3211
-
3212
-
3213
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3214
-
3215
-
3216
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3217
-
3218
-
3219
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3220
-
3221
-
3222
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3223
-
3224
-
3225
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3226
-
3227
-
3228
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:35:28 +0600
3229
-
3230
-
3231
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3232
- Processing by ThingsController#index as HTML
3233
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3234
- Rendered things/_thing.html.erb (1.0ms)
3235
- Rendered things/index.html.erb within layouts/application (2.9ms)
3236
- Completed 200 OK in 149ms (Views: 148.4ms | ActiveRecord: 0.2ms)
3237
-
3238
-
3239
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3240
-
3241
-
3242
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3243
-
3244
-
3245
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3246
-
3247
-
3248
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3249
-
3250
-
3251
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3252
-
3253
-
3254
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3255
-
3256
-
3257
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3258
-
3259
-
3260
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3261
-
3262
-
3263
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:11 +0600
3264
-
3265
-
3266
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:36:19 +0600
3267
- Processing by ThingsController#index as HTML
3268
- Thing Load (0.3ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3269
- Rendered things/_thing.html.erb (0.8ms)
3270
- Rendered things/index.html.erb within layouts/application (3.0ms)
3271
- Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.3ms)
3272
-
3273
-
3274
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:19 +0600
3275
-
3276
-
3277
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3278
-
3279
-
3280
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3281
-
3282
-
3283
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3284
-
3285
-
3286
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3287
-
3288
-
3289
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3290
-
3291
-
3292
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3293
-
3294
-
3295
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3296
-
3297
-
3298
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:36:20 +0600
3299
-
3300
-
3301
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3302
- Processing by ThingsController#index as HTML
3303
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3304
- Rendered things/_thing.html.erb (0.9ms)
3305
- Rendered things/index.html.erb within layouts/application (3.7ms)
3306
- Completed 200 OK in 17ms (Views: 15.9ms | ActiveRecord: 0.2ms)
3307
-
3308
-
3309
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3310
-
3311
-
3312
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3313
-
3314
-
3315
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3316
-
3317
-
3318
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3319
-
3320
-
3321
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3322
-
3323
-
3324
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3325
-
3326
-
3327
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3328
-
3329
-
3330
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3331
-
3332
-
3333
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:36:35 +0600
3334
-
3335
-
3336
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:37:10 +0600
3337
- Processing by ThingsController#index as HTML
3338
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3339
- Rendered things/_thing.html.erb (0.9ms)
3340
- Rendered things/index.html.erb within layouts/application (3.8ms)
3341
- Completed 200 OK in 179ms (Views: 178.3ms | ActiveRecord: 0.2ms)
3342
-
3343
-
3344
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3345
-
3346
-
3347
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3348
-
3349
-
3350
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3351
-
3352
-
3353
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3354
-
3355
-
3356
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3357
-
3358
-
3359
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3360
-
3361
-
3362
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3363
-
3364
-
3365
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3366
-
3367
-
3368
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:37:11 +0600
3369
-
3370
-
3371
- Started POST "/things/4/move" for 127.0.0.1 at 2014-07-22 13:37:14 +0600
3372
- Processing by ThingsController#move as JS
3373
- Parameters: {"position"=>"0", "id"=>"4"}
3374
- Thing Load (0.3ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 4]]
3375
-  (0.1ms) begin transaction
3376
- SQL (1.3ms) UPDATE "things" SET position = position + 1, updated_at = '2014-07-22 07:37:14.770791' WHERE (position >= 0 AND position < 1)
3377
- SQL (1.8ms) UPDATE "things" SET "position" = ?, "updated_at" = ? WHERE "things"."id" = 4 [["position", 0], ["updated_at", "2014-07-22 07:37:14.776886"]]
3378
-  (2.2ms) commit transaction
3379
- Rendered things/_thing.html.erb (0.8ms)
3380
- Rendered things/move.js.erb (6.2ms)
3381
- Completed 200 OK in 41ms (Views: 15.7ms | ActiveRecord: 5.7ms)
3382
-
3383
-
3384
- Started POST "/things/3/move" for 127.0.0.1 at 2014-07-22 13:37:21 +0600
3385
- Processing by ThingsController#move as JS
3386
- Parameters: {"position"=>"3", "id"=>"3"}
3387
- Thing Load (0.2ms) SELECT "things".* FROM "things" WHERE "things"."id" = ? LIMIT 1 [["id", 3]]
3388
-  (0.1ms) begin transaction
3389
- SQL (0.5ms) UPDATE "things" SET position = position - 1, updated_at = '2014-07-22 07:37:21.958742' WHERE (position > 2 AND position <= 3)
3390
- SQL (0.6ms) UPDATE "things" SET "position" = ?, "updated_at" = ? WHERE "things"."id" = 3 [["position", 3], ["updated_at", "2014-07-22 07:37:21.961777"]]
3391
-  (0.9ms) commit transaction
3392
- Rendered things/_thing.html.erb (0.3ms)
3393
- Rendered things/move.js.erb (4.5ms)
3394
- Completed 200 OK in 24ms (Views: 9.7ms | ActiveRecord: 2.3ms)
3395
-
3396
-
3397
- Started GET "/" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3398
- Processing by ThingsController#index as HTML
3399
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3400
- Rendered things/_thing.html.erb (0.9ms)
3401
- Rendered things/index.html.erb within layouts/application (3.0ms)
3402
- Completed 200 OK in 12ms (Views: 9.2ms | ActiveRecord: 0.2ms)
3403
-
3404
-
3405
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3406
-
3407
-
3408
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3409
-
3410
-
3411
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3412
-
3413
-
3414
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3415
-
3416
-
3417
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3418
-
3419
-
3420
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3421
-
3422
-
3423
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3424
-
3425
-
3426
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3427
-
3428
-
3429
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:37:23 +0600
3430
-
3431
-
3432
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3433
- Processing by ParentsController#new as HTML
3434
- Rendered parents/_form.html.erb (24.3ms)
3435
- Rendered parents/new.html.erb within layouts/application (26.1ms)
3436
- Completed 200 OK in 80ms (Views: 40.4ms | ActiveRecord: 0.7ms)
3437
-
3438
-
3439
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3440
-
3441
-
3442
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3443
-
3444
-
3445
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3446
-
3447
-
3448
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3449
-
3450
-
3451
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3452
-
3453
-
3454
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3455
-
3456
-
3457
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3458
-
3459
-
3460
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:37:52 +0600
3461
-
3462
-
3463
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:37:53 +0600
3464
-
3465
-
3466
- Started POST "/parents" for 127.0.0.1 at 2014-07-22 13:38:01 +0600
3467
- Processing by ParentsController#create as HTML
3468
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"1"=>{"name"=>"Child 1", "position"=>"0"}, "0"=>{"name"=>"Child 0", "position"=>"1"}, "2"=>{"name"=>"Child 2", "position"=>"2"}}}, "commit"=>"Create Parent"}
3469
-  (0.1ms) begin transaction
3470
- SQL (0.6ms) INSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-07-22 07:38:01.867124"], ["updated_at", "2014-07-22 07:38:01.867124"]]
3471
- SQL (0.4ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-22 07:38:01.872649"], ["name", "Child 1"], ["parent_id", 5], ["position", 0], ["updated_at", "2014-07-22 07:38:01.872649"]]
3472
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-22 07:38:01.878376"], ["name", "Child 0"], ["parent_id", 5], ["position", 1], ["updated_at", "2014-07-22 07:38:01.878376"]]
3473
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-22 07:38:01.883345"], ["name", "Child 2"], ["parent_id", 5], ["position", 2], ["updated_at", "2014-07-22 07:38:01.883345"]]
3474
-  (1.1ms) commit transaction
3475
- Redirected to http://0.0.0.0:3000/parents/5
3476
- Completed 302 Found in 29ms (ActiveRecord: 2.3ms)
3477
-
3478
-
3479
- Started GET "/parents/5" for 127.0.0.1 at 2014-07-22 13:38:01 +0600
3480
- Processing by ParentsController#show as HTML
3481
- Parameters: {"id"=>"5"}
3482
- Parent Load (0.3ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 5]]
3483
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 5]]
3484
- Rendered parents/show.html.erb within layouts/application (2.6ms)
3485
- Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.5ms)
3486
-
3487
-
3488
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3489
-
3490
-
3491
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3492
-
3493
-
3494
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3495
-
3496
-
3497
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3498
-
3499
-
3500
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3501
-
3502
-
3503
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3504
-
3505
-
3506
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3507
-
3508
-
3509
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3510
-
3511
-
3512
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:38:02 +0600
3513
-
3514
-
3515
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3516
- Processing by ParentsController#new as HTML
3517
- Rendered parents/_form.html.erb (4.3ms)
3518
- Rendered parents/new.html.erb within layouts/application (5.2ms)
3519
- Completed 200 OK in 14ms (Views: 11.2ms | ActiveRecord: 0.0ms)
3520
-
3521
-
3522
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3523
-
3524
-
3525
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3526
-
3527
-
3528
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3529
-
3530
-
3531
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3532
-
3533
-
3534
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3535
-
3536
-
3537
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3538
-
3539
-
3540
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3541
-
3542
-
3543
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3544
-
3545
-
3546
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:38:03 +0600
3547
-
3548
-
3549
- Started POST "/parents" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3550
- Processing by ParentsController#create as HTML
3551
- Parameters: {"utf8"=>"✓", "authenticity_token"=>"qFqCSVzqCjiFQld0W9N+TjoIe0bxBxyeNV8VYH/JDxk=", "parent"=>{"children_attributes"=>{"0"=>{"name"=>"Child 0", "position"=>"0"}, "1"=>{"name"=>"Child 1", "position"=>"1"}, "2"=>{"name"=>"Child 2", "position"=>"2"}}}, "commit"=>"Create Parent"}
3552
-  (0.1ms) begin transaction
3553
- SQL (0.7ms) INSERT INTO "parents" ("created_at", "updated_at") VALUES (?, ?) [["created_at", "2014-07-22 07:53:03.159033"], ["updated_at", "2014-07-22 07:53:03.159033"]]
3554
- SQL (0.2ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-22 07:53:03.165015"], ["name", "Child 0"], ["parent_id", 6], ["position", 0], ["updated_at", "2014-07-22 07:53:03.165015"]]
3555
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-22 07:53:03.170051"], ["name", "Child 1"], ["parent_id", 6], ["position", 1], ["updated_at", "2014-07-22 07:53:03.170051"]]
3556
- SQL (0.1ms) INSERT INTO "children" ("created_at", "name", "parent_id", "position", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", "2014-07-22 07:53:03.174552"], ["name", "Child 2"], ["parent_id", 6], ["position", 2], ["updated_at", "2014-07-22 07:53:03.174552"]]
3557
-  (1.0ms) commit transaction
3558
- Redirected to http://0.0.0.0:3000/parents/6
3559
- Completed 302 Found in 28ms (ActiveRecord: 2.2ms)
3560
-
3561
-
3562
- Started GET "/parents/6" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3563
- Processing by ParentsController#show as HTML
3564
- Parameters: {"id"=>"6"}
3565
- Parent Load (0.2ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 6]]
3566
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 6]]
3567
- Rendered parents/show.html.erb within layouts/application (1.5ms)
3568
- Completed 200 OK in 148ms (Views: 147.1ms | ActiveRecord: 0.3ms)
3569
-
3570
-
3571
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3572
-
3573
-
3574
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3575
-
3576
-
3577
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3578
-
3579
-
3580
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3581
-
3582
-
3583
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3584
-
3585
-
3586
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3587
-
3588
-
3589
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3590
-
3591
-
3592
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3593
-
3594
-
3595
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:03 +0600
3596
-
3597
-
3598
- Started GET "/parents/6" for 127.0.0.1 at 2014-07-22 13:53:29 +0600
3599
- Processing by ParentsController#show as HTML
3600
- Parameters: {"id"=>"6"}
3601
- Parent Load (0.1ms) SELECT "parents".* FROM "parents" WHERE "parents"."id" = ? LIMIT 1 [["id", 6]]
3602
- Child Load (0.2ms) SELECT "children".* FROM "children" WHERE "children"."parent_id" = ? [["parent_id", 6]]
3603
- Rendered parents/show.html.erb within layouts/application (2.6ms)
3604
- Completed 200 OK in 15ms (Views: 13.7ms | ActiveRecord: 0.3ms)
3605
-
3606
-
3607
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3608
-
3609
-
3610
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3611
-
3612
-
3613
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3614
-
3615
-
3616
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3617
-
3618
-
3619
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3620
-
3621
-
3622
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3623
-
3624
-
3625
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3626
-
3627
-
3628
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3629
-
3630
-
3631
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 13:53:30 +0600
3632
-
3633
-
3634
- Started GET "/parents/new" for 127.0.0.1 at 2014-07-22 18:37:53 +0600
3635
- ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3636
- Processing by ParentsController#new as HTML
3637
- Rendered parents/_form.html.erb (41.0ms)
3638
- Rendered parents/new.html.erb within layouts/application (45.6ms)
3639
- Completed 200 OK in 174ms (Views: 138.3ms | ActiveRecord: 0.7ms)
3640
-
3641
-
3642
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 18:37:53 +0600
3643
-
3644
-
3645
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:53 +0600
3646
-
3647
-
3648
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3649
-
3650
-
3651
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3652
-
3653
-
3654
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3655
-
3656
-
3657
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3658
-
3659
-
3660
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3661
-
3662
-
3663
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3664
-
3665
-
3666
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 18:37:54 +0600
3667
-
3668
-
3669
- Started GET "/" for 127.0.0.1 at 2014-07-22 18:38:08 +0600
3670
- Processing by ThingsController#index as HTML
3671
- Thing Load (0.4ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3672
- Rendered things/_thing.html.erb (1.8ms)
3673
- Rendered things/index.html.erb within layouts/application (12.4ms)
3674
- Completed 200 OK in 28ms (Views: 23.3ms | ActiveRecord: 1.0ms)
3675
-
3676
-
3677
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:08 +0600
3678
-
3679
-
3680
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3681
-
3682
-
3683
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3684
-
3685
-
3686
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3687
-
3688
-
3689
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3690
-
3691
-
3692
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3693
-
3694
-
3695
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3696
-
3697
-
3698
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3699
-
3700
-
3701
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 18:38:09 +0600
3702
-
3703
-
3704
- Started GET "/" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3705
- Processing by ThingsController#index as HTML
3706
- Thing Load (1.0ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3707
- Rendered things/_thing.html.erb (1.1ms)
3708
- Rendered things/index.html.erb within layouts/application (6.3ms)
3709
- Completed 200 OK in 20ms (Views: 17.9ms | ActiveRecord: 1.0ms)
3710
-
3711
-
3712
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3713
-
3714
-
3715
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3716
-
3717
-
3718
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3719
-
3720
-
3721
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3722
-
3723
-
3724
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3725
-
3726
-
3727
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3728
-
3729
-
3730
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3731
-
3732
-
3733
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3734
-
3735
-
3736
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 18:38:39 +0600
3737
-
3738
-
3739
- Started GET "/" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3740
- Processing by ThingsController#index as HTML
3741
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3742
- Rendered things/_thing.html.erb (0.9ms)
3743
- Rendered things/index.html.erb within layouts/application (7.5ms)
3744
- Completed 200 OK in 15ms (Views: 13.9ms | ActiveRecord: 0.2ms)
3745
-
3746
-
3747
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3748
-
3749
-
3750
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3751
-
3752
-
3753
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3754
-
3755
-
3756
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3757
-
3758
-
3759
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3760
-
3761
-
3762
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3763
-
3764
-
3765
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3766
-
3767
-
3768
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3769
-
3770
-
3771
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:40 +0600
3772
-
3773
-
3774
- Started GET "/" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3775
- Processing by ThingsController#index as HTML
3776
- Thing Load (0.2ms) SELECT "things".* FROM "things" ORDER BY "things"."position" ASC
3777
- Rendered things/_thing.html.erb (0.8ms)
3778
- Rendered things/index.html.erb within layouts/application (3.0ms)
3779
- Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms)
3780
-
3781
-
3782
- Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3783
-
3784
-
3785
- Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3786
-
3787
-
3788
- Started GET "/assets/jquery.ui.core.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3789
-
3790
-
3791
- Started GET "/assets/sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3792
-
3793
-
3794
- Started GET "/assets/jquery.ui.widget.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3795
-
3796
-
3797
- Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3798
-
3799
-
3800
- Started GET "/assets/jquery.ui.sortable.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3801
-
3802
-
3803
- Started GET "/assets/jquery.ui.mouse.js?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600
3804
-
3805
-
3806
- Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-07-22 18:38:41 +0600