nyauth 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +40 -0
- data/app/controllers/nyauth/reset_passwords_controller.rb +3 -0
- data/app/models/concerns/nyauth/confirmable.rb +2 -2
- data/app/models/concerns/nyauth/reset_password_ability.rb +3 -3
- data/app/services/nyauth/session_service.rb +2 -2
- data/config/locales/en.yml +7 -20
- data/config/locales/ja.yml +33 -0
- data/lib/generators/nyauth/templates/nyauth_install_initializer.rb +2 -0
- data/lib/nyauth/configuration.rb +4 -0
- data/lib/nyauth/engine.rb +0 -2
- data/lib/nyauth/version.rb +1 -1
- data/spec/dummy/app/views/layouts/application.html.erb +1 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1876 -0
- data/spec/dummy/log/test.log +5625 -0
- data/spec/dummy/tmp/pids/server.pid +1 -0
- data/spec/featrues/nyauth/reset_password_requests_spec.rb +0 -4
- data/spec/featrues/nyauth/sessions_spec.rb +2 -2
- data/spec/lib/generators/nyauth/install_generator_spec.rb +11 -2
- metadata +5 -6
- data/app/assets/javascripts/nyauth/application.js +0 -13
- data/app/assets/stylesheets/nyauth/application.css +0 -15
- data/config/application.yml +0 -1
- data/lib/tasks/nyauth_tasks.rake +0 -4
@@ -4329,3 +4329,1879 @@ Completed 302 Found in 6607ms (ActiveRecord: 0.6ms)
|
|
4329
4329
|
Started GET "/posts" for 127.0.0.1 at 2015-07-03 23:36:20 +0900
|
4330
4330
|
Processing by PostsController#index as HTML
|
4331
4331
|
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
4332
|
+
|
4333
|
+
|
4334
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 00:52:27 +0900
|
4335
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4336
|
+
Processing by PagesController#index as HTML
|
4337
|
+
Rendered pages/index.html.erb within layouts/application (1.8ms)
|
4338
|
+
Completed 200 OK in 284ms (Views: 283.7ms | ActiveRecord: 0.0ms)
|
4339
|
+
|
4340
|
+
|
4341
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 00:52:28 +0900
|
4342
|
+
Processing by PagesController#index as HTML
|
4343
|
+
Rendered pages/index.html.erb within layouts/application (0.0ms)
|
4344
|
+
Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
|
4345
|
+
|
4346
|
+
|
4347
|
+
Started DELETE "/session" for 127.0.0.1 at 2015-07-04 00:52:31 +0900
|
4348
|
+
Processing by Nyauth::SessionsController#destroy as HTML
|
4349
|
+
Parameters: {"authenticity_token"=>"Uh3RXY/7rZTTkyJp7PIN5CqCIYHJdujHpa8XYViX52wCC7cULSsg9wzmwSBFAAe8b86HA3T5P2d2tExNRnWCUg=="}
|
4350
|
+
Redirected to http://www.lvh.me:3000/session/new
|
4351
|
+
Completed 302 Found in 278ms (ActiveRecord: 0.0ms)
|
4352
|
+
|
4353
|
+
|
4354
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-07-04 00:52:31 +0900
|
4355
|
+
Processing by Nyauth::SessionsController#new as HTML
|
4356
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (17.7ms)
|
4357
|
+
Completed 200 OK in 45ms (Views: 44.7ms | ActiveRecord: 0.0ms)
|
4358
|
+
|
4359
|
+
|
4360
|
+
Started POST "/session" for 127.0.0.1 at 2015-07-04 00:52:32 +0900
|
4361
|
+
Processing by Nyauth::SessionsController#create as HTML
|
4362
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"98P1lU52kSMt9oemIiWu82Ykpc8j9EIPPERQ3TFx8ibQPMh1n49w2v2WIXry8ygkFFHW6b/l+Y+e2tfVJOinxw==", "session_service"=>{"email"=>"ppworks@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
4363
|
+
[1m[35mUser Load (0.8ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "ppworks@example.com"]]
|
4364
|
+
Completed 500 Internal Server Error in 41ms
|
4365
|
+
|
4366
|
+
ArgumentError (Secret should not be nil.):
|
4367
|
+
activesupport (4.2.0) lib/active_support/message_verifier.rb:31:in `initialize'
|
4368
|
+
activesupport (4.2.0) lib/active_support/message_encryptor.rb:51:in `new'
|
4369
|
+
activesupport (4.2.0) lib/active_support/message_encryptor.rb:51:in `initialize'
|
4370
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/lib/nyauth/encryptor.rb:12:in `new'
|
4371
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/lib/nyauth/encryptor.rb:12:in `initialize'
|
4372
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:141:in `new'
|
4373
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:141:in `block in instance'
|
4374
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:139:in `synchronize'
|
4375
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:139:in `instance'
|
4376
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/lib/nyauth/encryptor.rb:17:in `encrypt'
|
4377
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/concerns/nyauth/session_concern.rb:58:in `signed_in_session_object'
|
4378
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/concerns/nyauth/session_concern.rb:48:in `store_signed_in_session'
|
4379
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/concerns/nyauth/session_concern.rb:16:in `sign_in'
|
4380
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:13:in `create'
|
4381
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
4382
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
4383
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
4384
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
4385
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
4386
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
4387
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
4388
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
4389
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
4390
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
4391
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
4392
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
4393
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
4394
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
4395
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
4396
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
4397
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
4398
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
4399
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
4400
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
4401
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
4402
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
4403
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
4404
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
4405
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
4406
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
4407
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
4408
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
4409
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
4410
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
4411
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
4412
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
4413
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
4414
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
4415
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
4416
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
4417
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
4418
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
4419
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
4420
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
4421
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
4422
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
4423
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
4424
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
4425
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
4426
|
+
rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
|
4427
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
4428
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
4429
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
4430
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
4431
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
4432
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
4433
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
4434
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
4435
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
4436
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
4437
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
4438
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
4439
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
4440
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
4441
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
4442
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
4443
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
4444
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
4445
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
4446
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
4447
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
4448
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
4449
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
4450
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
4451
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
4452
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
4453
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
4454
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
4455
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
4456
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
4457
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
4458
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
4459
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
4460
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
4461
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
4462
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
4463
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
4464
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
4465
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
4466
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
4467
|
+
|
4468
|
+
|
4469
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
|
4470
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
4471
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
4472
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.9ms)
|
4473
|
+
|
4474
|
+
|
4475
|
+
Started POST "/session" for 127.0.0.1 at 2015-07-04 00:54:19 +0900
|
4476
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4477
|
+
Processing by Nyauth::SessionsController#create as HTML
|
4478
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"98P1lU52kSMt9oemIiWu82Ykpc8j9EIPPERQ3TFx8ibQPMh1n49w2v2WIXry8ygkFFHW6b/l+Y+e2tfVJOinxw==", "session_service"=>{"email"=>"ppworks@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
4479
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "ppworks@example.com"]]
|
4480
|
+
Redirected to http://www.lvh.me:3000/
|
4481
|
+
Completed 302 Found in 283ms (ActiveRecord: 0.4ms)
|
4482
|
+
|
4483
|
+
|
4484
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 00:54:20 +0900
|
4485
|
+
Processing by PagesController#index as HTML
|
4486
|
+
Rendered pages/index.html.erb within layouts/application (1.0ms)
|
4487
|
+
Completed 200 OK in 124ms (Views: 123.8ms | ActiveRecord: 0.0ms)
|
4488
|
+
|
4489
|
+
|
4490
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for 127.0.0.1 at 2015-07-04 00:54:20 +0900
|
4491
|
+
|
4492
|
+
|
4493
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for 127.0.0.1 at 2015-07-04 00:54:20 +0900
|
4494
|
+
|
4495
|
+
|
4496
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for 127.0.0.1 at 2015-07-04 00:54:20 +0900
|
4497
|
+
|
4498
|
+
|
4499
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for 127.0.0.1 at 2015-07-04 00:54:20 +0900
|
4500
|
+
|
4501
|
+
|
4502
|
+
Started DELETE "/session" for 127.0.0.1 at 2015-07-04 00:58:09 +0900
|
4503
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4504
|
+
Processing by Nyauth::SessionsController#destroy as HTML
|
4505
|
+
Parameters: {"authenticity_token"=>"kLedoB/0ohYfBWiPoGoAOL558IMF3pdPgBpcW3jCGfW3SKBAzg1D789lzlNwvIbvzAyDpZnPLM8ihNtTbVtMFA=="}
|
4506
|
+
Redirected to http://www.lvh.me:3000/session/new
|
4507
|
+
Completed 302 Found in 218ms (ActiveRecord: 0.0ms)
|
4508
|
+
|
4509
|
+
|
4510
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-07-04 00:58:09 +0900
|
4511
|
+
Processing by Nyauth::SessionsController#new as HTML
|
4512
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (18.8ms)
|
4513
|
+
Completed 200 OK in 148ms (Views: 147.3ms | ActiveRecord: 0.0ms)
|
4514
|
+
|
4515
|
+
|
4516
|
+
Started POST "/session" for 127.0.0.1 at 2015-07-04 00:58:13 +0900
|
4517
|
+
Processing by Nyauth::SessionsController#create as HTML
|
4518
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"manSUyY+LlTUKObqm7leC7+HQZUP2y0eqpq4CKzc4kZpiIvkm6EXxwbwQYXVOQ5Q3/hpY0t1zjVjRUDkcboDwA==", "session_service"=>{"email"=>"ppworks@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
4519
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "ppworks@example.com"]]
|
4520
|
+
Redirected to http://www.lvh.me:3000/
|
4521
|
+
Completed 302 Found in 27ms (ActiveRecord: 0.6ms)
|
4522
|
+
|
4523
|
+
|
4524
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 00:58:13 +0900
|
4525
|
+
Processing by PagesController#index as HTML
|
4526
|
+
Rendered pages/index.html.erb within layouts/application (0.3ms)
|
4527
|
+
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
|
4528
|
+
|
4529
|
+
|
4530
|
+
Started DELETE "/session" for 127.0.0.1 at 2015-07-04 00:58:15 +0900
|
4531
|
+
Processing by Nyauth::SessionsController#destroy as HTML
|
4532
|
+
Parameters: {"authenticity_token"=>"xZkRXMTMjBFFWkG2SFzIqEtHnNuCimwyGZOQAhzpBdE1uEjreVO1gpeC5tkG3JjzKzi0LcYkjxnQTGjuwY/kVw=="}
|
4533
|
+
Redirected to http://www.lvh.me:3000/session/new
|
4534
|
+
Completed 302 Found in 11ms (ActiveRecord: 0.0ms)
|
4535
|
+
|
4536
|
+
|
4537
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-07-04 00:58:15 +0900
|
4538
|
+
Processing by Nyauth::SessionsController#new as HTML
|
4539
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (8.1ms)
|
4540
|
+
Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms)
|
4541
|
+
|
4542
|
+
|
4543
|
+
Started GET "/registration/new" for 127.0.0.1 at 2015-07-04 00:58:20 +0900
|
4544
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
4545
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.erb within layouts/application (9.0ms)
|
4546
|
+
Completed 200 OK in 31ms (Views: 30.0ms | ActiveRecord: 0.0ms)
|
4547
|
+
|
4548
|
+
|
4549
|
+
Started POST "/registration" for 127.0.0.1 at 2015-07-04 00:58:24 +0900
|
4550
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
4551
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"exFx0N7ZRQuIz1f0uYFUBXj2/smpPoSPyGKoOtdQZUb3VIludZScfkNxxAYaNYNrlEUrodG/HkL9eWX8LxTWew==", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
4552
|
+
[1m[36m (0.5ms)[0m [1mbegin transaction[0m
|
4553
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4554
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.erb within layouts/application (7.4ms)
|
4555
|
+
Completed 200 OK in 44ms (Views: 25.0ms | ActiveRecord: 0.5ms)
|
4556
|
+
|
4557
|
+
|
4558
|
+
Started POST "/registration" for 127.0.0.1 at 2015-07-04 00:58:36 +0900
|
4559
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
4560
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"olljruV+bOM7mfcKWc8p72OGH4R0CoXN70wppMmA2rkuHJsQTjO1lvAnZPj6e/6BjzXK7AyLHwDaV+RiMcRphA==", "user"=>{"email"=>"hoge@example.tokyo", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
4561
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4562
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "hoge@example.tokyo"], ["password_salt", "982eb80894fbe5c9230c68d23f19c44b5c998b0be54c1dacad9f9d70e6cb555ecdbd523c37205b539e57af3df3d85359f4f401339b21cba8fa1f3050573d91c17278c33065866cbbf7637e4bc773c5471ebc40ce7c763afbee4aaffde848eeabe298f11ef9b1628b59f123f6764298310390225958059996a45cfcf33842854d"], ["password_digest", "3d33e80419ad7ab4fd16b621d975835668efd05ddc63248a4d568ecb1f219691"], ["created_at", "2015-07-03 15:58:36.298012"], ["updated_at", "2015-07-03 15:58:36.298012"]]
|
4563
|
+
[1m[36m (4.5ms)[0m [1mcommit transaction[0m
|
4564
|
+
Redirected to http://www.lvh.me:3000/
|
4565
|
+
Completed 302 Found in 18ms (ActiveRecord: 5.3ms)
|
4566
|
+
|
4567
|
+
|
4568
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 00:58:36 +0900
|
4569
|
+
Processing by PagesController#index as HTML
|
4570
|
+
Rendered pages/index.html.erb within layouts/application (0.1ms)
|
4571
|
+
Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 0.0ms)
|
4572
|
+
|
4573
|
+
|
4574
|
+
Started DELETE "/session" for 127.0.0.1 at 2015-07-04 00:58:38 +0900
|
4575
|
+
Processing by Nyauth::SessionsController#destroy as HTML
|
4576
|
+
Parameters: {"authenticity_token"=>"0hnxidO8iUmmApj1orc8Cldxo3u2qssiDXmp2fNSJE5eXAk3ePFQPG28CwcBA+tku8J2E84rUe84YmQfCxaXcw=="}
|
4577
|
+
Redirected to http://www.lvh.me:3000/session/new
|
4578
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
|
4579
|
+
|
4580
|
+
|
4581
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-07-04 00:58:38 +0900
|
4582
|
+
Processing by Nyauth::SessionsController#new as HTML
|
4583
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (8.9ms)
|
4584
|
+
Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
4585
|
+
|
4586
|
+
|
4587
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 11:24:41 +0900
|
4588
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4589
|
+
Processing by PagesController#index as HTML
|
4590
|
+
Rendered pages/index.html.erb within layouts/application (1.5ms)
|
4591
|
+
Completed 200 OK in 254ms (Views: 253.4ms | ActiveRecord: 0.0ms)
|
4592
|
+
|
4593
|
+
|
4594
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 11:24:42 +0900
|
4595
|
+
Processing by PagesController#index as HTML
|
4596
|
+
Rendered pages/index.html.erb within layouts/application (0.0ms)
|
4597
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
4598
|
+
|
4599
|
+
|
4600
|
+
Started GET "/reset_password_requests/new" for 127.0.0.1 at 2015-07-04 11:25:08 +0900
|
4601
|
+
Processing by Nyauth::ResetPasswordRequestsController#new as HTML
|
4602
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_password_requests/new.html.erb within layouts/application (28.2ms)
|
4603
|
+
Completed 200 OK in 49ms (Views: 48.0ms | ActiveRecord: 0.2ms)
|
4604
|
+
|
4605
|
+
|
4606
|
+
Started POST "/reset_password_requests" for 127.0.0.1 at 2015-07-04 11:25:20 +0900
|
4607
|
+
Processing by Nyauth::ResetPasswordRequestsController#create as HTML
|
4608
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"75xU2Fwakl2XeEkWC8TuhVCXEG5c82IDPc3vNArnETMjqoINjwrho38yC50V3UWgd9Erbx3TxjgPEKiq4yCpzg==", "user"=>{"email"=>"ppworks@example.com"}, "commit"=>"reset password"}
|
4609
|
+
[1m[35mUser Load (0.7ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "ppworks@example.com"]]
|
4610
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
4611
|
+
[1m[35mSQL (0.9ms)[0m UPDATE "users" SET "reset_password_key" = ?, "reset_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"], ["reset_password_key_expired_at", "2015-07-04 03:25:20.780248"], ["updated_at", "2015-07-04 02:25:20.782449"], ["id", 1]]
|
4612
|
+
[1m[36m (5.1ms)[0m [1mcommit transaction[0m
|
4613
|
+
Redirected to http://www.lvh.me:3000/
|
4614
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.html.erb within layouts/nyauth/mailer (3.4ms)
|
4615
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.text.erb within layouts/nyauth/mailer (3.9ms)
|
4616
|
+
|
4617
|
+
Nyauth::RequestMailer#request_reset_password: processed outbound mail in 203.1ms
|
4618
|
+
|
4619
|
+
Sent mail to ppworks@example.com (16.6ms)
|
4620
|
+
Date: Sat, 04 Jul 2015 11:25:21 +0900
|
4621
|
+
From: from@example.com
|
4622
|
+
To: ppworks@example.com
|
4623
|
+
Message-ID: <5597441148a32_148fd3fc7fcdf258861699@mbpA1502.local.mail>
|
4624
|
+
Subject: Request reset password
|
4625
|
+
Mime-Version: 1.0
|
4626
|
+
Content-Type: multipart/alternative;
|
4627
|
+
boundary="--==_mimepart_5597441146d14_148fd3fc7fcdf258861593";
|
4628
|
+
charset=UTF-8
|
4629
|
+
Content-Transfer-Encoding: 7bit
|
4630
|
+
|
4631
|
+
|
4632
|
+
----==_mimepart_5597441146d14_148fd3fc7fcdf258861593
|
4633
|
+
Content-Type: text/plain;
|
4634
|
+
charset=UTF-8
|
4635
|
+
Content-Transfer-Encoding: 7bit
|
4636
|
+
|
4637
|
+
Plese set your new password
|
4638
|
+
|
4639
|
+
http://localhost:3000/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit
|
4640
|
+
|
4641
|
+
|
4642
|
+
----==_mimepart_5597441146d14_148fd3fc7fcdf258861593
|
4643
|
+
Content-Type: text/html;
|
4644
|
+
charset=UTF-8
|
4645
|
+
Content-Transfer-Encoding: 7bit
|
4646
|
+
|
4647
|
+
<p>
|
4648
|
+
Plese set your new password
|
4649
|
+
</p>
|
4650
|
+
<p>
|
4651
|
+
<a href="http://localhost:3000/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit">set new password</a>
|
4652
|
+
</p>
|
4653
|
+
|
4654
|
+
|
4655
|
+
----==_mimepart_5597441146d14_148fd3fc7fcdf258861593--
|
4656
|
+
|
4657
|
+
Completed 302 Found in 540ms (ActiveRecord: 7.0ms)
|
4658
|
+
|
4659
|
+
|
4660
|
+
Started GET "/" for 127.0.0.1 at 2015-07-04 11:25:21 +0900
|
4661
|
+
Processing by PagesController#index as HTML
|
4662
|
+
Rendered pages/index.html.erb within layouts/application (0.0ms)
|
4663
|
+
Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
4664
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1[0m
|
4665
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
4666
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
4667
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
|
4668
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4669
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "reset_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_key_expired_at", "2015-06-30 02:26:29.333084"], ["updated_at", "2015-07-04 02:26:32.880677"], ["id", 1]]
|
4670
|
+
[1m[36m (0.5ms)[0m [1mcommit transaction[0m
|
4671
|
+
|
4672
|
+
|
4673
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:26:51 +0900
|
4674
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4675
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4676
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4677
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (10.4ms)
|
4678
|
+
Completed 200 OK in 38ms (Views: 35.0ms | ActiveRecord: 0.3ms)
|
4679
|
+
|
4680
|
+
|
4681
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:26:51 +0900
|
4682
|
+
|
4683
|
+
|
4684
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:26:51 +0900
|
4685
|
+
|
4686
|
+
|
4687
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:26:51 +0900
|
4688
|
+
|
4689
|
+
|
4690
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:26:51 +0900
|
4691
|
+
|
4692
|
+
|
4693
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:27:05 +0900
|
4694
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4695
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4696
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4697
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (6.1ms)
|
4698
|
+
Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.1ms)
|
4699
|
+
|
4700
|
+
|
4701
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:27:21 +0900
|
4702
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4703
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4704
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4705
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (7.0ms)
|
4706
|
+
Completed 200 OK in 46ms (Views: 30.9ms | ActiveRecord: 1.0ms)
|
4707
|
+
|
4708
|
+
|
4709
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:27:21 +0900
|
4710
|
+
|
4711
|
+
|
4712
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:27:21 +0900
|
4713
|
+
|
4714
|
+
|
4715
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:27:21 +0900
|
4716
|
+
|
4717
|
+
|
4718
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:27:21 +0900
|
4719
|
+
|
4720
|
+
|
4721
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:27:34 +0900
|
4722
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4723
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4724
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4725
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (5.8ms)
|
4726
|
+
Completed 200 OK in 46ms (Views: 28.5ms | ActiveRecord: 1.5ms)
|
4727
|
+
|
4728
|
+
|
4729
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:27:34 +0900
|
4730
|
+
|
4731
|
+
|
4732
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:27:34 +0900
|
4733
|
+
|
4734
|
+
|
4735
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:27:34 +0900
|
4736
|
+
|
4737
|
+
|
4738
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:27:34 +0900
|
4739
|
+
|
4740
|
+
|
4741
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:29:03 +0900
|
4742
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4743
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4744
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4745
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1[0m
|
4746
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (7.5ms)
|
4747
|
+
Completed 200 OK in 123486ms (Views: 29.2ms | ActiveRecord: 1.7ms)
|
4748
|
+
|
4749
|
+
|
4750
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:31:07 +0900
|
4751
|
+
|
4752
|
+
|
4753
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:31:07 +0900
|
4754
|
+
|
4755
|
+
|
4756
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:31:07 +0900
|
4757
|
+
|
4758
|
+
|
4759
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:31:07 +0900
|
4760
|
+
|
4761
|
+
|
4762
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:31:14 +0900
|
4763
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4764
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4765
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4766
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4767
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (35.8ms)
|
4768
|
+
Completed 200 OK in 2990ms (Views: 203.2ms | ActiveRecord: 0.9ms)
|
4769
|
+
|
4770
|
+
|
4771
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:31:18 +0900
|
4772
|
+
|
4773
|
+
|
4774
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:31:18 +0900
|
4775
|
+
|
4776
|
+
|
4777
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:31:18 +0900
|
4778
|
+
|
4779
|
+
|
4780
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:31:18 +0900
|
4781
|
+
|
4782
|
+
|
4783
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:32:56 +0900
|
4784
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4785
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Zdg2iRDjM1V0C060Uko7hMj7QdQ4O1/uJdZ3Lik1gbKapmS/dghN0LL4dSURKzkD55xRh5bk54YdPoVFJInKfQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4786
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4787
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4788
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4789
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (4.4ms)
|
4790
|
+
Completed 200 OK in 417ms (Views: 113.4ms | ActiveRecord: 0.3ms)
|
4791
|
+
|
4792
|
+
|
4793
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:34:20 +0900
|
4794
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4795
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
4796
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
4797
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4798
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (21.8ms)
|
4799
|
+
Completed 200 OK in 13137ms (Views: 182.8ms | ActiveRecord: 0.7ms)
|
4800
|
+
|
4801
|
+
|
4802
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:34:49 +0900
|
4803
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4804
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"xpKuMjx38ewqIma07Xoqvg3IdLC3zpU5UpbvuDnczOw57PwEWpyPaezRXSWuGyg5Iq9k4xkRLVFqfh3TNGCHIw==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4805
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4806
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4807
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4808
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (3.8ms)
|
4809
|
+
Completed 200 OK in 279ms (Views: 21.0ms | ActiveRecord: 0.3ms)
|
4810
|
+
|
4811
|
+
|
4812
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:34:59 +0900
|
4813
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4814
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4815
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4816
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4817
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4818
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (6.9ms)
|
4819
|
+
Completed 200 OK in 97ms (Views: 44.9ms | ActiveRecord: 0.3ms)
|
4820
|
+
|
4821
|
+
|
4822
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:36:18 +0900
|
4823
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4824
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4825
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4826
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4827
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4828
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4829
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (12.3ms)
|
4830
|
+
Completed 200 OK in 459ms (Views: 179.8ms | ActiveRecord: 0.6ms)
|
4831
|
+
|
4832
|
+
|
4833
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:36:18 +0900
|
4834
|
+
|
4835
|
+
|
4836
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:36:18 +0900
|
4837
|
+
|
4838
|
+
|
4839
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:36:18 +0900
|
4840
|
+
|
4841
|
+
|
4842
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:36:18 +0900
|
4843
|
+
|
4844
|
+
|
4845
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:37:39 +0900
|
4846
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4847
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4848
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4849
|
+
[1m[35mUser Load (0.6ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4850
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4851
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4852
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (12.2ms)
|
4853
|
+
Completed 200 OK in 452ms (Views: 177.2ms | ActiveRecord: 1.4ms)
|
4854
|
+
|
4855
|
+
|
4856
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:37:40 +0900
|
4857
|
+
|
4858
|
+
|
4859
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:37:40 +0900
|
4860
|
+
|
4861
|
+
|
4862
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:37:40 +0900
|
4863
|
+
|
4864
|
+
|
4865
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:37:40 +0900
|
4866
|
+
|
4867
|
+
|
4868
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:37:54 +0900
|
4869
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4870
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4871
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4872
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4873
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4874
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4875
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (13.0ms)
|
4876
|
+
Completed 200 OK in 419ms (Views: 176.1ms | ActiveRecord: 1.2ms)
|
4877
|
+
|
4878
|
+
|
4879
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:37:55 +0900
|
4880
|
+
|
4881
|
+
|
4882
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:37:55 +0900
|
4883
|
+
|
4884
|
+
|
4885
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:37:55 +0900
|
4886
|
+
|
4887
|
+
|
4888
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:37:55 +0900
|
4889
|
+
|
4890
|
+
|
4891
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:40:40 +0900
|
4892
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4893
|
+
|
4894
|
+
ActionController::RoutingError (No route matches [GET] "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"):
|
4895
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
4896
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
4897
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
4898
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
4899
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
4900
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
4901
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
4902
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
4903
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
4904
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
4905
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
4906
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
4907
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
4908
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
4909
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
4910
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
4911
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
4912
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
4913
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
4914
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
4915
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
4916
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
4917
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
4918
|
+
|
4919
|
+
|
4920
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
4921
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
|
4922
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
|
4923
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (10.2ms)
|
4924
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms)
|
4925
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.1ms)
|
4926
|
+
|
4927
|
+
|
4928
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:40:42 +0900
|
4929
|
+
|
4930
|
+
ActionController::RoutingError (No route matches [GET] "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"):
|
4931
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
4932
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
4933
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
4934
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
4935
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
4936
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
4937
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
4938
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
4939
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
4940
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
4941
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
4942
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
4943
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
4944
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
4945
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
4946
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
4947
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
4948
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
4949
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
4950
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
4951
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
4952
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
4953
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
4954
|
+
|
4955
|
+
|
4956
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
4957
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.4ms)
|
4958
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
|
4959
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms)
|
4960
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
|
4961
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (93.1ms)
|
4962
|
+
|
4963
|
+
|
4964
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:40:47 +0900
|
4965
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4966
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4967
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4968
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4969
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4970
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (5.9ms)
|
4971
|
+
Completed 200 OK in 427ms (Views: 156.9ms | ActiveRecord: 0.6ms)
|
4972
|
+
|
4973
|
+
|
4974
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:41:03 +0900
|
4975
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4976
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
4977
|
+
[1m[36mUser Load (0.3ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
4978
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4979
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4980
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (3.5ms)
|
4981
|
+
Completed 200 OK in 354ms (Views: 18.0ms | ActiveRecord: 1.1ms)
|
4982
|
+
|
4983
|
+
|
4984
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:41:03 +0900
|
4985
|
+
|
4986
|
+
|
4987
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:41:03 +0900
|
4988
|
+
|
4989
|
+
|
4990
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:41:03 +0900
|
4991
|
+
|
4992
|
+
|
4993
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:41:03 +0900
|
4994
|
+
|
4995
|
+
|
4996
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:41:10 +0900
|
4997
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4998
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
4999
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
5000
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5002
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5003
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (11.7ms)
|
5004
|
+
Completed 200 OK in 437ms (Views: 160.5ms | ActiveRecord: 0.6ms)
|
5005
|
+
|
5006
|
+
|
5007
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:41:11 +0900
|
5008
|
+
|
5009
|
+
|
5010
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:41:11 +0900
|
5011
|
+
|
5012
|
+
|
5013
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:41:11 +0900
|
5014
|
+
|
5015
|
+
|
5016
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:41:11 +0900
|
5017
|
+
|
5018
|
+
|
5019
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:41:25 +0900
|
5020
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
5021
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RJllPiUXGP8d97IceoleKNKZRlf63RLTy7dSh67PU6a75zcIQ/xmetsEiY056Fyv/f5WBFQCqrvzX6Dso3MYaQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
5022
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5023
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5024
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5025
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (3.7ms)
|
5026
|
+
Completed 200 OK in 382ms (Views: 19.2ms | ActiveRecord: 0.6ms)
|
5027
|
+
|
5028
|
+
|
5029
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:41:25 +0900
|
5030
|
+
|
5031
|
+
|
5032
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:41:25 +0900
|
5033
|
+
|
5034
|
+
|
5035
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:41:25 +0900
|
5036
|
+
|
5037
|
+
|
5038
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:41:25 +0900
|
5039
|
+
|
5040
|
+
|
5041
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:41:39 +0900
|
5042
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
5043
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"mS5N9egHubEKFVOSf62SSANQlig2S5tadmQ9/ByyXMpmUB/DjuzHNMzmaAM8zJDPLDeGe5iUIzJOjM+XEQ4XBQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
5044
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5045
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5046
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5047
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (5.0ms)
|
5048
|
+
Completed 200 OK in 277ms (Views: 21.1ms | ActiveRecord: 0.8ms)
|
5049
|
+
|
5050
|
+
|
5051
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:41:56 +0900
|
5052
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
5053
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"nNfaybcbcs1idLo3+C6iK4EcJzBD0viITlJ7s6QmL0JjqYj/0fAMSKSHgaa7T6Csrns3Y+0NQOB2uonYqZpkjQ==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
5054
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5055
|
+
[1m[35m (0.0ms)[0m begin transaction
|
5056
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5057
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (4.2ms)
|
5058
|
+
Completed 200 OK in 363ms (Views: 24.0ms | ActiveRecord: 0.7ms)
|
5059
|
+
|
5060
|
+
|
5061
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:50:17 +0900
|
5062
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
5063
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
5064
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"QleMhy5Xo/vykFO3EiXlI0o7bJOA962y0HGiTGY08H+9Kd6xSLzdfjRjaCZRROekZVx8wC4oFdromVAna4i7sA==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
5065
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5066
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
5067
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
5068
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (9.7ms)
|
5069
|
+
Completed 200 OK in 446ms (Views: 163.2ms | ActiveRecord: 0.6ms)
|
5070
|
+
|
5071
|
+
|
5072
|
+
Started PATCH "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85" for ::1 at 2015-07-04 11:50:45 +0900
|
5073
|
+
Processing by Nyauth::ResetPasswordsController#update as HTML
|
5074
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"QleMhy5Xo/vykFO3EiXlI0o7bJOA962y0HGiTGY08H+9Kd6xSLzdfjRjaCZRROekZVx8wC4oFdromVAna4i7sA==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
|
5075
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5076
|
+
[1m[35m (0.1ms)[0m begin transaction
|
5077
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
5078
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (3.9ms)
|
5079
|
+
Completed 200 OK in 392ms (Views: 22.0ms | ActiveRecord: 0.6ms)
|
5080
|
+
|
5081
|
+
|
5082
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:52:03 +0900
|
5083
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5084
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5085
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5086
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (5.4ms)
|
5087
|
+
Completed 200 OK in 252ms (Views: 26.1ms | ActiveRecord: 1.0ms)
|
5088
|
+
|
5089
|
+
|
5090
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:52:44 +0900
|
5091
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5092
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5093
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5094
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (13.0ms)
|
5095
|
+
Completed 200 OK in 46ms (Views: 33.6ms | ActiveRecord: 0.6ms)
|
5096
|
+
|
5097
|
+
|
5098
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:52:44 +0900
|
5099
|
+
|
5100
|
+
|
5101
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:52:44 +0900
|
5102
|
+
|
5103
|
+
|
5104
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:52:44 +0900
|
5105
|
+
|
5106
|
+
|
5107
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:52:44 +0900
|
5108
|
+
|
5109
|
+
|
5110
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:54:58 +0900
|
5111
|
+
|
5112
|
+
SyntaxError (/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11: syntax error, unexpected ')', expecting keyword_end
|
5113
|
+
..._session_path_for(client_name)), @client.errors.full_message...
|
5114
|
+
... ^):
|
5115
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11: syntax error, unexpected ')', expecting keyword_end
|
5116
|
+
..._session_path_for(client_name)), @client.errors.full_message...
|
5117
|
+
... ^
|
5118
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load'
|
5119
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file'
|
5120
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in'
|
5121
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file'
|
5122
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load'
|
5123
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant'
|
5124
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
|
5125
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
|
5126
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
|
5127
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
5128
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
5129
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
5130
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
|
5131
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
|
5132
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
5133
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
5134
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
5135
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5136
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5137
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5138
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5139
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5140
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5141
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5142
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5143
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5144
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5145
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5146
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5147
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5148
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5149
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5150
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5151
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5152
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5153
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5154
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5155
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5156
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5157
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5158
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5159
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5160
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5161
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5162
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5163
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5164
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5165
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5166
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5167
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5168
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5169
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5170
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5171
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5172
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5173
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5174
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5175
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5176
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5177
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5178
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5179
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5180
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5181
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5182
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5183
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5184
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5185
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5186
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5187
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5188
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5189
|
+
|
5190
|
+
|
5191
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms)
|
5192
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
5193
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
5194
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.7ms)
|
5195
|
+
|
5196
|
+
|
5197
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:55:03 +0900
|
5198
|
+
|
5199
|
+
SyntaxError (/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11: syntax error, unexpected ')', expecting keyword_end
|
5200
|
+
..._session_path_for(client_name)), @client.errors.full_message...
|
5201
|
+
... ^):
|
5202
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11: syntax error, unexpected ')', expecting keyword_end
|
5203
|
+
..._session_path_for(client_name)), @client.errors.full_message...
|
5204
|
+
... ^
|
5205
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load'
|
5206
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file'
|
5207
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in'
|
5208
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file'
|
5209
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load'
|
5210
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant'
|
5211
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
|
5212
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
|
5213
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
|
5214
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
5215
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
5216
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
5217
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
|
5218
|
+
activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
|
5219
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
5220
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
5221
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
5222
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5223
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5224
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5225
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5226
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5227
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5228
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5229
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5230
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5231
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5232
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5233
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5234
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5235
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5236
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5237
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5238
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5239
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5240
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5241
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5242
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5243
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5244
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5245
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5246
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5247
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5248
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5249
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5250
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5251
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5252
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5253
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5254
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5255
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5256
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5257
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5258
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5259
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5260
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5261
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5262
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5263
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5264
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5265
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5266
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5267
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5268
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5269
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5270
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5271
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5272
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5273
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5274
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5275
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5276
|
+
|
5277
|
+
|
5278
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.5ms)
|
5279
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
|
5280
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
|
5281
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.9ms)
|
5282
|
+
|
5283
|
+
|
5284
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:55:12 +0900
|
5285
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5286
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5287
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5288
|
+
Redirected to
|
5289
|
+
Completed 500 Internal Server Error in 27ms
|
5290
|
+
|
5291
|
+
TypeError (no implicit conversion of Symbol into String):
|
5292
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:48:in `delete'
|
5293
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:48:in `block in redirect_to'
|
5294
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:47:in `each'
|
5295
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:47:in `redirect_to'
|
5296
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:61:in `block in redirect_to'
|
5297
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5298
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5299
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5300
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:60:in `redirect_to'
|
5301
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11:in `edit'
|
5302
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5303
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
5304
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5305
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
5306
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5307
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5308
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5309
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
5310
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
5311
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
5312
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5313
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
5314
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
5315
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
5316
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5317
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
5318
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5319
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
5320
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5321
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5322
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5323
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
5324
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
5325
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5326
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
5327
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
5328
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
5329
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
5330
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
5331
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5332
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5333
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
5334
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5335
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5336
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5337
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5338
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5339
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5340
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5341
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5342
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5343
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5344
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5345
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5346
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5347
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5348
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5349
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5350
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5351
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5352
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5353
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5354
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5355
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5356
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5357
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5358
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5359
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5360
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5361
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5362
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5363
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5364
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5365
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5366
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5367
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5368
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5369
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5370
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5371
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5372
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5373
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5374
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5375
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5376
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5377
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5378
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5379
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5380
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5381
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5382
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5383
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5384
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5385
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5386
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5387
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5388
|
+
|
5389
|
+
|
5390
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.9ms)
|
5391
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
5392
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
5393
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.1ms)
|
5394
|
+
|
5395
|
+
|
5396
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:55:39 +0900
|
5397
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5398
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5399
|
+
[1m[36mUser Load (0.4ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5400
|
+
Redirected to
|
5401
|
+
Completed 500 Internal Server Error in 23ms
|
5402
|
+
|
5403
|
+
NoMethodError (undefined method `key?' for ["Reset password key This URL is expired"]:Array):
|
5404
|
+
actionpack (4.2.0) lib/action_controller/metal/redirecting.rb:105:in `_extract_redirect_to_status'
|
5405
|
+
actionpack (4.2.0) lib/action_controller/metal/redirecting.rb:74:in `redirect_to'
|
5406
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:57:in `redirect_to'
|
5407
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:61:in `block in redirect_to'
|
5408
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5409
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5410
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5411
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:60:in `redirect_to'
|
5412
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11:in `edit'
|
5413
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5414
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
5415
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5416
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
5417
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5418
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5419
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5420
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
5421
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
5422
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
5423
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5424
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
5425
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
5426
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
5427
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5428
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
5429
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5430
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
5431
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5432
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5433
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5434
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
5435
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
5436
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5437
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
5438
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
5439
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
5440
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
5441
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
5442
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5443
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5444
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
5445
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5446
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5447
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5448
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5449
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5450
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5451
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5452
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5453
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5454
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5455
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5456
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5457
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5458
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5459
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5460
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5461
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5462
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5463
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5464
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5465
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5466
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5467
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5468
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5469
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5470
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5471
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5472
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5473
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5474
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5475
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5476
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5477
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5478
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5479
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5480
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5481
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5482
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5483
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5484
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5485
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5486
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5487
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5488
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5489
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5490
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5491
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5492
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5493
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5494
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5495
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5496
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5497
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5498
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5499
|
+
|
5500
|
+
|
5501
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.3ms)
|
5502
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
|
5503
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
5504
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (47.9ms)
|
5505
|
+
|
5506
|
+
|
5507
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:55:51 +0900
|
5508
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5509
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5510
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5511
|
+
Redirected to
|
5512
|
+
Completed 500 Internal Server Error in 23ms
|
5513
|
+
|
5514
|
+
TypeError (no implicit conversion of Symbol into String):
|
5515
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:48:in `delete'
|
5516
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:48:in `block in redirect_to'
|
5517
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:47:in `each'
|
5518
|
+
actionpack (4.2.0) lib/action_controller/metal/flash.rb:47:in `redirect_to'
|
5519
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:61:in `block in redirect_to'
|
5520
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5521
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5522
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5523
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:60:in `redirect_to'
|
5524
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11:in `edit'
|
5525
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5526
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
5527
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5528
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
5529
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5530
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5531
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5532
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
5533
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
5534
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
5535
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5536
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
5537
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
5538
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
5539
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5540
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
5541
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5542
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
5543
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5544
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5545
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5546
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
5547
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
5548
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5549
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
5550
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
5551
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
5552
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
5553
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
5554
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5555
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5556
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
5557
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5558
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5559
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5560
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5561
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5562
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5563
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5564
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5565
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5566
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5567
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5568
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5569
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5570
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5571
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5572
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5573
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5574
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5575
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5576
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5577
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5578
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5579
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5580
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5581
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5582
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5583
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5584
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5585
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5586
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5587
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5588
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5589
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5590
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5591
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5592
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5593
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5594
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5595
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5596
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5597
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5598
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5599
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5600
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5601
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5602
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5603
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5604
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5605
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5606
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5607
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5608
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5609
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5610
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5611
|
+
|
5612
|
+
|
5613
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
|
5614
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
5615
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
5616
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.7ms)
|
5617
|
+
|
5618
|
+
|
5619
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:56:08 +0900
|
5620
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5621
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5622
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5623
|
+
Redirected to http://localhost:3000/session/new
|
5624
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.5ms)
|
5625
|
+
|
5626
|
+
|
5627
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:56:08 +0900
|
5628
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5629
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (11.2ms)
|
5630
|
+
Completed 200 OK in 42ms (Views: 39.3ms | ActiveRecord: 0.0ms)
|
5631
|
+
|
5632
|
+
|
5633
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:56:08 +0900
|
5634
|
+
|
5635
|
+
|
5636
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:56:08 +0900
|
5637
|
+
|
5638
|
+
|
5639
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:56:08 +0900
|
5640
|
+
|
5641
|
+
|
5642
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:56:08 +0900
|
5643
|
+
|
5644
|
+
|
5645
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:56:19 +0900
|
5646
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5647
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5648
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5649
|
+
Redirected to http://localhost:3000/session/new
|
5650
|
+
Completed 302 Found in 13ms (ActiveRecord: 0.1ms)
|
5651
|
+
|
5652
|
+
|
5653
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:56:19 +0900
|
5654
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5655
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.4ms)
|
5656
|
+
Completed 200 OK in 29ms (Views: 28.7ms | ActiveRecord: 0.0ms)
|
5657
|
+
|
5658
|
+
|
5659
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:57:20 +0900
|
5660
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5661
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5662
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5663
|
+
Redirected to http://localhost:3000/session/new
|
5664
|
+
Completed 302 Found in 7ms (ActiveRecord: 0.1ms)
|
5665
|
+
|
5666
|
+
|
5667
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:57:20 +0900
|
5668
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5669
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.2ms)
|
5670
|
+
Completed 200 OK in 22ms (Views: 21.6ms | ActiveRecord: 0.0ms)
|
5671
|
+
|
5672
|
+
|
5673
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:57:25 +0900
|
5674
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5675
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5676
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5677
|
+
Redirected to http://localhost:3000/session/new
|
5678
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.1ms)
|
5679
|
+
|
5680
|
+
|
5681
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:57:25 +0900
|
5682
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5683
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.4ms)
|
5684
|
+
Completed 200 OK in 24ms (Views: 24.1ms | ActiveRecord: 0.0ms)
|
5685
|
+
|
5686
|
+
|
5687
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:57:38 +0900
|
5688
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5689
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5690
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5691
|
+
Redirected to http://localhost:3000/session/new
|
5692
|
+
Completed 302 Found in 16ms (ActiveRecord: 0.1ms)
|
5693
|
+
|
5694
|
+
|
5695
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:57:38 +0900
|
5696
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5697
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (7.3ms)
|
5698
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
5699
|
+
|
5700
|
+
|
5701
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:05 +0900
|
5702
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5703
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5704
|
+
[1m[35mUser Load (0.3ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5705
|
+
Redirected to http://localhost:3000/session/new
|
5706
|
+
Completed 302 Found in 22ms (ActiveRecord: 1.0ms)
|
5707
|
+
|
5708
|
+
|
5709
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:58:05 +0900
|
5710
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5711
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.0ms)
|
5712
|
+
Completed 200 OK in 28ms (Views: 26.1ms | ActiveRecord: 0.0ms)
|
5713
|
+
|
5714
|
+
|
5715
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:08 +0900
|
5716
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5717
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5718
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5719
|
+
Redirected to http://localhost:3000/session/new
|
5720
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.1ms)
|
5721
|
+
|
5722
|
+
|
5723
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:09 +0900
|
5724
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5725
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5726
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5727
|
+
Redirected to http://localhost:3000/session/new
|
5728
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.1ms)
|
5729
|
+
|
5730
|
+
|
5731
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:58:09 +0900
|
5732
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5733
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.0ms)
|
5734
|
+
Completed 200 OK in 25ms (Views: 24.6ms | ActiveRecord: 0.0ms)
|
5735
|
+
|
5736
|
+
|
5737
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:19 +0900
|
5738
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5739
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5740
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5741
|
+
Redirected to http://localhost:3000/session/new
|
5742
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.4ms)
|
5743
|
+
|
5744
|
+
|
5745
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:58:20 +0900
|
5746
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5747
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (8.9ms)
|
5748
|
+
Completed 200 OK in 34ms (Views: 32.7ms | ActiveRecord: 0.0ms)
|
5749
|
+
|
5750
|
+
|
5751
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:29 +0900
|
5752
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5753
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5754
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5755
|
+
Completed 500 Internal Server Error in 28ms
|
5756
|
+
|
5757
|
+
NoMethodError (undefined method `to_sym' for 0:Fixnum):
|
5758
|
+
activemodel (4.2.0) lib/active_model/errors.rb:137:in `[]'
|
5759
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11:in `edit'
|
5760
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5761
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
5762
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5763
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
5764
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5765
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5766
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5767
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
5768
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
5769
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
5770
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5771
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
5772
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
5773
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
5774
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5775
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
5776
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5777
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
5778
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5779
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5780
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5781
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
5782
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
5783
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5784
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
5785
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
5786
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
5787
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
5788
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
5789
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5790
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5791
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
5792
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5793
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5794
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5795
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5796
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5797
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5798
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5799
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5800
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5801
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5802
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5803
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5804
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5805
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5806
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5807
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5808
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5809
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5810
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5811
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5812
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5813
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5814
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5815
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5816
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5817
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5818
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5819
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5820
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5821
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5822
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5823
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5824
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5825
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5826
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5827
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5828
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5829
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5830
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5831
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5832
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5833
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5834
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5835
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5836
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5837
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5838
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5839
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5840
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5841
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5842
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5843
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5844
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5845
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5846
|
+
|
5847
|
+
|
5848
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.2ms)
|
5849
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
5850
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
5851
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.3ms)
|
5852
|
+
|
5853
|
+
|
5854
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:29 +0900
|
5855
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5856
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5857
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5858
|
+
Completed 500 Internal Server Error in 8ms
|
5859
|
+
|
5860
|
+
NoMethodError (undefined method `to_sym' for 0:Fixnum):
|
5861
|
+
activemodel (4.2.0) lib/active_model/errors.rb:137:in `[]'
|
5862
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/reset_passwords_controller.rb:11:in `edit'
|
5863
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
5864
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
5865
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
5866
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
5867
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5868
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
5869
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5870
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
5871
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
5872
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
5873
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
5874
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
5875
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
5876
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
5877
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5878
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
5879
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
5880
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
5881
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
5882
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
5883
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
5884
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
5885
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
5886
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
5887
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
5888
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
5889
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
5890
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
5891
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
5892
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
5893
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
5894
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
5895
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5896
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5897
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5898
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5899
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5900
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
5901
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
5902
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
5903
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
5904
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
5905
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
5906
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
5907
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
5908
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
5909
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
5910
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
5911
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
5912
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
5913
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
5914
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
5915
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
5916
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
5917
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
5918
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
5919
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
5920
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
5921
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
5922
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
5923
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
5924
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
5925
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
5926
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
5927
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
5928
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
5929
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
5930
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
5931
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
5932
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
5933
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
5934
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
5935
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
5936
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
5937
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
5938
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5939
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
5940
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
5941
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
5942
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
5943
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
5944
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
5945
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
5946
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
5947
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
5948
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
5949
|
+
|
5950
|
+
|
5951
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
|
5952
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
|
5953
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
5954
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.6ms)
|
5955
|
+
|
5956
|
+
|
5957
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:46 +0900
|
5958
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5959
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5960
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5961
|
+
Redirected to http://localhost:3000/session/new
|
5962
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.7ms)
|
5963
|
+
|
5964
|
+
|
5965
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:58:46 +0900
|
5966
|
+
Processing by Nyauth::SessionsController#new as HTML
|
5967
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (8.2ms)
|
5968
|
+
Completed 200 OK in 32ms (Views: 30.5ms | ActiveRecord: 0.0ms)
|
5969
|
+
|
5970
|
+
|
5971
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 11:58:46 +0900
|
5972
|
+
|
5973
|
+
|
5974
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 11:58:46 +0900
|
5975
|
+
|
5976
|
+
|
5977
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 11:58:46 +0900
|
5978
|
+
|
5979
|
+
|
5980
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 11:58:46 +0900
|
5981
|
+
|
5982
|
+
|
5983
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:48 +0900
|
5984
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5985
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5986
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5987
|
+
Redirected to http://localhost:3000/session/new
|
5988
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.1ms)
|
5989
|
+
|
5990
|
+
|
5991
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 11:58:48 +0900
|
5992
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
5993
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
5994
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
5995
|
+
Redirected to http://localhost:3000/session/new
|
5996
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.1ms)
|
5997
|
+
|
5998
|
+
|
5999
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:58:48 +0900
|
6000
|
+
Processing by Nyauth::SessionsController#new as HTML
|
6001
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.9ms)
|
6002
|
+
Completed 200 OK in 23ms (Views: 22.9ms | ActiveRecord: 0.0ms)
|
6003
|
+
|
6004
|
+
|
6005
|
+
Started GET "/session/new" for ::1 at 2015-07-04 11:58:50 +0900
|
6006
|
+
Processing by Nyauth::SessionsController#new as HTML
|
6007
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (7.1ms)
|
6008
|
+
Completed 200 OK in 26ms (Views: 25.3ms | ActiveRecord: 0.0ms)
|
6009
|
+
|
6010
|
+
|
6011
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 12:00:39 +0900
|
6012
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
6013
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
6014
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
6015
|
+
Redirected to http://localhost:3000/session/new
|
6016
|
+
Completed 302 Found in 275ms (ActiveRecord: 0.7ms)
|
6017
|
+
|
6018
|
+
|
6019
|
+
Started GET "/session/new" for ::1 at 2015-07-04 12:00:39 +0900
|
6020
|
+
Processing by Nyauth::SessionsController#new as HTML
|
6021
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.8ms)
|
6022
|
+
Completed 200 OK in 114ms (Views: 112.5ms | ActiveRecord: 0.0ms)
|
6023
|
+
|
6024
|
+
|
6025
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 12:01:00 +0900
|
6026
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
6027
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
6028
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
6029
|
+
Redirected to http://localhost:3000/session/new
|
6030
|
+
Completed 302 Found in 17ms (ActiveRecord: 0.8ms)
|
6031
|
+
|
6032
|
+
|
6033
|
+
Started GET "/session/new" for ::1 at 2015-07-04 12:01:00 +0900
|
6034
|
+
Processing by Nyauth::SessionsController#new as HTML
|
6035
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.7ms)
|
6036
|
+
Completed 200 OK in 26ms (Views: 24.3ms | ActiveRecord: 0.0ms)
|
6037
|
+
|
6038
|
+
|
6039
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 12:01:02 +0900
|
6040
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
6041
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
6042
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
6043
|
+
Redirected to http://localhost:3000/session/new
|
6044
|
+
Completed 302 Found in 8ms (ActiveRecord: 0.1ms)
|
6045
|
+
|
6046
|
+
|
6047
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 12:01:02 +0900
|
6048
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
6049
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
6050
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
6051
|
+
Redirected to http://localhost:3000/session/new
|
6052
|
+
Completed 302 Found in 9ms (ActiveRecord: 0.2ms)
|
6053
|
+
|
6054
|
+
|
6055
|
+
Started GET "/session/new" for ::1 at 2015-07-04 12:01:02 +0900
|
6056
|
+
Processing by Nyauth::SessionsController#new as HTML
|
6057
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.0ms)
|
6058
|
+
Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
|
6059
|
+
|
6060
|
+
|
6061
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 12:01:04 +0900
|
6062
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
6063
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
6064
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1[0m [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
6065
|
+
Redirected to http://localhost:3000/session/new
|
6066
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.1ms)
|
6067
|
+
|
6068
|
+
|
6069
|
+
Started GET "/reset_passwords/f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85/edit" for ::1 at 2015-07-04 12:01:04 +0900
|
6070
|
+
Processing by Nyauth::ResetPasswordsController#edit as HTML
|
6071
|
+
Parameters: {"reset_password_key"=>"[FILTERED]"}
|
6072
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "f6701aa0b07e0ff427876e28108ebc415beb5d8b62517ef6f0509d0554ea1f85"]]
|
6073
|
+
Redirected to http://localhost:3000/session/new
|
6074
|
+
Completed 302 Found in 12ms (ActiveRecord: 0.1ms)
|
6075
|
+
|
6076
|
+
|
6077
|
+
Started GET "/session/new" for ::1 at 2015-07-04 12:01:04 +0900
|
6078
|
+
Processing by Nyauth::SessionsController#new as HTML
|
6079
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.3ms)
|
6080
|
+
Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
|
6081
|
+
|
6082
|
+
|
6083
|
+
Started POST "/session" for ::1 at 2015-07-04 12:03:40 +0900
|
6084
|
+
Processing by Nyauth::SessionsController#create as HTML
|
6085
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"//GmmGg1jbp+LikiHGI9xas193T63FjEAwbKGGRnclYAj/SuDt7zP7jdErNfAz9ChFLnJ1QD4Kw77jhzads5mQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
6086
|
+
[1m[36mUser Load (1.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1[0m [["email", ""]]
|
6087
|
+
Completed 500 Internal Server Error in 8ms
|
6088
|
+
|
6089
|
+
NoMethodError (undefined method `invalid_email_or_password' for #<Nyauth::SessionService:0x007fd70bfde208>):
|
6090
|
+
activemodel (4.2.0) lib/active_model/errors.rb:433:in `generate_message'
|
6091
|
+
activemodel (4.2.0) lib/active_model/errors.rb:449:in `normalize_message'
|
6092
|
+
activemodel (4.2.0) lib/active_model/errors.rb:300:in `add'
|
6093
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/services/nyauth/session_service.rb:18:in `rescue in save'
|
6094
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/services/nyauth/session_service.rb:12:in `save'
|
6095
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:13:in `create'
|
6096
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
6097
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
6098
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
6099
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
6100
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
6101
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
6102
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
6103
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
6104
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
6105
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
6106
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
6107
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
6108
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
6109
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
6110
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6111
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
6112
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
6113
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
6114
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
6115
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
6116
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
6117
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
6118
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
6119
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
6120
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
6121
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
6122
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
6123
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
6124
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
6125
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
6126
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
6127
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
6128
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
6129
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
6130
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
6131
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
6132
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
6133
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
6134
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
6135
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
6136
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
6137
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
6138
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
6139
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
6140
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
6141
|
+
rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
|
6142
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
6143
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
6144
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
6145
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
6146
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
6147
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
6148
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
6149
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
6150
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
6151
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
6152
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
6153
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
6154
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
6155
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
6156
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
6157
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
6158
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
6159
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
6160
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
6161
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
6162
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
6163
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
6164
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
6165
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
6166
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
6167
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
6168
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
6169
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
6170
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
6171
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
6172
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
6173
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
6174
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
6175
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
6176
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
6177
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
6178
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
6179
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
6180
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
6181
|
+
/Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
6182
|
+
|
6183
|
+
|
6184
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.0ms)
|
6185
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
|
6186
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
|
6187
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.5ms)
|
6188
|
+
|
6189
|
+
|
6190
|
+
Started POST "/session" for ::1 at 2015-07-04 12:04:01 +0900
|
6191
|
+
Processing by Nyauth::SessionsController#create as HTML
|
6192
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"//GmmGg1jbp+LikiHGI9xas193T63FjEAwbKGGRnclYAj/SuDt7zP7jdErNfAz9ChFLnJ1QD4Kw77jhzads5mQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
6193
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", ""]]
|
6194
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (3.9ms)
|
6195
|
+
Completed 200 OK in 336ms (Views: 103.8ms | ActiveRecord: 0.5ms)
|
6196
|
+
|
6197
|
+
|
6198
|
+
Started GET "/assets/application.self-e80e8f2318043e8af94dddc2adad5a4f09739a8ebb323b3ab31cd71d45fd9113.css?body=1" for ::1 at 2015-07-04 12:04:02 +0900
|
6199
|
+
|
6200
|
+
|
6201
|
+
Started GET "/assets/jquery.self-d03a5518f45df77341bdbe6201ba3bfa547ebba8ed64f0ea56bfa5f96ea7c074.js?body=1" for ::1 at 2015-07-04 12:04:02 +0900
|
6202
|
+
|
6203
|
+
|
6204
|
+
Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e12dc2160d07a8b1fe5e9f4.js?body=1" for ::1 at 2015-07-04 12:04:02 +0900
|
6205
|
+
|
6206
|
+
|
6207
|
+
Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 12:04:02 +0900
|