adeia 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (124) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -0
  3. data/Rakefile +1 -1
  4. data/app/models/adeia/action.rb +4 -1
  5. data/app/models/adeia/element.rb +2 -0
  6. data/app/models/adeia/group.rb +4 -1
  7. data/app/models/adeia/permission.rb +27 -1
  8. data/app/models/adeia/token.rb +12 -0
  9. data/config/locales/en.yml +4 -1
  10. data/config/locales/fr.yml +4 -1
  11. data/db/migrate/20151003150524_create_adeia_tokens.rb +1 -1
  12. data/lib/adeia/authorization.rb +19 -8
  13. data/lib/adeia/controller_methods.rb +2 -2
  14. data/lib/adeia/controller_resource.rb +8 -5
  15. data/lib/adeia/database.rb +19 -8
  16. data/lib/adeia/engine.rb +7 -0
  17. data/lib/adeia/version.rb +1 -1
  18. data/spec/authorization_spec.rb +162 -0
  19. data/spec/controllers/articles_controller_spec.rb +123 -0
  20. data/spec/factories.rb +53 -0
  21. data/spec/rails_helper.rb +19 -0
  22. data/spec/spec_helper.rb +19 -0
  23. data/spec/support/spec_login_helper.rb +18 -0
  24. data/{test/dummy → spec/test_app}/Rakefile +0 -0
  25. data/{test/dummy → spec/test_app}/app/assets/javascripts/application.js +0 -0
  26. data/{test/dummy → spec/test_app}/app/assets/javascripts/sessions.js +0 -0
  27. data/{test/dummy → spec/test_app}/app/assets/stylesheets/application.css +0 -0
  28. data/{test/dummy → spec/test_app}/app/assets/stylesheets/scaffold.css +0 -0
  29. data/{test/dummy → spec/test_app}/app/assets/stylesheets/sessions.css +0 -0
  30. data/{test/dummy → spec/test_app}/app/controllers/application_controller.rb +0 -0
  31. data/{test/dummy → spec/test_app}/app/controllers/articles_controller.rb +4 -11
  32. data/{test/dummy → spec/test_app}/app/controllers/sessions_controller.rb +1 -1
  33. data/{test/dummy → spec/test_app}/app/helpers/application_helper.rb +0 -0
  34. data/{test/dummy → spec/test_app}/app/helpers/sessions_helper.rb +0 -0
  35. data/{test/dummy → spec/test_app}/app/models/article.rb +0 -0
  36. data/{test/dummy → spec/test_app}/app/models/user.rb +0 -0
  37. data/{test/dummy → spec/test_app}/app/views/articles/_form.html.erb +0 -0
  38. data/{test/dummy → spec/test_app}/app/views/articles/edit.html.erb +0 -0
  39. data/{test/dummy → spec/test_app}/app/views/articles/index.html.erb +0 -0
  40. data/{test/dummy → spec/test_app}/app/views/articles/new.html.erb +0 -0
  41. data/{test/dummy → spec/test_app}/app/views/articles/show.html.erb +0 -0
  42. data/{test/dummy → spec/test_app}/app/views/layouts/application.html.erb +1 -1
  43. data/{test/dummy → spec/test_app}/app/views/sessions/new.html.erb +0 -0
  44. data/{test/dummy → spec/test_app}/bin/bundle +0 -0
  45. data/{test/dummy → spec/test_app}/bin/rails +0 -0
  46. data/{test/dummy → spec/test_app}/bin/rake +0 -0
  47. data/{test/dummy → spec/test_app}/bin/setup +0 -0
  48. data/{test/dummy → spec/test_app}/config.ru +0 -0
  49. data/{test/dummy → spec/test_app}/config/application.rb +0 -0
  50. data/{test/dummy → spec/test_app}/config/boot.rb +0 -0
  51. data/{test/dummy → spec/test_app}/config/database.yml +0 -0
  52. data/{test/dummy → spec/test_app}/config/environment.rb +0 -0
  53. data/{test/dummy → spec/test_app}/config/environments/development.rb +0 -0
  54. data/{test/dummy → spec/test_app}/config/environments/production.rb +0 -0
  55. data/{test/dummy → spec/test_app}/config/environments/test.rb +0 -0
  56. data/{test/dummy → spec/test_app}/config/initializers/assets.rb +0 -0
  57. data/{test/dummy → spec/test_app}/config/initializers/backtrace_silencers.rb +0 -0
  58. data/{test/dummy → spec/test_app}/config/initializers/cookies_serializer.rb +0 -0
  59. data/{test/dummy → spec/test_app}/config/initializers/filter_parameter_logging.rb +0 -0
  60. data/{test/dummy → spec/test_app}/config/initializers/inflections.rb +0 -0
  61. data/{test/dummy → spec/test_app}/config/initializers/mime_types.rb +0 -0
  62. data/{test/dummy → spec/test_app}/config/initializers/session_store.rb +0 -0
  63. data/{test/dummy → spec/test_app}/config/initializers/wrap_parameters.rb +0 -0
  64. data/{test/dummy → spec/test_app}/config/locales/en.yml +0 -0
  65. data/{test/dummy → spec/test_app}/config/routes.rb +1 -1
  66. data/{test/dummy → spec/test_app}/config/secrets.yml +0 -0
  67. data/{test/dummy → spec/test_app}/db/development.sqlite3 +0 -0
  68. data/{test/dummy/db/migrate/20150930161522_create_users.rb → spec/test_app/db/migrate/20151012185720_create_users.rb} +1 -1
  69. data/{test/dummy/db/migrate/20150930161532_create_articles.rb → spec/test_app/db/migrate/20151012185726_create_articles.rb} +1 -1
  70. data/{test/dummy → spec/test_app}/db/schema.rb +2 -2
  71. data/spec/test_app/db/test.sqlite3 +0 -0
  72. data/{test/dummy → spec/test_app}/lib/tasks/init.rake +0 -0
  73. data/{test/dummy → spec/test_app}/log/development.log +1314 -0
  74. data/spec/test_app/log/test.log +24709 -0
  75. data/{test/dummy → spec/test_app}/public/404.html +0 -0
  76. data/{test/dummy → spec/test_app}/public/422.html +0 -0
  77. data/{test/dummy → spec/test_app}/public/500.html +0 -0
  78. data/{test/dummy → spec/test_app}/public/favicon.ico +0 -0
  79. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/007YZnzCZDb7P0xbxiEkmAM6-xSsxmYu_W7vnrvcDOs.cache +0 -0
  80. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/1GiUoKAP-7ewZyzr_eCTMX0R8ML5Z_VN2bfQ05RAW30.cache +0 -0
  81. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +0 -0
  82. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/6n6yNyR4eQhIVjw5Anxur-SLgdDc_rzuMuZKj6Q4FqE.cache +0 -0
  83. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/80nWjD2uxLBuIN1R5NawmTsgZWCB6nln8WXf_5gHri4.cache +0 -0
  84. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/9Fw_WnCC15QnXUQZ4eYTYLOBv20at5Z5gL-WJx_QsR4.cache +0 -0
  85. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/D4VyPOMG_wXgPRZtj-mbRdONJXbdgOZKcuwSm-lNNIA.cache +0 -0
  86. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/DmmfrCpXtt74Hr6NO54lxyOCDv6klnDyBqeDFR7oDU8.cache +0 -0
  87. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/HggfmBmV-rmvrvzJjqvjmDpwB2BTEQvh6krp0CcrI0U.cache +0 -0
  88. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +0 -0
  89. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/P1NOTKHlk-FIwqlw0wiyLanpgNyubwQi850S1aonsbQ.cache +0 -0
  90. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/PKcbfub75wwU6UzvVnSMFn_6wsaaPUoXMtWTnyyh5jM.cache +0 -0
  91. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/S4dXPkh6wlupsMUb-GvZ2Q5PwAZmplTCkViWCnVWWw0.cache +0 -0
  92. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/UuBE6kIOXtWOmnrnywPI98bzHE-L84SteUEfzexxVtA.cache +0 -0
  93. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/Xa5LZJIrW7sSuOWWFwCAhDkDQ71pA_cHp6H5kiTZS6E.cache +0 -0
  94. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/eQqoU12FSWEA4BsL-PjwTnIUr1bZsu27SOzFHPomG4c.cache +0 -0
  95. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/f3V_hqqK4rH7Z51LFX1Wk9hrWGjYABTZmgSeYvWKgLs.cache +0 -0
  96. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/gXIpNlfbH4G7-D0grgt2EuWuwHwTymznc1rlxJ1-C0A.cache +0 -0
  97. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/hX4wt6FzyI47gW66iiVyl2C722yfwvx3KafFEYkreEY.cache +0 -0
  98. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +0 -0
  99. data/spec/test_app/tmp/cache/assets/development/sprockets/v3.0/m36EDdApBppvyoX6m8cNCOm1eyt7pipkfASRya0sKqM.cache +1 -0
  100. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/nZCCAAO-XWnPS2Xr9yss0VhSONvnR3emOuEIc_b-1OY.cache +0 -0
  101. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +0 -0
  102. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/r5qzpye5vWgzwRnRhhSYkUslyNZ11pyYXQZqGe8o930.cache +0 -0
  103. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/t0GCJAJcd_7X2F172TjwwDZ6rfNJc2FRbDTV5-jSqY0.cache +0 -0
  104. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/t92Y0f7B0gH-r5W-iNadtkzgjm8gxyEyttnY6AWpdmw.cache +0 -0
  105. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/tYGZjTIGEDMySqV7qHf43dq0_aB7TuSEhhZtN_9xW54.cache +0 -0
  106. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/wMjI0_cDi3gmsOV5xXr-QPQOfHCB_qea8St_udeflhE.cache +0 -0
  107. data/{test/dummy → spec/test_app}/tmp/cache/assets/development/sprockets/v3.0/z2mRCA3647ZviK5pXi1_qLwdxkiCaoIfZj7jHoMfLiI.cache +0 -0
  108. data/spec/test_app/tmp/pids/server.pid +1 -0
  109. data/spec/validations_spec.rb +37 -0
  110. metadata +219 -194
  111. data/test/dummy/db/migrate/20151003145900_create_adeia_elements.adeia.rb +0 -10
  112. data/test/dummy/db/migrate/20151003145901_create_adeia_permissions.adeia.rb +0 -17
  113. data/test/dummy/db/migrate/20151003145902_create_adeia_groups.adeia.rb +0 -10
  114. data/test/dummy/db/migrate/20151003145903_create_adeia_group_users.adeia.rb +0 -11
  115. data/test/dummy/db/migrate/20151003150941_create_adeia_tokens.adeia.rb +0 -13
  116. data/test/dummy/db/migrate/20151003150942_create_adeia_actions.adeia.rb +0 -10
  117. data/test/dummy/db/migrate/20151003150943_create_adeia_action_permissions.adeia.rb +0 -11
  118. data/test/dummy/test/controllers/articles_controller_test.rb +0 -49
  119. data/test/dummy/test/controllers/sessions_controller_test.rb +0 -7
  120. data/test/dummy/test/controllers/users_controller_test.rb +0 -49
  121. data/test/dummy/test/fixtures/articles.yml +0 -11
  122. data/test/dummy/test/fixtures/users.yml +0 -9
  123. data/test/dummy/test/models/article_test.rb +0 -7
  124. data/test/dummy/test/models/user_test.rb +0 -7
@@ -4654,3 +4654,1317 @@ Adeia::AccessDenied (You don't have access to this page !):
4654
4654
  Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
4655
4655
  Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (14.7ms)
4656
4656
  Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (87.3ms)
4657
+
4658
+
4659
+ Started GET "/articles" for ::1 at 2015-10-03 18:16:19 +0200
4660
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
4661
+ Processing by ArticlesController#index as HTML
4662
+ User Load (2.9ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? LIMIT 1 [["remember_token", "nnpntrg9vOEC18QHQgmHlA"]]
4663
+ Adeia::Token Load (1.3ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
4664
+ Adeia::Group Load (0.5ms) SELECT "adeia_groups".* FROM "adeia_groups" INNER JOIN "adeia_group_users" ON "adeia_group_users"."group_id" = "adeia_groups"."id" WHERE "adeia_group_users"."user_id" = 1
4665
+ Completed 500 Internal Server Error in 144ms (ActiveRecord: 6.7ms)
4666
+
4667
+ Adeia::AccessDenied (You don't have access to this page !):
4668
+ /Users/khcr/Projets/Web/adeia/lib/adeia/authorization.rb:12:in `authorize!'
4669
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:61:in `authorize!'
4670
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_methods.rb:29:in `authorize_and_load_records!'
4671
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:16:in `load_resoure_or_records_and_authorize'
4672
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:10:in `block in add_before_filter'
4673
+ activesupport (4.2.4) lib/active_support/callbacks.rb:448:in `instance_exec'
4674
+ activesupport (4.2.4) lib/active_support/callbacks.rb:448:in `block in make_lambda'
4675
+ activesupport (4.2.4) lib/active_support/callbacks.rb:164:in `call'
4676
+ activesupport (4.2.4) lib/active_support/callbacks.rb:164:in `block in halting'
4677
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `call'
4678
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `block in call'
4679
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `each'
4680
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `call'
4681
+ activesupport (4.2.4) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
4682
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
4683
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
4684
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
4685
+ actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
4686
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
4687
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
4688
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4689
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
4690
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4691
+ actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
4692
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4693
+ actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
4694
+ actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
4695
+ actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
4696
+ actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4697
+ actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
4698
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
4699
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
4700
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
4701
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
4702
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
4703
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
4704
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
4705
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
4706
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
4707
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
4708
+ actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4709
+ actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
4710
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
4711
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
4712
+ actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
4713
+ activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
4714
+ activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
4715
+ activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
4716
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4717
+ activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
4718
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
4719
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
4720
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4721
+ actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
4722
+ actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
4723
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4724
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4725
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
4726
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
4727
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
4728
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
4729
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
4730
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
4731
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4732
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
4733
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
4734
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
4735
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
4736
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
4737
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
4738
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
4739
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
4740
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
4741
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
4742
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
4743
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
4744
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
4745
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
4746
+
4747
+
4748
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms)
4749
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
4750
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (11.9ms)
4751
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (79.9ms)
4752
+
4753
+
4754
+ Started GET "/articles" for ::1 at 2015-10-03 18:32:52 +0200
4755
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
4756
+ Processing by ArticlesController#index as HTML
4757
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? LIMIT 1 [["remember_token", "nnpntrg9vOEC18QHQgmHlA"]]
4758
+ Adeia::Token Load (0.6ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
4759
+ Adeia::Group Load (0.7ms) SELECT "adeia_groups".* FROM "adeia_groups" INNER JOIN "adeia_group_users" ON "adeia_group_users"."group_id" = "adeia_groups"."id" WHERE "adeia_group_users"."user_id" = 1
4760
+ Completed 500 Internal Server Error in 89ms (ActiveRecord: 3.8ms)
4761
+
4762
+ Adeia::AccessDenied (You don't have access to this page !):
4763
+ /Users/khcr/Projets/Web/adeia/lib/adeia/authorization.rb:12:in `authorize!'
4764
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:61:in `authorize!'
4765
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_methods.rb:29:in `authorize_and_load_records!'
4766
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:16:in `load_resource_or_records_and_authorize'
4767
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:10:in `block in add_before_filter'
4768
+ activesupport (4.2.4) lib/active_support/callbacks.rb:448:in `instance_exec'
4769
+ activesupport (4.2.4) lib/active_support/callbacks.rb:448:in `block in make_lambda'
4770
+ activesupport (4.2.4) lib/active_support/callbacks.rb:164:in `call'
4771
+ activesupport (4.2.4) lib/active_support/callbacks.rb:164:in `block in halting'
4772
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `call'
4773
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `block in call'
4774
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `each'
4775
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `call'
4776
+ activesupport (4.2.4) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
4777
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
4778
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
4779
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
4780
+ actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
4781
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
4782
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
4783
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4784
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
4785
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4786
+ actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
4787
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4788
+ actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
4789
+ actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
4790
+ actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
4791
+ actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4792
+ actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
4793
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
4794
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
4795
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
4796
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
4797
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
4798
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
4799
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
4800
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
4801
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
4802
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
4803
+ actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4804
+ actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
4805
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
4806
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
4807
+ actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
4808
+ activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
4809
+ activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
4810
+ activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
4811
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4812
+ activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
4813
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
4814
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
4815
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4816
+ actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
4817
+ actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
4818
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4819
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4820
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
4821
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
4822
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
4823
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
4824
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
4825
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
4826
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4827
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
4828
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
4829
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
4830
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
4831
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
4832
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
4833
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
4834
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
4835
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
4836
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
4837
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
4838
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
4839
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
4840
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
4841
+
4842
+
4843
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.3ms)
4844
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
4845
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.1ms)
4846
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (86.2ms)
4847
+
4848
+
4849
+ Started GET "/articles" for ::1 at 2015-10-03 18:32:53 +0200
4850
+ Processing by ArticlesController#index as HTML
4851
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? LIMIT 1 [["remember_token", "nnpntrg9vOEC18QHQgmHlA"]]
4852
+ Adeia::Token Load (0.2ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
4853
+ Adeia::Group Load (0.1ms) SELECT "adeia_groups".* FROM "adeia_groups" INNER JOIN "adeia_group_users" ON "adeia_group_users"."group_id" = "adeia_groups"."id" WHERE "adeia_group_users"."user_id" = 1
4854
+ Completed 500 Internal Server Error in 4ms (ActiveRecord: 0.5ms)
4855
+
4856
+ Adeia::AccessDenied (You don't have access to this page !):
4857
+ /Users/khcr/Projets/Web/adeia/lib/adeia/authorization.rb:12:in `authorize!'
4858
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:61:in `authorize!'
4859
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_methods.rb:29:in `authorize_and_load_records!'
4860
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:16:in `load_resource_or_records_and_authorize'
4861
+ /Users/khcr/Projets/Web/adeia/lib/adeia/controller_resource.rb:10:in `block in add_before_filter'
4862
+ activesupport (4.2.4) lib/active_support/callbacks.rb:448:in `instance_exec'
4863
+ activesupport (4.2.4) lib/active_support/callbacks.rb:448:in `block in make_lambda'
4864
+ activesupport (4.2.4) lib/active_support/callbacks.rb:164:in `call'
4865
+ activesupport (4.2.4) lib/active_support/callbacks.rb:164:in `block in halting'
4866
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `call'
4867
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `block in call'
4868
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `each'
4869
+ activesupport (4.2.4) lib/active_support/callbacks.rb:504:in `call'
4870
+ activesupport (4.2.4) lib/active_support/callbacks.rb:92:in `__run_callbacks__'
4871
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_process_action_callbacks'
4872
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
4873
+ actionpack (4.2.4) lib/abstract_controller/callbacks.rb:19:in `process_action'
4874
+ actionpack (4.2.4) lib/action_controller/metal/rescue.rb:29:in `process_action'
4875
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
4876
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `block in instrument'
4877
+ activesupport (4.2.4) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4878
+ activesupport (4.2.4) lib/active_support/notifications.rb:164:in `instrument'
4879
+ actionpack (4.2.4) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4880
+ actionpack (4.2.4) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
4881
+ activerecord (4.2.4) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4882
+ actionpack (4.2.4) lib/abstract_controller/base.rb:137:in `process'
4883
+ actionview (4.2.4) lib/action_view/rendering.rb:30:in `process'
4884
+ actionpack (4.2.4) lib/action_controller/metal.rb:196:in `dispatch'
4885
+ actionpack (4.2.4) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4886
+ actionpack (4.2.4) lib/action_controller/metal.rb:237:in `block in action'
4887
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `call'
4888
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:76:in `dispatch'
4889
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:45:in `serve'
4890
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:43:in `block in serve'
4891
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `each'
4892
+ actionpack (4.2.4) lib/action_dispatch/journey/router.rb:30:in `serve'
4893
+ actionpack (4.2.4) lib/action_dispatch/routing/route_set.rb:821:in `call'
4894
+ rack (1.6.4) lib/rack/etag.rb:24:in `call'
4895
+ rack (1.6.4) lib/rack/conditionalget.rb:25:in `call'
4896
+ rack (1.6.4) lib/rack/head.rb:13:in `call'
4897
+ actionpack (4.2.4) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4898
+ actionpack (4.2.4) lib/action_dispatch/middleware/flash.rb:260:in `call'
4899
+ rack (1.6.4) lib/rack/session/abstract/id.rb:225:in `context'
4900
+ rack (1.6.4) lib/rack/session/abstract/id.rb:220:in `call'
4901
+ actionpack (4.2.4) lib/action_dispatch/middleware/cookies.rb:560:in `call'
4902
+ activerecord (4.2.4) lib/active_record/query_cache.rb:36:in `call'
4903
+ activerecord (4.2.4) lib/active_record/connection_adapters/abstract/connection_pool.rb:653:in `call'
4904
+ activerecord (4.2.4) lib/active_record/migration.rb:377:in `call'
4905
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4906
+ activesupport (4.2.4) lib/active_support/callbacks.rb:88:in `__run_callbacks__'
4907
+ activesupport (4.2.4) lib/active_support/callbacks.rb:778:in `_run_call_callbacks'
4908
+ activesupport (4.2.4) lib/active_support/callbacks.rb:81:in `run_callbacks'
4909
+ actionpack (4.2.4) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4910
+ actionpack (4.2.4) lib/action_dispatch/middleware/reloader.rb:73:in `call'
4911
+ actionpack (4.2.4) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
4912
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4913
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4914
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
4915
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
4916
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
4917
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
4918
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
4919
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
4920
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4921
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
4922
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
4923
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
4924
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
4925
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
4926
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
4927
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
4928
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
4929
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
4930
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
4931
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
4932
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
4933
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
4934
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
4935
+
4936
+
4937
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
4938
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
4939
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
4940
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (66.9ms)
4941
+
4942
+
4943
+ Started GET "/articles" for ::1 at 2015-10-03 18:33:05 +0200
4944
+ Processing by ArticlesController#index as HTML
4945
+ Rendered articles/index.html.erb within layouts/application (4.5ms)
4946
+ Completed 500 Internal Server Error in 12ms (ActiveRecord: 0.0ms)
4947
+
4948
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
4949
+ 13: </thead>
4950
+ 14:
4951
+ 15: <tbody>
4952
+ 16: <% @articles.each do |article| %>
4953
+ 17: <tr>
4954
+ 18: <td><%= article.title %></td>
4955
+ 19: <td><%= article.content %></td>
4956
+ app/views/articles/index.html.erb:16:in `_app_views_articles_index_html_erb___1550111452241964810_70157212496900'
4957
+
4958
+
4959
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.2ms)
4960
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms)
4961
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
4962
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (72.4ms)
4963
+
4964
+
4965
+ Started GET "/articles" for ::1 at 2015-10-03 18:33:06 +0200
4966
+ Processing by ArticlesController#index as HTML
4967
+ Rendered articles/index.html.erb within layouts/application (1.6ms)
4968
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
4969
+
4970
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
4971
+ 13: </thead>
4972
+ 14:
4973
+ 15: <tbody>
4974
+ 16: <% @articles.each do |article| %>
4975
+ 17: <tr>
4976
+ 18: <td><%= article.title %></td>
4977
+ 19: <td><%= article.content %></td>
4978
+ app/views/articles/index.html.erb:16:in `_app_views_articles_index_html_erb___1550111452241964810_70157212496900'
4979
+
4980
+
4981
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (12.1ms)
4982
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
4983
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
4984
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (73.6ms)
4985
+
4986
+
4987
+ Started GET "/articles" for ::1 at 2015-10-03 18:33:07 +0200
4988
+ Processing by ArticlesController#index as HTML
4989
+ Rendered articles/index.html.erb within layouts/application (1.9ms)
4990
+ Completed 500 Internal Server Error in 7ms (ActiveRecord: 0.0ms)
4991
+
4992
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
4993
+ 13: </thead>
4994
+ 14:
4995
+ 15: <tbody>
4996
+ 16: <% @articles.each do |article| %>
4997
+ 17: <tr>
4998
+ 18: <td><%= article.title %></td>
4999
+ 19: <td><%= article.content %></td>
5000
+ app/views/articles/index.html.erb:16:in `_app_views_articles_index_html_erb___1550111452241964810_70157212496900'
5001
+
5002
+
5003
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.1ms)
5004
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.6ms)
5005
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
5006
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (75.8ms)
5007
+
5008
+
5009
+ Started GET "/articles" for ::1 at 2015-10-03 18:33:07 +0200
5010
+ Processing by ArticlesController#index as HTML
5011
+ Rendered articles/index.html.erb within layouts/application (1.6ms)
5012
+ Completed 500 Internal Server Error in 6ms (ActiveRecord: 0.0ms)
5013
+
5014
+ ActionView::Template::Error (undefined method `each' for nil:NilClass):
5015
+ 13: </thead>
5016
+ 14:
5017
+ 15: <tbody>
5018
+ 16: <% @articles.each do |article| %>
5019
+ 17: <tr>
5020
+ 18: <td><%= article.title %></td>
5021
+ 19: <td><%= article.content %></td>
5022
+ app/views/articles/index.html.erb:16:in `_app_views_articles_index_html_erb___1550111452241964810_70157212496900'
5023
+
5024
+
5025
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.7ms)
5026
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.6ms)
5027
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
5028
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (61.7ms)
5029
+
5030
+
5031
+ Started GET "/articles" for ::1 at 2015-10-03 18:33:10 +0200
5032
+ Processing by ArticlesController#index as HTML
5033
+ Article Load (1.0ms) SELECT "articles".* FROM "articles"
5034
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5035
+ Rendered articles/index.html.erb within layouts/application (26.7ms)
5036
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? LIMIT 1 [["remember_token", "nnpntrg9vOEC18QHQgmHlA"]]
5037
+ Completed 200 OK in 286ms (Views: 280.5ms | ActiveRecord: 2.6ms)
5038
+
5039
+
5040
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-03 18:33:11 +0200
5041
+
5042
+
5043
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-03 18:33:11 +0200
5044
+
5045
+
5046
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-03 18:33:11 +0200
5047
+
5048
+
5049
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-03 18:33:11 +0200
5050
+
5051
+
5052
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-03 18:33:11 +0200
5053
+
5054
+
5055
+ Started GET "/logout" for ::1 at 2015-10-03 18:33:12 +0200
5056
+
5057
+ ActionController::RoutingError (No route matches [GET] "/logout"):
5058
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
5059
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5060
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
5061
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
5062
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5063
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
5064
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
5065
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
5066
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5067
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
5068
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
5069
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
5070
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
5071
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
5072
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
5073
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
5074
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
5075
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
5076
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
5077
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
5078
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
5079
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
5080
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
5081
+
5082
+
5083
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
5084
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
5085
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
5086
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.0ms)
5087
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
5088
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.5ms)
5089
+
5090
+
5091
+ Started GET "/logout" for ::1 at 2015-10-03 18:33:16 +0200
5092
+
5093
+ ActionController::RoutingError (No route matches [GET] "/logout"):
5094
+ actionpack (4.2.4) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
5095
+ actionpack (4.2.4) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5096
+ railties (4.2.4) lib/rails/rack/logger.rb:38:in `call_app'
5097
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `block in call'
5098
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5099
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:26:in `tagged'
5100
+ activesupport (4.2.4) lib/active_support/tagged_logging.rb:68:in `tagged'
5101
+ railties (4.2.4) lib/rails/rack/logger.rb:20:in `call'
5102
+ actionpack (4.2.4) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5103
+ rack (1.6.4) lib/rack/methodoverride.rb:22:in `call'
5104
+ rack (1.6.4) lib/rack/runtime.rb:18:in `call'
5105
+ activesupport (4.2.4) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
5106
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
5107
+ actionpack (4.2.4) lib/action_dispatch/middleware/static.rb:116:in `call'
5108
+ rack (1.6.4) lib/rack/sendfile.rb:113:in `call'
5109
+ railties (4.2.4) lib/rails/engine.rb:518:in `call'
5110
+ railties (4.2.4) lib/rails/application.rb:165:in `call'
5111
+ rack (1.6.4) lib/rack/lock.rb:17:in `call'
5112
+ rack (1.6.4) lib/rack/content_length.rb:15:in `call'
5113
+ rack (1.6.4) lib/rack/handler/webrick.rb:88:in `service'
5114
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
5115
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
5116
+ /Users/khcr/.rvm/rubies/ruby-2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
5117
+
5118
+
5119
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
5120
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
5121
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.0ms)
5122
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
5123
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
5124
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (98.6ms)
5125
+
5126
+
5127
+ Started GET "/articles" for ::1 at 2015-10-03 18:34:56 +0200
5128
+ Processing by ArticlesController#index as HTML
5129
+ Article Load (1.2ms) SELECT "articles".* FROM "articles"
5130
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5131
+ Rendered articles/index.html.erb within layouts/application (17.9ms)
5132
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? LIMIT 1 [["remember_token", "nnpntrg9vOEC18QHQgmHlA"]]
5133
+ Completed 200 OK in 54ms (Views: 47.9ms | ActiveRecord: 2.9ms)
5134
+
5135
+
5136
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-03 18:34:56 +0200
5137
+
5138
+
5139
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-03 18:34:56 +0200
5140
+
5141
+
5142
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-03 18:34:56 +0200
5143
+
5144
+
5145
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-03 18:34:56 +0200
5146
+
5147
+
5148
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-03 18:34:56 +0200
5149
+
5150
+
5151
+ Started GET "/logout" for ::1 at 2015-10-03 18:34:57 +0200
5152
+ Processing by SessionsController#destroy as HTML
5153
+ Redirected to
5154
+ Completed 500 Internal Server Error in 1ms (ActiveRecord: 0.0ms)
5155
+
5156
+ TypeError (no implicit conversion of Symbol into String):
5157
+ app/controllers/sessions_controller.rb:19:in `destroy'
5158
+
5159
+
5160
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms)
5161
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
5162
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
5163
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (59.6ms)
5164
+
5165
+
5166
+ Started GET "/logout" for ::1 at 2015-10-03 18:35:13 +0200
5167
+ Processing by SessionsController#destroy as HTML
5168
+ Redirected to http://localhost:3000/
5169
+ Completed 302 Found in 32ms (ActiveRecord: 0.0ms)
5170
+
5171
+
5172
+ Started GET "/" for ::1 at 2015-10-03 18:35:13 +0200
5173
+ Processing by ArticlesController#index as HTML
5174
+ Article Load (0.5ms) SELECT "articles".* FROM "articles"
5175
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5176
+ Rendered articles/index.html.erb within layouts/application (24.9ms)
5177
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5178
+ Completed 200 OK in 59ms (Views: 52.5ms | ActiveRecord: 2.1ms)
5179
+
5180
+
5181
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-03 18:35:13 +0200
5182
+
5183
+
5184
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-03 18:35:13 +0200
5185
+
5186
+
5187
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-03 18:35:13 +0200
5188
+
5189
+
5190
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-03 18:35:13 +0200
5191
+
5192
+
5193
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-03 18:35:13 +0200
5194
+
5195
+
5196
+ Started GET "/" for ::1 at 2015-10-03 18:35:36 +0200
5197
+ Processing by ArticlesController#index as HTML
5198
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5199
+ Adeia::Token Load (0.9ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
5200
+ Completed 500 Internal Server Error in 22ms (ActiveRecord: 1.9ms)
5201
+
5202
+ Adeia::LoginRequired (Please login before visiting this page !):
5203
+ app/controllers/articles_controller.rb:7:in `index'
5204
+
5205
+
5206
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.1ms)
5207
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
5208
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
5209
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (58.4ms)
5210
+
5211
+
5212
+ Started GET "/" for ::1 at 2015-10-03 18:35:37 +0200
5213
+ Processing by ArticlesController#index as HTML
5214
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5215
+ Adeia::Token Load (0.2ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
5216
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.3ms)
5217
+
5218
+ Adeia::LoginRequired (Please login before visiting this page !):
5219
+ app/controllers/articles_controller.rb:7:in `index'
5220
+
5221
+
5222
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms)
5223
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.8ms)
5224
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
5225
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (71.7ms)
5226
+
5227
+
5228
+ Started GET "/" for ::1 at 2015-10-03 18:35:37 +0200
5229
+ Processing by ArticlesController#index as HTML
5230
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5231
+ Adeia::Token Load (0.2ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
5232
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.4ms)
5233
+
5234
+ Adeia::LoginRequired (Please login before visiting this page !):
5235
+ app/controllers/articles_controller.rb:7:in `index'
5236
+
5237
+
5238
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.9ms)
5239
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms)
5240
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
5241
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.1ms)
5242
+
5243
+
5244
+ Started GET "/" for ::1 at 2015-10-03 18:35:38 +0200
5245
+ Processing by ArticlesController#index as HTML
5246
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5247
+ Adeia::Token Load (0.2ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
5248
+ Completed 500 Internal Server Error in 3ms (ActiveRecord: 0.5ms)
5249
+
5250
+ Adeia::LoginRequired (Please login before visiting this page !):
5251
+ app/controllers/articles_controller.rb:7:in `index'
5252
+
5253
+
5254
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.6ms)
5255
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.7ms)
5256
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
5257
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.3ms)
5258
+
5259
+
5260
+ Started GET "/" for ::1 at 2015-10-03 18:35:38 +0200
5261
+ Processing by ArticlesController#index as HTML
5262
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5263
+ Adeia::Token Load (0.3ms) SELECT "adeia_tokens".* FROM "adeia_tokens" WHERE "adeia_tokens"."token" IS NULL LIMIT 1
5264
+ Completed 500 Internal Server Error in 5ms (ActiveRecord: 0.6ms)
5265
+
5266
+ Adeia::LoginRequired (Please login before visiting this page !):
5267
+ app/controllers/articles_controller.rb:7:in `index'
5268
+
5269
+
5270
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
5271
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
5272
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
5273
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.1ms)
5274
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
5275
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5276
+  (0.2ms)  SELECT sql
5277
+ FROM sqlite_master
5278
+ WHERE name='index_adeia_action_permissions_on_permission_id' AND type='index'
5279
+ UNION ALL
5280
+ SELECT sql
5281
+ FROM sqlite_temp_master
5282
+ WHERE name='index_adeia_action_permissions_on_permission_id' AND type='index'
5283
+ 
5284
+  (0.1ms) SELECT sql
5285
+ FROM sqlite_master
5286
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5287
+ UNION ALL
5288
+ SELECT sql
5289
+ FROM sqlite_temp_master
5290
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5291
+
5292
+  (0.2ms)  SELECT sql
5293
+ FROM sqlite_master
5294
+ WHERE name='index_adeia_group_users_on_user_id' AND type='index'
5295
+ UNION ALL
5296
+ SELECT sql
5297
+ FROM sqlite_temp_master
5298
+ WHERE name='index_adeia_group_users_on_user_id' AND type='index'
5299
+ 
5300
+  (0.1ms) SELECT sql
5301
+ FROM sqlite_master
5302
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5303
+ UNION ALL
5304
+ SELECT sql
5305
+ FROM sqlite_temp_master
5306
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5307
+
5308
+  (0.1ms)  SELECT sql
5309
+ FROM sqlite_master
5310
+ WHERE name='index_adeia_permissions_on_element_id' AND type='index'
5311
+ UNION ALL
5312
+ SELECT sql
5313
+ FROM sqlite_temp_master
5314
+ WHERE name='index_adeia_permissions_on_element_id' AND type='index'
5315
+ 
5316
+  (0.1ms) SELECT sql
5317
+ FROM sqlite_master
5318
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5319
+ UNION ALL
5320
+ SELECT sql
5321
+ FROM sqlite_temp_master
5322
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5323
+
5324
+  (0.1ms)  SELECT sql
5325
+ FROM sqlite_master
5326
+ WHERE name='index_adeia_tokens_on_permission_id' AND type='index'
5327
+ UNION ALL
5328
+ SELECT sql
5329
+ FROM sqlite_temp_master
5330
+ WHERE name='index_adeia_tokens_on_permission_id' AND type='index'
5331
+ 
5332
+  (0.5ms) SELECT sql
5333
+ FROM sqlite_master
5334
+ WHERE name='index_articles_on_user_id' AND type='index'
5335
+ UNION ALL
5336
+ SELECT sql
5337
+ FROM sqlite_temp_master
5338
+ WHERE name='index_articles_on_user_id' AND type='index'
5339
+
5340
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
5341
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5342
+  (0.2ms)  SELECT sql
5343
+ FROM sqlite_master
5344
+ WHERE name='index_adeia_action_permissions_on_permission_id' AND type='index'
5345
+ UNION ALL
5346
+ SELECT sql
5347
+ FROM sqlite_temp_master
5348
+ WHERE name='index_adeia_action_permissions_on_permission_id' AND type='index'
5349
+ 
5350
+  (0.1ms) SELECT sql
5351
+ FROM sqlite_master
5352
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5353
+ UNION ALL
5354
+ SELECT sql
5355
+ FROM sqlite_temp_master
5356
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5357
+
5358
+  (0.1ms)  SELECT sql
5359
+ FROM sqlite_master
5360
+ WHERE name='index_adeia_group_users_on_user_id' AND type='index'
5361
+ UNION ALL
5362
+ SELECT sql
5363
+ FROM sqlite_temp_master
5364
+ WHERE name='index_adeia_group_users_on_user_id' AND type='index'
5365
+ 
5366
+  (0.1ms) SELECT sql
5367
+ FROM sqlite_master
5368
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5369
+ UNION ALL
5370
+ SELECT sql
5371
+ FROM sqlite_temp_master
5372
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5373
+
5374
+  (0.2ms)  SELECT sql
5375
+ FROM sqlite_master
5376
+ WHERE name='index_adeia_permissions_on_element_id' AND type='index'
5377
+ UNION ALL
5378
+ SELECT sql
5379
+ FROM sqlite_temp_master
5380
+ WHERE name='index_adeia_permissions_on_element_id' AND type='index'
5381
+ 
5382
+  (0.1ms) SELECT sql
5383
+ FROM sqlite_master
5384
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5385
+ UNION ALL
5386
+ SELECT sql
5387
+ FROM sqlite_temp_master
5388
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5389
+
5390
+  (0.1ms)  SELECT sql
5391
+ FROM sqlite_master
5392
+ WHERE name='index_adeia_tokens_on_permission_id' AND type='index'
5393
+ UNION ALL
5394
+ SELECT sql
5395
+ FROM sqlite_temp_master
5396
+ WHERE name='index_adeia_tokens_on_permission_id' AND type='index'
5397
+ 
5398
+  (0.1ms) SELECT sql
5399
+ FROM sqlite_master
5400
+ WHERE name='index_articles_on_user_id' AND type='index'
5401
+ UNION ALL
5402
+ SELECT sql
5403
+ FROM sqlite_temp_master
5404
+ WHERE name='index_articles_on_user_id' AND type='index'
5405
+
5406
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5407
+  (1.9ms) select sqlite_version(*)
5408
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5409
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5410
+ Migrating to CreateUsers (20151012185720)
5411
+  (0.1ms) begin transaction
5412
+  (0.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "password_digest" varchar, "remember_token" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5413
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151012185720"]]
5414
+  (1.0ms) commit transaction
5415
+ Migrating to CreateArticles (20151012185726)
5416
+  (0.1ms) begin transaction
5417
+  (0.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5418
+  (0.3ms) CREATE INDEX "index_articles_on_user_id" ON "articles" ("user_id")
5419
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151012185726"]]
5420
+  (1.2ms) commit transaction
5421
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
5422
+  (0.2ms)  SELECT sql
5423
+ FROM sqlite_master
5424
+ WHERE name='index_articles_on_user_id' AND type='index'
5425
+ UNION ALL
5426
+ SELECT sql
5427
+ FROM sqlite_temp_master
5428
+ WHERE name='index_articles_on_user_id' AND type='index'
5429
+ 
5430
+ User Load (2.6ms) SELECT "users".* FROM "users"
5431
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."name" = ? LIMIT 1 [["name", ""]]
5432
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" = ? LIMIT 1 [["remember_token", "sadsad"]]
5433
+
5434
+
5435
+ Started GET "/" for ::1 at 2015-10-12 21:03:21 +0200
5436
+ ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations"
5437
+ Processing by ArticlesController#index as HTML
5438
+ User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5439
+ Article Load (0.7ms) SELECT "articles".* FROM "articles"
5440
+ Rendered articles/index.html.erb within layouts/application (16.9ms)
5441
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5442
+ Completed 200 OK in 318ms (Views: 284.2ms | ActiveRecord: 2.0ms)
5443
+
5444
+
5445
+ Started GET "/articles" for ::1 at 2015-10-12 21:03:26 +0200
5446
+ Processing by ArticlesController#index as HTML
5447
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5448
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
5449
+ Rendered articles/index.html.erb within layouts/application (1.2ms)
5450
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5451
+ Completed 200 OK in 37ms (Views: 35.4ms | ActiveRecord: 0.4ms)
5452
+
5453
+
5454
+ Started GET "/articles" for ::1 at 2015-10-12 21:03:28 +0200
5455
+ Processing by ArticlesController#index as HTML
5456
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5457
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
5458
+ Rendered articles/index.html.erb within layouts/application (1.1ms)
5459
+ CACHE (0.0ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5460
+ Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.4ms)
5461
+
5462
+
5463
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-12 21:03:28 +0200
5464
+
5465
+
5466
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-12 21:03:28 +0200
5467
+
5468
+
5469
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-12 21:03:28 +0200
5470
+
5471
+
5472
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-12 21:03:28 +0200
5473
+
5474
+
5475
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-12 21:03:28 +0200
5476
+
5477
+
5478
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:31 +0200
5479
+ Processing by ArticlesController#index as HTML
5480
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5481
+ Completed 404 Not Found in 14ms (ActiveRecord: 1.5ms)
5482
+
5483
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5484
+ app/controllers/articles_controller.rb:7:in `index'
5485
+
5486
+
5487
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.2ms)
5488
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.2ms)
5489
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
5490
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (72.3ms)
5491
+
5492
+
5493
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:32 +0200
5494
+ Processing by ArticlesController#index as HTML
5495
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5496
+ Completed 404 Not Found in 2ms (ActiveRecord: 0.2ms)
5497
+
5498
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5499
+ app/controllers/articles_controller.rb:7:in `index'
5500
+
5501
+
5502
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.7ms)
5503
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.2ms)
5504
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
5505
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (62.8ms)
5506
+
5507
+
5508
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:32 +0200
5509
+ Processing by ArticlesController#index as HTML
5510
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5511
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5512
+
5513
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5514
+ app/controllers/articles_controller.rb:7:in `index'
5515
+
5516
+
5517
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (10.9ms)
5518
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (6.0ms)
5519
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
5520
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (86.1ms)
5521
+
5522
+
5523
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:32 +0200
5524
+ Processing by ArticlesController#index as HTML
5525
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5526
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5527
+
5528
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5529
+ app/controllers/articles_controller.rb:7:in `index'
5530
+
5531
+
5532
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.9ms)
5533
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
5534
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
5535
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.9ms)
5536
+
5537
+
5538
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:33 +0200
5539
+ Processing by ArticlesController#index as HTML
5540
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5541
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5542
+
5543
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5544
+ app/controllers/articles_controller.rb:7:in `index'
5545
+
5546
+
5547
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms)
5548
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.9ms)
5549
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
5550
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (64.8ms)
5551
+
5552
+
5553
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:33 +0200
5554
+ Processing by ArticlesController#index as HTML
5555
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5556
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5557
+
5558
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5559
+ app/controllers/articles_controller.rb:7:in `index'
5560
+
5561
+
5562
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.5ms)
5563
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
5564
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
5565
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.6ms)
5566
+
5567
+
5568
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:33 +0200
5569
+ Processing by ArticlesController#index as HTML
5570
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5571
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5572
+
5573
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5574
+ app/controllers/articles_controller.rb:7:in `index'
5575
+
5576
+
5577
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms)
5578
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms)
5579
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
5580
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (65.9ms)
5581
+
5582
+
5583
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:34 +0200
5584
+ Processing by ArticlesController#index as HTML
5585
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5586
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.2ms)
5587
+
5588
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5589
+ app/controllers/articles_controller.rb:7:in `index'
5590
+
5591
+
5592
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.2ms)
5593
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (5.0ms)
5594
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
5595
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (60.5ms)
5596
+
5597
+
5598
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:41 +0200
5599
+ Processing by ArticlesController#index as HTML
5600
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5601
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5602
+
5603
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5604
+ app/controllers/articles_controller.rb:7:in `index'
5605
+
5606
+
5607
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms)
5608
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.4ms)
5609
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.6ms)
5610
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (76.8ms)
5611
+
5612
+
5613
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:42 +0200
5614
+ Processing by ArticlesController#index as HTML
5615
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5616
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5617
+
5618
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5619
+ app/controllers/articles_controller.rb:7:in `index'
5620
+
5621
+
5622
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
5623
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
5624
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (2.3ms)
5625
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (61.6ms)
5626
+
5627
+
5628
+ Started GET "/articles" for ::1 at 2015-10-12 21:05:42 +0200
5629
+ Processing by ArticlesController#index as HTML
5630
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5631
+ Completed 404 Not Found in 1ms (ActiveRecord: 0.1ms)
5632
+
5633
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5634
+ app/controllers/articles_controller.rb:7:in `index'
5635
+
5636
+
5637
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.7ms)
5638
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.5ms)
5639
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
5640
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (73.5ms)
5641
+  (0.1ms) begin transaction
5642
+ SQL (1.8ms) INSERT INTO "users" ("name", "password_digest", "remember_token", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["name", "admin"], ["password_digest", "$2a$10$krq9YnW1zc1s1ws5zzxaJuBC4vSkvsvWFpacdOeUY6tpiBR9n0uaS"], ["remember_token", "PGnr7wlOOxCg69FHf7H4hQ"], ["created_at", "2015-10-12 19:06:00.492013"], ["updated_at", "2015-10-12 19:06:00.492013"]]
5643
+  (1.0ms) commit transaction
5644
+
5645
+
5646
+ Started GET "/articles" for ::1 at 2015-10-12 21:06:12 +0200
5647
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
5648
+ Processing by ArticlesController#index as HTML
5649
+ User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5650
+ Article Load (4.2ms) SELECT "articles".* FROM "articles"
5651
+ Rendered articles/index.html.erb within layouts/application (36.2ms)
5652
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5653
+ Completed 200 OK in 335ms (Views: 258.0ms | ActiveRecord: 6.0ms)
5654
+
5655
+
5656
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5657
+
5658
+
5659
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5660
+
5661
+
5662
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5663
+
5664
+
5665
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5666
+
5667
+
5668
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5669
+
5670
+
5671
+ Started GET "/articles" for ::1 at 2015-10-12 21:06:13 +0200
5672
+ Processing by ArticlesController#index as HTML
5673
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5674
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
5675
+ Rendered articles/index.html.erb within layouts/application (1.2ms)
5676
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5677
+ Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.5ms)
5678
+
5679
+
5680
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5681
+
5682
+
5683
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5684
+
5685
+
5686
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5687
+
5688
+
5689
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5690
+
5691
+
5692
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-12 21:06:13 +0200
5693
+
5694
+
5695
+ Started GET "/articles" for ::1 at 2015-10-12 21:06:14 +0200
5696
+ Processing by ArticlesController#index as HTML
5697
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5698
+ Article Load (0.2ms) SELECT "articles".* FROM "articles"
5699
+ Rendered articles/index.html.erb within layouts/application (1.3ms)
5700
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5701
+ Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.5ms)
5702
+
5703
+
5704
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5705
+
5706
+
5707
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5708
+
5709
+
5710
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5711
+
5712
+
5713
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5714
+
5715
+
5716
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5717
+
5718
+
5719
+ Started GET "/articles" for ::1 at 2015-10-12 21:06:14 +0200
5720
+ Processing by ArticlesController#index as HTML
5721
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5722
+ Article Load (0.1ms) SELECT "articles".* FROM "articles"
5723
+ Rendered articles/index.html.erb within layouts/application (1.0ms)
5724
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5725
+ Completed 200 OK in 35ms (Views: 33.7ms | ActiveRecord: 0.5ms)
5726
+
5727
+
5728
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5729
+
5730
+
5731
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5732
+
5733
+
5734
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5735
+
5736
+
5737
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5738
+
5739
+
5740
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5741
+
5742
+
5743
+ Started GET "/articles" for ::1 at 2015-10-12 21:06:14 +0200
5744
+ Processing by ArticlesController#index as HTML
5745
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5746
+ Article Load (0.3ms) SELECT "articles".* FROM "articles"
5747
+ Rendered articles/index.html.erb within layouts/application (1.4ms)
5748
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."remember_token" IS NULL LIMIT 1
5749
+ Completed 200 OK in 43ms (Views: 41.1ms | ActiveRecord: 0.7ms)
5750
+
5751
+
5752
+ Started GET "/assets/scaffold.self-83b741db49389dc7cfdf85bf7537a0219cce48e085c4116afc83d55c9af47c78.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5753
+
5754
+
5755
+ Started GET "/assets/sessions.self-b60acab5af8d245ed2b3012f77d11d8d207d8eada27756badaf4ef05770d60f6.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5756
+
5757
+
5758
+ Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5759
+
5760
+
5761
+ Started GET "/assets/sessions.self-19a187bec6cdb96d6de80a61c16c857c613536adf9138476bd367db38d282635.js?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5762
+
5763
+
5764
+ Started GET "/assets/application.self-8f06a73c35179188914ab50e057157639fce1401c1cdca640ac9cec33746fc5b.js?body=1" for ::1 at 2015-10-12 21:06:14 +0200
5765
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
5766
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5767
+  (0.2ms)  SELECT sql
5768
+ FROM sqlite_master
5769
+ WHERE name='index_articles_on_user_id' AND type='index'
5770
+ UNION ALL
5771
+ SELECT sql
5772
+ FROM sqlite_temp_master
5773
+ WHERE name='index_articles_on_user_id' AND type='index'
5774
+ 
5775
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5776
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5777
+  (0.3ms)  SELECT sql
5778
+ FROM sqlite_master
5779
+ WHERE name='index_articles_on_user_id' AND type='index'
5780
+ UNION ALL
5781
+ SELECT sql
5782
+ FROM sqlite_temp_master
5783
+ WHERE name='index_articles_on_user_id' AND type='index'
5784
+ 
5785
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5786
+  (0.1ms) select sqlite_version(*)
5787
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5788
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5789
+ Migrating to CreateUsers (20151012185720)
5790
+  (0.1ms) begin transaction
5791
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "password_digest" varchar, "remember_token" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5792
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151012185720"]]
5793
+  (1.0ms) commit transaction
5794
+ Migrating to CreateArticles (20151012185726)
5795
+  (0.1ms) begin transaction
5796
+  (0.6ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5797
+  (0.2ms) CREATE INDEX "index_articles_on_user_id" ON "articles" ("user_id")
5798
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151012185726"]]
5799
+  (1.0ms) commit transaction
5800
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5801
+  (0.2ms)  SELECT sql
5802
+ FROM sqlite_master
5803
+ WHERE name='index_articles_on_user_id' AND type='index'
5804
+ UNION ALL
5805
+ SELECT sql
5806
+ FROM sqlite_temp_master
5807
+ WHERE name='index_articles_on_user_id' AND type='index'
5808
+ 
5809
+  (5.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
5810
+  (0.1ms) select sqlite_version(*)
5811
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5812
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5813
+ Migrating to CreateAdeiaElements (20151003144041)
5814
+  (0.1ms) begin transaction
5815
+  (0.5ms) CREATE TABLE "adeia_elements" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5816
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003144041"]]
5817
+  (1.1ms) commit transaction
5818
+ Migrating to CreateAdeiaPermissions (20151003144208)
5819
+  (0.1ms) begin transaction
5820
+  (0.5ms) CREATE TABLE "adeia_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "owner_id" integer, "owner_type" varchar, "element_id" integer, "permission_type" integer, "read_right" boolean, "create_right" boolean, "update_right" boolean, "destroy_right" boolean, "resource_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5821
+  (0.2ms) CREATE INDEX "index_adeia_permissions_on_owner_type_and_owner_id" ON "adeia_permissions" ("owner_type", "owner_id")
5822
+  (0.1ms) SELECT sql
5823
+ FROM sqlite_master
5824
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5825
+ UNION ALL
5826
+ SELECT sql
5827
+ FROM sqlite_temp_master
5828
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5829
+
5830
+  (0.1ms) CREATE INDEX "index_adeia_permissions_on_element_id" ON "adeia_permissions" ("element_id")
5831
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003144208"]]
5832
+  (1.1ms) commit transaction
5833
+ Migrating to CreateAdeiaGroups (20151003144650)
5834
+  (0.1ms) begin transaction
5835
+  (0.4ms) CREATE TABLE "adeia_groups" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5836
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003144650"]]
5837
+  (0.9ms) commit transaction
5838
+ Migrating to CreateAdeiaGroupUsers (20151003144706)
5839
+  (0.1ms) begin transaction
5840
+  (0.5ms) CREATE TABLE "adeia_group_users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "group_id" integer, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5841
+  (0.2ms) CREATE INDEX "index_adeia_group_users_on_group_id" ON "adeia_group_users" ("group_id")
5842
+  (0.1ms)  SELECT sql
5843
+ FROM sqlite_master
5844
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5845
+ UNION ALL
5846
+ SELECT sql
5847
+ FROM sqlite_temp_master
5848
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5849
+ 
5850
+  (0.1ms) CREATE INDEX "index_adeia_group_users_on_user_id" ON "adeia_group_users" ("user_id")
5851
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003144706"]]
5852
+  (1.1ms) commit transaction
5853
+ Migrating to CreateAdeiaTokens (20151003150524)
5854
+  (0.1ms) begin transaction
5855
+  (0.4ms) CREATE TABLE "adeia_tokens" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "token" varchar, "is_valid" boolean, "permission_id" integer, "exp_at" date, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5856
+  (0.1ms) CREATE INDEX "index_adeia_tokens_on_permission_id" ON "adeia_tokens" ("permission_id")
5857
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003150524"]]
5858
+  (1.1ms) commit transaction
5859
+ Migrating to CreateAdeiaActions (20151003150747)
5860
+  (0.1ms) begin transaction
5861
+  (0.6ms) CREATE TABLE "adeia_actions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5862
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003150747"]]
5863
+  (5.3ms) commit transaction
5864
+ Migrating to CreateAdeiaActionPermissions (20151003150806)
5865
+  (0.1ms) begin transaction
5866
+  (0.6ms) CREATE TABLE "adeia_action_permissions" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "action_id" integer, "permission_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
5867
+  (0.1ms) CREATE INDEX "index_adeia_action_permissions_on_action_id" ON "adeia_action_permissions" ("action_id")
5868
+  (0.1ms)  SELECT sql
5869
+ FROM sqlite_master
5870
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5871
+ UNION ALL
5872
+ SELECT sql
5873
+ FROM sqlite_temp_master
5874
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5875
+ 
5876
+  (0.1ms) CREATE INDEX "index_adeia_action_permissions_on_permission_id" ON "adeia_action_permissions" ("permission_id")
5877
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151003150806"]]
5878
+  (1.2ms) commit transaction
5879
+ Migrating to CreateUsers (20151012185720)
5880
+  (0.1ms) begin transaction
5881
+  (0.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar, "password_digest" varchar, "remember_token" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5882
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151012185720"]]
5883
+  (0.8ms) commit transaction
5884
+ Migrating to CreateArticles (20151012185726)
5885
+  (0.1ms) begin transaction
5886
+  (0.4ms) CREATE TABLE "articles" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "title" varchar, "content" text, "user_id" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
5887
+  (0.2ms) CREATE INDEX "index_articles_on_user_id" ON "articles" ("user_id")
5888
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20151012185726"]]
5889
+  (1.3ms) commit transaction
5890
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
5891
+  (0.2ms)  SELECT sql
5892
+ FROM sqlite_master
5893
+ WHERE name='index_adeia_action_permissions_on_permission_id' AND type='index'
5894
+ UNION ALL
5895
+ SELECT sql
5896
+ FROM sqlite_temp_master
5897
+ WHERE name='index_adeia_action_permissions_on_permission_id' AND type='index'
5898
+ 
5899
+  (0.1ms) SELECT sql
5900
+ FROM sqlite_master
5901
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5902
+ UNION ALL
5903
+ SELECT sql
5904
+ FROM sqlite_temp_master
5905
+ WHERE name='index_adeia_action_permissions_on_action_id' AND type='index'
5906
+
5907
+  (0.2ms)  SELECT sql
5908
+ FROM sqlite_master
5909
+ WHERE name='index_adeia_group_users_on_user_id' AND type='index'
5910
+ UNION ALL
5911
+ SELECT sql
5912
+ FROM sqlite_temp_master
5913
+ WHERE name='index_adeia_group_users_on_user_id' AND type='index'
5914
+ 
5915
+  (0.1ms) SELECT sql
5916
+ FROM sqlite_master
5917
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5918
+ UNION ALL
5919
+ SELECT sql
5920
+ FROM sqlite_temp_master
5921
+ WHERE name='index_adeia_group_users_on_group_id' AND type='index'
5922
+
5923
+  (0.3ms)  SELECT sql
5924
+ FROM sqlite_master
5925
+ WHERE name='index_adeia_permissions_on_element_id' AND type='index'
5926
+ UNION ALL
5927
+ SELECT sql
5928
+ FROM sqlite_temp_master
5929
+ WHERE name='index_adeia_permissions_on_element_id' AND type='index'
5930
+ 
5931
+  (0.2ms) SELECT sql
5932
+ FROM sqlite_master
5933
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5934
+ UNION ALL
5935
+ SELECT sql
5936
+ FROM sqlite_temp_master
5937
+ WHERE name='index_adeia_permissions_on_owner_type_and_owner_id' AND type='index'
5938
+
5939
+  (0.2ms)  SELECT sql
5940
+ FROM sqlite_master
5941
+ WHERE name='index_adeia_tokens_on_permission_id' AND type='index'
5942
+ UNION ALL
5943
+ SELECT sql
5944
+ FROM sqlite_temp_master
5945
+ WHERE name='index_adeia_tokens_on_permission_id' AND type='index'
5946
+ 
5947
+  (0.1ms) SELECT sql
5948
+ FROM sqlite_master
5949
+ WHERE name='index_articles_on_user_id' AND type='index'
5950
+ UNION ALL
5951
+ SELECT sql
5952
+ FROM sqlite_temp_master
5953
+ WHERE name='index_articles_on_user_id' AND type='index'
5954
+
5955
+
5956
+
5957
+ Started GET "/articles" for ::1 at 2015-10-12 21:08:17 +0200
5958
+ ActiveRecord::SchemaMigration Load (0.8ms) SELECT "schema_migrations".* FROM "schema_migrations"
5959
+ Processing by ArticlesController#index as HTML
5960
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
5961
+ Completed 404 Not Found in 40ms (ActiveRecord: 1.3ms)
5962
+
5963
+ ActiveRecord::RecordNotFound (Couldn't find User with 'id'=1):
5964
+ app/controllers/articles_controller.rb:7:in `index'
5965
+
5966
+
5967
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms)
5968
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
5969
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.4ms)
5970
+ Rendered /Users/khcr/.rvm/gems/ruby-2.2.2/gems/actionpack-4.2.4/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (83.1ms)