nyauth 0.2.3 → 0.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8a34d8d2548f9a885e7460318e03b5b4f99c7041
4
- data.tar.gz: 66c7edf2dd7f42f166e55fe5f9aebad192ebbf24
3
+ metadata.gz: 78c8dca6c49fd4abe898394914257767fa4c002f
4
+ data.tar.gz: 52dbfeeaaab4f1109d86565598db322f8978f5eb
5
5
  SHA512:
6
- metadata.gz: 17a52d6ab151cce6bd3f54576ba56b4977f9d1195d0ef15963c37eeee941e339f08507be7fccd2321b373c5acc29bcf60652aeda0bd3a28877c014dee7fa68ef
7
- data.tar.gz: 297bfd29c5fa6581ea4509433e5af0ab9e7f1f394b83d87152643e6fea0dca8c91dd1bccb46f058070fe16b4a453ade7d9c767052d2e1053e3097f9eb9c56c47
6
+ metadata.gz: a53bafdb9cce12f04697e1921d2b7ce5a2238f259884447929eb38c420bb11391079730d65aa760f6784dea57346facb4052632763a9954a1d6859ef17661c37
7
+ data.tar.gz: f7e05ea17062c114207d436177a8ec31d674e7ac239d2030611ca99d3b43b76007cad7600954aa4dbdcdecb26da4eec8ab175b353b1e13c6016d195dacbd0ba5
@@ -20,7 +20,7 @@ module Nyauth
20
20
  # signed_in?(as: :user)
21
21
  def signed_in?(options = {})
22
22
  options.reverse_merge!(as: :user)
23
- session[signed_in_session_key].present?
23
+ current_authenticated.present? && current_authenticated.class.name.demodulize.underscore == options[:as].to_s
24
24
  end
25
25
 
26
26
  # ex.)
@@ -1,3 +1,3 @@
1
1
  module Nyauth
2
- VERSION = "0.2.3"
2
+ VERSION = "0.2.4"
3
3
  end
Binary file
@@ -6205,3 +6205,185 @@ Started GET "/assets/application.self-2b00c68320848afe54cf9919a7a76ed257f93bdb6e
6205
6205
 
6206
6206
 
6207
6207
  Started GET "/assets/jquery_ujs.self-ca5248a2fad13d6bd58ea121318d642f195f0b2dd818b30615f785ff365e8d1f.js?body=1" for ::1 at 2015-07-04 12:04:02 +0900
6208
+
6209
+
6210
+ Started GET "/" for ::1 at 2015-07-05 17:57:27 +0900
6211
+ Processing by PagesController#index as HTML
6212
+ Rendered pages/index.html.erb within layouts/application (1.3ms)
6213
+ Completed 200 OK in 170ms (Views: 169.2ms | ActiveRecord: 0.0ms)
6214
+
6215
+
6216
+ Started GET "/" for ::1 at 2015-07-05 17:57:28 +0900
6217
+ Processing by PagesController#index as HTML
6218
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
6219
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
6220
+
6221
+
6222
+ Started DELETE "/session" for ::1 at 2015-07-05 17:57:30 +0900
6223
+ Processing by Nyauth::SessionsController#destroy as HTML
6224
+ Parameters: {"authenticity_token"=>"OMC2wmR+fV4lTYmO/8lhDpzr3j6BHE76WEyzjU00Z9zHvuT0ApUD2+O+sh+8qGOJs4zObS/D9pJgpEHmQIgsEw=="}
6225
+ Redirected to http://localhost:3000/session/new
6226
+ Completed 302 Found in 381ms (ActiveRecord: 0.0ms)
6227
+
6228
+
6229
+ Started GET "/session/new" for ::1 at 2015-07-05 17:57:30 +0900
6230
+ Processing by Nyauth::SessionsController#new as HTML
6231
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (7.5ms)
6232
+ Completed 200 OK in 31ms (Views: 30.6ms | ActiveRecord: 0.0ms)
6233
+
6234
+
6235
+ Started GET "/adminsession/new" for ::1 at 2015-07-05 17:57:33 +0900
6236
+
6237
+ ActionController::RoutingError (No route matches [GET] "/adminsession/new"):
6238
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
6239
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6240
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
6241
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
6242
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6243
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
6244
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
6245
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
6246
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6247
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
6248
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
6249
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6250
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
6251
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
6252
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
6253
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
6254
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
6255
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
6256
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
6257
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
6258
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
6259
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
6260
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
6261
+
6262
+
6263
+ 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)
6264
+ 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.6ms)
6265
+ 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.7ms)
6266
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms)
6267
+ 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.9ms)
6268
+ 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 (90.0ms)
6269
+
6270
+
6271
+ Started GET "/admin/session/new" for ::1 at 2015-07-05 17:57:35 +0900
6272
+ Processing by Nyauth::SessionsController#new as HTML
6273
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (11.1ms)
6274
+ Completed 200 OK in 33ms (Views: 32.5ms | ActiveRecord: 0.0ms)
6275
+
6276
+
6277
+ Started POST "/admin/session" for ::1 at 2015-07-05 17:57:37 +0900
6278
+ Processing by Nyauth::SessionsController#create as HTML
6279
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"rRNU7YXLUsBNtzQRAnhXba+4vHt4hafdX0xzArJrIFDcu8IyFW/+PcdAdHd0Eaxsxht80MWgVUmoK/Edmr7mIw==", "session_service"=>{"email"=>"hoge@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
6280
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", "hoge@example.com"]]
6281
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.3ms)
6282
+ Completed 200 OK in 37ms (Views: 22.9ms | ActiveRecord: 0.9ms)
6283
+
6284
+
6285
+ Started POST "/admin/session" for ::1 at 2015-07-05 17:57:44 +0900
6286
+ Processing by Nyauth::SessionsController#create as HTML
6287
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"kCmCr5XVKIxaB3OX6OspwwUsW0sdFtvBxoc6BxPdlynhgRRwBXGEcdDwM/GegtLCbI+b4KAzKVUx4LgYOwhRWg==", "session_service"=>{"email"=>"admin@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
6288
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", "admin@example.com"]]
6289
+ Completed 500 Internal Server Error in 10ms
6290
+
6291
+ ArgumentError (Secret should not be nil.):
6292
+ activesupport (4.2.0) lib/active_support/message_verifier.rb:31:in `initialize'
6293
+ activesupport (4.2.0) lib/active_support/message_encryptor.rb:51:in `new'
6294
+ activesupport (4.2.0) lib/active_support/message_encryptor.rb:51:in `initialize'
6295
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/lib/nyauth/encryptor.rb:12:in `new'
6296
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/lib/nyauth/encryptor.rb:12:in `initialize'
6297
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:141:in `new'
6298
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:141:in `block in instance'
6299
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:139:in `synchronize'
6300
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/singleton.rb:139:in `instance'
6301
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/lib/nyauth/encryptor.rb:17:in `encrypt'
6302
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/concerns/nyauth/session_concern.rb:58:in `signed_in_session_object'
6303
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/concerns/nyauth/session_concern.rb:48:in `store_signed_in_session'
6304
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/concerns/nyauth/session_concern.rb:16:in `sign_in'
6305
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:13:in `create'
6306
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6307
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
6308
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
6309
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6310
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
6311
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
6312
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
6313
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
6314
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
6315
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
6316
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
6317
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
6318
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
6319
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
6320
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
6321
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
6322
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
6323
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6324
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
6325
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6326
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
6327
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6328
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6329
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6330
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
6331
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
6332
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
6333
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6334
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
6335
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
6336
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
6337
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
6338
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
6339
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
6340
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
6341
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
6342
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
6343
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
6344
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
6345
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6346
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
6347
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
6348
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
6349
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6350
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
6351
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
6352
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
6353
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6354
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
6355
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
6356
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
6357
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
6358
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6359
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6360
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
6361
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6362
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6363
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
6364
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
6365
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6366
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
6367
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
6368
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
6369
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6370
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
6371
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
6372
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6373
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
6374
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
6375
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
6376
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
6377
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
6378
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
6379
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
6380
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
6381
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
6382
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
6383
+ /Users/koshikawa/.rbenv/versions/2.2.2/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
6384
+
6385
+
6386
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
6387
+ 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)
6388
+ 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)
6389
+ 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.2ms)
@@ -79222,3 +79222,712 @@ Nyauth::RequestMailer#request_reset_password: processed outbound mail in 13.2ms
79222
79222
  SQL (0.5ms) UPDATE "users" SET "reset_password_key" = ?, "reset_password_key_expired_at" = ?, "password_salt" = ?, "password_digest" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_key", "f30ead23b3ea0113fbfdeee685c4f0a647cc243ee95d0fd02f961549210a5690"], ["reset_password_key_expired_at", "2015-07-04 13:54:36.394272"], ["password_salt", "1389d40237133407589c0ea41656dd0fcd1d10778a90d29a040ed320ae02963ba77a1470e13c720202a4a997554f951a8f9b35e5c40b1bd121644743c447ca7a4bb239dbd7024e1e66e713d5fe05e3ff887e6d9486323dbec214c87d81633e9438a3925ac5edbbefe6c8e15b39d20ea08c343bc26dd04ea2f705cbf8da07047fc71b"], ["password_digest", "e7074e9957173b4f409b71b38ac1c444bdbec9020df1f8e17112695a49feeb72"], ["updated_at", "2015-07-04 12:54:36.400781"], ["id", 1389]]
79223
79223
   (0.8ms) commit transaction
79224
79224
   (1.5ms) DELETE FROM "users";
79225
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
79226
+  (0.1ms) begin transaction
79227
+ SQL (1.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Lia Haley"], ["password_salt", "da159ca08d3c216266bee37a808972380cbca902e7f213453df58fb5e0c0ce498576bba86dd619a8a4335b73da99b47a3773df6534e992e60af22f856312d1ca03685561f321160fc3958c4a3ef835a21c7289f596948ea7409e57dc2319478921d526aade5856a342effa05672da493729373a12e653a1dd01255f4d58312c7"], ["password_digest", "0b32cd0058b6a39cc9941ba7703a07d326a08d1149f53941eff8f918292a5e57"], ["created_at", "2015-07-05 09:21:34.987866"], ["updated_at", "2015-07-05 09:21:34.987866"]]
79228
+  (4.5ms) commit transaction
79229
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1390]]
79230
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1390]]
79231
+  (1.0ms) DELETE FROM "users";
79232
+  (0.1ms) begin transaction
79233
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Jeffrey McGlynn"], ["password_salt", "2f33050751bebfabeb5d862e53237bfbc93e729886cbeddea99beb464d387c06c4eb287cf76db426e59bc174245bf523af872d34d74631afed737abbb7208b54205047e124ad21313f6ac88884dec419a9663c968f40238cb25995db88f1222675acb7b9c425ad34459d0ea9e2c9ae38d28ded8ebb42e1a999b573d9d08fefd4"], ["password_digest", "71e87bd8d5ebc20c03736378ffa26ba75a476c7cd5a6f519a18b635b43e63923"], ["created_at", "2015-07-05 09:21:35.020827"], ["updated_at", "2015-07-05 09:21:35.020827"]]
79234
+  (0.6ms) commit transaction
79235
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1391]]
79236
+  (0.7ms) DELETE FROM "users";
79237
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79238
+  (0.1ms) begin transaction
79239
+ SQL (0.5ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Ms. Easton Hane"], ["password_salt", "e82edb958cb24aafb42feaff9c38f8c48666c88a0cf91febdb03f7f679f02e112059561ea0d6dd5cd100290be007d3d2afeee5e0f31907a30aad0bdad968ad5b7a6f0091246d95b4aa321871c6c6cc6ed5e35e36db641e9169ff2b89a56a6eb3bb4dd29c9510084e4e304e6b43b863bc4841196ad90ebc52a414a4b49c5d0e45"], ["password_digest", "ac964c7f601b2aa87bcc8916b4acd001df7b8a19b98308d76dea00f4ce9b1b59"], ["created_at", "2015-07-05 09:22:38.351932"], ["updated_at", "2015-07-05 09:22:38.351932"]]
79240
+  (1.2ms) commit transaction
79241
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1392]]
79242
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1392]]
79243
+  (1.1ms) DELETE FROM "users";
79244
+  (0.2ms) begin transaction
79245
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Manuela Schowalter"], ["password_salt", "b436e9b239aa9eba53dfda517c5564ed060d6bcabd8a9c58b26ade27fa00339c9168303c3205b5810d75deb5a582336bf0a88d35d44f321283a908e5d93f0d3e7a40da2dddca8d8f0ac835c102283265ca80accdbd799f098b0b1d9c46245c3adf982ebdcad0521cdb6ad1fca73deff210595109c2c1fe4f402dda2c28c14622"], ["password_digest", "7efaee88571369e4bbac2459664b81d4fcaa056606c9ec47966923eee5505659"], ["created_at", "2015-07-05 09:22:38.373927"], ["updated_at", "2015-07-05 09:22:38.373927"]]
79246
+  (0.6ms) commit transaction
79247
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1393]]
79248
+  (0.6ms) DELETE FROM "users";
79249
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79250
+  (0.1ms) begin transaction
79251
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Vaughn Bruen MD"], ["password_salt", "347f066dd6b3768f63daec3ff3bab745f656c052a9eb884ef47cd7234a768e222c19277bded754fc346ae70662f25b1b1aadd38ea8a5832d1d0f44a61e5d3679019c54d0f461324c2fd11abff69589879cd167db26cb093be1ce238edae3f6cbafdbee85d6f26140bcf86c269cfb39afbccabd266d17ca5cebdc982313c7bdaf"], ["password_digest", "385174753574c89b39fdec34b7d908b4d945b22d96fa4f67bc3df2162151cc76"], ["created_at", "2015-07-05 09:22:59.470922"], ["updated_at", "2015-07-05 09:22:59.470922"]]
79252
+  (1.1ms) commit transaction
79253
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1394]]
79254
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1394]]
79255
+  (1.8ms) DELETE FROM "users";
79256
+  (0.1ms) begin transaction
79257
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Talia Christiansen I"], ["password_salt", "d11f85ea8cc52cc23d0861f49fd2c4fd866c1513ba5b7ab1759b6400bf56ca75b74a95d201a1c9dc0ea3d26ba2918167a76fae133c16f6ab802bd8a58e2be68176e538131a83823eb40697c0258c0f7cbdbb7d78dd63a8b854d9a84b8a4091d2aa2eaad7a01a27a3df2d174de8fba5339009fd7758927250fc631f448168471b"], ["password_digest", "12bbbb82ba92c97b5f3828dd1fcda71519f4723cf4fd7824bf861463b788ec19"], ["created_at", "2015-07-05 09:22:59.493379"], ["updated_at", "2015-07-05 09:22:59.493379"]]
79258
+  (0.8ms) commit transaction
79259
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1395]]
79260
+  (1.4ms) DELETE FROM "users";
79261
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79262
+  (0.1ms) begin transaction
79263
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Ms. Ephraim Pfannerstill"], ["password_salt", "4bfb5011f12ab4be70d555863b2f6c8fec255d32f8a546ec05b4930d813632b4182eaca2663c4eeafb019af323b80862f1820253bfbf03f1ecb5d5d2a6244d3c8b3a634bf4f4235fd5a066cd5317fa9743798b792ea4203d4744ca2916243251f7f0cd9705dd1fe5508deaf08991fa53ee649fc322c236fcdd329e369053aad1"], ["password_digest", "73e64f5ff9b11a564dd7ba2bff538f2e444a6d928483f334df6e77631e8332ac"], ["created_at", "2015-07-05 09:23:22.000127"], ["updated_at", "2015-07-05 09:23:22.000127"]]
79264
+  (1.0ms) commit transaction
79265
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1396]]
79266
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1396]]
79267
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1396]]
79268
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1396]]
79269
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1396]]
79270
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1396]]
79271
+  (0.8ms) DELETE FROM "users";
79272
+  (0.1ms) begin transaction
79273
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Karine Gorczany"], ["password_salt", "ad128708b1d9d4be622dcfb456355943c3bd7f689ca7722d4a78f4767512c13d0d54190034cd1bf501d0c392132a93f7388945c3b764e7f20bd917b7e61d6794355683d6e6899b9e15fcc881382323471f01755fada86b2816c7744ecb87288a77267a7df762c7fa128c233ebe62a180104d2c1bfd5b39c1cd0e9b3198435eb0"], ["password_digest", "38bfdf27edc46dd62d1485f0cae037e6a701c5a7be5322bffde35eeb7104aec6"], ["created_at", "2015-07-05 09:23:22.028098"], ["updated_at", "2015-07-05 09:23:22.028098"]]
79274
+  (0.6ms) commit transaction
79275
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1397]]
79276
+  (0.6ms) DELETE FROM "users";
79277
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79278
+  (0.1ms) begin transaction
79279
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Mrs. Wilmer Crona"], ["password_salt", "7f8a64715aa8d0953beb9ebad9a320ad777c8ff57bddfedef8e3dce552fb4f13b9715e7a54aafb2436d34396734ab68074812f671657100bb0c89d1090343623089fb397d0e08ae5679ef523bb69ce4e3457b3844c204df419d410eb3d3e87f0169329cefa421a5ff6b2fc8ad83eb6304da3429b40f49102d1e95bdf5cf3db34"], ["password_digest", "baebf3ac1456bee24d50db0f11c6ba63bf54317e5f3e7d4973b5631adb9cc53d"], ["created_at", "2015-07-05 09:23:33.557713"], ["updated_at", "2015-07-05 09:23:33.557713"]]
79280
+  (1.1ms) commit transaction
79281
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1398]]
79282
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1398]]
79283
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1398]]
79284
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1398]]
79285
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1398]]
79286
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1398]]
79287
+  (1.2ms) DELETE FROM "users";
79288
+  (0.1ms) begin transaction
79289
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Jaylen Kemmer"], ["password_salt", "b9c59874c0eb7f1a7b30d4101b7abdb2435b2a0f51ab50817a5764ed261a75d75a8cb78feab9b7779469730f246efc754cc2e227b265c1e7b4a28453cd3475999d4104dba39ae05ce1ebf0c39e93d4ff376331ebc4ab4854c1eeab00aa25d50edde634216843cbd2bc1528d1a31b0593535b257ef809f447994982247702bbf0"], ["password_digest", "284fe7d726ae51594a255972ae2a2450d79fe9f98376a3cb4d7404b2b33a3ad6"], ["created_at", "2015-07-05 09:23:33.587048"], ["updated_at", "2015-07-05 09:23:33.587048"]]
79290
+  (0.8ms) commit transaction
79291
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1399]]
79292
+  (0.5ms) DELETE FROM "users";
79293
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79294
+  (0.1ms) begin transaction
79295
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Stanford Kessler"], ["password_salt", "b68fb06f9fc44dfae3a89930d7f3f04d5c9c7c7cda10e6e2227b945455f33e3fc6670edce2572a11e121a27b28aedf164e9e779f5050650b3b7d77e1463387a2be07635efef0a1392df22c2369ea9bc6fd8071ab889f554d2ad15a6f29dfe9587748a7f714e0be5651d693a470514d9b73e29a23b48550de80c9bf6cec42deff"], ["password_digest", "9446a70319f12ea8e9d0b5e961a0d1f9dcd7de13e16c791842b4acac895091cb"], ["created_at", "2015-07-05 09:24:06.344534"], ["updated_at", "2015-07-05 09:24:06.344534"]]
79296
+  (1.0ms) commit transaction
79297
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1400]]
79298
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1400]]
79299
+  (0.7ms) DELETE FROM "users";
79300
+  (0.1ms) begin transaction
79301
+ SQL (0.6ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Alexzander Boyle"], ["password_salt", "581c035f5fee8988ddd644e10a3c782b76b688efd6395f989032dae9c9e907ba2097637994a57e01bf202bb66e1705822f881324b391294fc5886bb02e20278f7ef442e3b45d8e0bf710a240bec89c06c005bcee8edcfc08dd4ef274913beb3cbc842a493fd75a5cf172ca137c878e51c069ca0bc4029de8f0157c5a1986029a"], ["password_digest", "bd88bb1fd70ccbe3e1f10ad9103c3edec15b49b96737b384afb8faea0617d217"], ["created_at", "2015-07-05 09:24:06.367516"], ["updated_at", "2015-07-05 09:24:06.367516"]]
79302
+  (0.6ms) commit transaction
79303
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1401]]
79304
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1401]]
79305
+  (0.8ms) DELETE FROM "users";
79306
+  (0.1ms) begin transaction
79307
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["nickname", "Ruthe Russel"], ["password_salt", "31f624ab97beb220e9950dc0a95eca099d35fd3fe66c42daba91175c7775e8f97d93294638f3b2b1ccf144de4dcc957777c40cb7fe229ad2a5e22fc7511f07ae1fd62f346b6a39c6e9e7d044e754547955373adb67c00f338a8649cc0ea3e67ef404c5f89e7a3ec139137c5319f61ae2eae5dff2a5c377fddc58810660e304f9"], ["password_digest", "f744621985b380c29e51ab8dcdcbc68d1b07744f813e9846706a628b26c5aedd"], ["created_at", "2015-07-05 09:24:06.379581"], ["updated_at", "2015-07-05 09:24:06.379581"]]
79308
+  (0.7ms) commit transaction
79309
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1402]]
79310
+  (0.6ms) DELETE FROM "users";
79311
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79312
+  (0.1ms) begin transaction
79313
+ SQL (0.7ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Grace Schulist"], ["password_salt", "ecd34a253834b21eb8a27c9bab0bb218df6ee03f2ede86b8391058b8da5bfcd03a720b3c47d53b2cfc9ad2581d5a596c7a429f5c00fe697012af62880fb0af9689a84e42410ace3b776f5108e6053a9258e13b7ac4e88c64c459d1d579a70782ffb55149e8d0a474dced9f30547039a436a4a57e9ec3b147e8bdaeb82ae5ab85"], ["password_digest", "7c9fa89679542acbfee5157377daf5b7fe3569b8f30725e00c3c100e30d2a8c5"], ["created_at", "2015-07-05 09:24:32.715061"], ["updated_at", "2015-07-05 09:24:32.715061"]]
79314
+  (1.1ms) commit transaction
79315
+  (0.6ms) DELETE FROM "users";
79316
+  (0.1ms) begin transaction
79317
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Ms. Raphaelle Hintz"], ["password_salt", "3ea7c0ef65f6a3db29b591c87a862562b7e1e773357578cc948e5a534e4af3292438463a61442924dbb66c51b845af1eaae3e47bb2ac28ad5730899da1175ebbae85e89320da09001635365765a8381495d23adc200cf45ddb2b33e193fa5184787035f53aa50c2aa8a578af63940489b59fecacfaf1d526ac38af196c949304"], ["password_digest", "d7764831f3dfdd6571b96ad6737a1589cea85d62872da6a8507ec9a1c96b76f8"], ["created_at", "2015-07-05 09:24:32.729116"], ["updated_at", "2015-07-05 09:24:32.729116"]]
79318
+  (0.6ms) commit transaction
79319
+  (0.5ms) DELETE FROM "users";
79320
+  (0.1ms) begin transaction
79321
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["nickname", "Jessica Gutmann"], ["password_salt", "a572fc20a343fe67f1d2c91768d202ed9b73152320e66f9d660d311bb14157093f0a762c9e78826ab7ec7dfc978f8390e59c4da2098f43626baa5ec3d7c6b381c95f4015aa1de32c4bed8a05845c03619baf984fa3f12728a9b58141b9eca4c064f277c206f81a4edf630ad27065e7eda2125146b049aac3fd4e0b3024abdc6c"], ["password_digest", "c4d0e0da09ea5aad429c716018b2f42fb91d5d76d02afe59b00bf94b7112124f"], ["created_at", "2015-07-05 09:24:32.738347"], ["updated_at", "2015-07-05 09:24:32.738347"]]
79322
+  (0.6ms) commit transaction
79323
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1405]]
79324
+  (0.7ms) DELETE FROM "users";
79325
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79326
+  (0.1ms) begin transaction
79327
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Taryn Bechtelar III"], ["password_salt", "c0565c19516e3cec3ac9da8d8c75850e809d879af7cec3082a6b287305f38d1dd41a05b58f2bb2a4bd2e1afa1c25c4d8ed9b07b36fa95f5e4b0ad7c0b6a9a15992aa0b9946dd7c8f0c0aa925c3d9aea1eb1a7b2831f0bf7119863e9b330d1e7d5c2ddef8d6c93b7c652e65efbb2bc385b226b1e54c166ec18991d09ea92f2039"], ["password_digest", "c4b0cfa3fd3cb6187293f82a2d906a6a8d2387bbbe6baa4212a53e9a4f3f19ba"], ["created_at", "2015-07-05 09:25:14.963638"], ["updated_at", "2015-07-05 09:25:14.963638"]]
79328
+  (1.0ms) commit transaction
79329
+  (0.7ms) DELETE FROM "users";
79330
+  (0.1ms) begin transaction
79331
+ SQL (0.6ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Dr. Angeline Thiel"], ["password_salt", "779c3d7534f9cfab1e9d25e0414059b3753fa7b327edbbbf24ec181f60236bb58f6edfbce6c41d3ea083455a48ddd014f0d4ab9f23a05aec0c693e64729d11812fc755b11fe343f7d716e992a79a5fa3e4d2700714153a1a82ecf7a4cbdd808c52122c2842ae1ba6bb832e672a9cce4d955ac736407eeb6ddeb8e1db3029bb35"], ["password_digest", "f76fbb78728210a46e74e495fc137e7d67b56c940d4cfe19f70f64543b43fffc"], ["created_at", "2015-07-05 09:25:14.981547"], ["updated_at", "2015-07-05 09:25:14.981547"]]
79332
+  (0.6ms) commit transaction
79333
+  (0.7ms) DELETE FROM "users";
79334
+  (0.1ms) begin transaction
79335
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["nickname", "Miss Moriah Johns"], ["password_salt", "259cdbaee8f668f76870249b2ff0159fc07b273a266bb3abe1928e303ab25324eafaba2ee0df944a515515e0412a2cc246f8c614682def3db1b7f487d3560be20c13d09850f92a1a87b3057d6f46930f79148346db20ef8f5118a34f328c80c7ac92fa534d7a4bf2206a0dd95e0da57838769fc2a0b98b8d9db70b519c2d5e18"], ["password_digest", "513d72b8a1b720d2319d0fe348388066b81f88ed78c5fb9b6426243f88ffda68"], ["created_at", "2015-07-05 09:25:14.994439"], ["updated_at", "2015-07-05 09:25:14.994439"]]
79336
+  (0.5ms) commit transaction
79337
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1408]]
79338
+  (1.1ms) DELETE FROM "users";
79339
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79340
+  (0.1ms) begin transaction
79341
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Fabian West I"], ["password_salt", "84b59dc124155e109226a8060c981cfb75a2b34ef647c2f7f030231c0beb150bcaa33d35712c0cb9e576cc04f754bb0d301590b8af56b470f63079c747fa921fea17bb1a49421e4e3f50e8d23ff7d8dbbede6bc43d6d41e2cf141ce5f534fc2a5c78a3e1b464648052f3ec2998a6e6ac67efbb09513cdc99ee32819a4bd2417a"], ["password_digest", "0306f500057d00a64d3d0a799a4dec8b0826945fc019b13c1086a9c7bacecd56"], ["created_at", "2015-07-05 09:25:22.942611"], ["updated_at", "2015-07-05 09:25:22.942611"]]
79342
+  (1.0ms) commit transaction
79343
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1409]]
79344
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1409]]
79345
+  (1.2ms) DELETE FROM "users";
79346
+  (0.1ms) begin transaction
79347
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Ms. Jett Schaden"], ["password_salt", "bd839d4f12d77abc3a4acdf3ec660eb641ad706eb889e9a33100d897a7b9f03a6d89130b70f4533026574c44ffd7868c0cf60edece568289789d2e62c62de32feaf69330bb48eb9ee41c9f5c8f724af3b89c48f1f1abec5da04877474cb2a79a1ccd76a6b22c1014a533bbdc7f005fd051c5900a5654fc357f07d51df6a4d327"], ["password_digest", "fae2060a3db3ae9e60d2485b862c3561e70ffb4d746858b458aedfc336ab5e8b"], ["created_at", "2015-07-05 09:25:22.967259"], ["updated_at", "2015-07-05 09:25:22.967259"]]
79348
+  (0.5ms) commit transaction
79349
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1410]]
79350
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1410]]
79351
+  (1.4ms) DELETE FROM "users";
79352
+  (0.1ms) begin transaction
79353
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["nickname", "Kailey Hermann"], ["password_salt", "ae7073960ae63f2185d21ab9c8c48598ade976bb9adf42c30e0ca6737a54d8e4e24f9516a2ce94e00ee74774d86dbd34e1b507bda96f2e5e6522fa30f44328f7901afe14f68f937c748be58db94d3839bf036c5b19b16343ffc31cf7e179c45f46c5efe8894024a7bce5384533913f2ca9525062bf848d55079209468ffee04b"], ["password_digest", "e32f071700c0297ac38a073629f2891960749af78f24523a046dc3d25965d454"], ["created_at", "2015-07-05 09:25:22.980112"], ["updated_at", "2015-07-05 09:25:22.980112"]]
79354
+  (1.0ms) commit transaction
79355
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1411]]
79356
+  (0.7ms) DELETE FROM "users";
79357
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
79358
+  (0.1ms) begin transaction
79359
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Antwan Labadie"], ["password_salt", "328c19be47a33a292156472c8b993aecb6e002b5e826fc0d0dbec8cbabc5ef476145ca511227a597bc5c7fe30173589614964d85069d83fb97efed1c9e5894c9b8e7cadea372710f3c9a3afc695456b9239ba1d765ddc5ae195a340f7575accc96a799397d5277491f1877f12b8fa3e4b5b2ef42c8c1be29f47324c517969775"], ["password_digest", "220e6b5120eb04af18189202ca71de2374f2ecb7f9e768735bac5a90ad05c4de"], ["created_at", "2015-07-05 09:25:28.275478"], ["updated_at", "2015-07-05 09:25:28.275478"]]
79360
+  (1.2ms) commit transaction
79361
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1412]]
79362
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1412]]
79363
+  (0.6ms) DELETE FROM "users";
79364
+  (0.0ms) begin transaction
79365
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Samanta Langworth"], ["password_salt", "3ea4c791e967dcd6378448adbb878d759ed0368011951c44994b3928e0902bd4a2aca8769bb88b2af436d7d5beb18cae1ce0cfb12ccaf1344e37a51af06bd8b2bcdb3ed409e6024fa8ee3d95aa9c73d020fe9b634ebec673b96781c90c9be80f532e30b8fcdb2d0c66faab58462e201e06176c7b60d128f6676ff621e1a75010"], ["password_digest", "59f6801f34459eee3a4d2338ef7e9534674c5bf3a6d674f43751ecc96e3c8795"], ["created_at", "2015-07-05 09:25:28.293190"], ["updated_at", "2015-07-05 09:25:28.293190"]]
79366
+  (0.5ms) commit transaction
79367
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1413]]
79368
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1413]]
79369
+  (0.7ms) DELETE FROM "users";
79370
+  (0.1ms) begin transaction
79371
+ SQL (0.6ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["nickname", "Elisa Wolff"], ["password_salt", "e548208c2564abca328504fcfd45c59e88245dc5b990b2fdcfc906ee6acca8e2d479a429d031dfeb398567c5151b4418ace5a0d42ed7291011035c1b47ace2f454f8c67b13cb4084688b59b3ebdc94cb099103c57176ba1d718f2843edc9d105ccbdd56823abd4be3a3cae493e328e1a2fb5da2369db4e744023dacf0da4c6de"], ["password_digest", "6c98a1664370c2e63c492d24c4a4419d25a1892125e2346c8a7e28d1cbd3a022"], ["created_at", "2015-07-05 09:25:28.304331"], ["updated_at", "2015-07-05 09:25:28.304331"]]
79372
+  (0.9ms) commit transaction
79373
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1414]]
79374
+  (0.6ms) DELETE FROM "users";
79375
+  (0.1ms) begin transaction
79376
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Anabel Reinger"], ["password_salt", "d9c57a9232611180b97a4861ed5048c112f355559924f622eaa89f4e71c6cbd736a7be02d041a8ef9138bc8477b6cb0ca2a27c867ddd2a76c8489858a701fb74054e65342b82a7e8713581c99fa0b3c397c342f839f0f533273ef6ca000b23c4509545349a7d55547a6d464d1ea2c6c9bdf35aee8c5332409b1dfd7a91d6e51e"], ["password_digest", "700ce9dd730d4057da828ed8eace60ed1aa4258fc9b794dddde48bbf51480506"], ["created_at", "2015-07-05 09:25:28.318033"], ["updated_at", "2015-07-05 09:25:28.318033"]]
79377
+  (0.5ms) commit transaction
79378
+ Started GET "/confirmation_requests/new" for 127.0.0.1 at 2015-07-05 18:25:28 +0900
79379
+ Processing by Nyauth::ConfirmationRequestsController#new as HTML
79380
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/confirmation_requests/new.html.erb within layouts/application (27.5ms)
79381
+ Completed 200 OK in 278ms (Views: 277.7ms | ActiveRecord: 0.0ms)
79382
+ Started POST "/confirmation_requests" for 127.0.0.1 at 2015-07-05 18:25:28 +0900
79383
+ Processing by Nyauth::ConfirmationRequestsController#create as HTML
79384
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user1@example.com"}, "commit"=>"request confirmation"}
79385
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "user1@example.com"]]
79386
+  (0.1ms) begin transaction
79387
+ SQL (0.4ms) UPDATE "users" SET "confirmation_key" = ?, "confirmation_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmation_key", "bf9aad42f31de8f39343dc9a321ce4b756116ac8a6a343b6372f4ee7a7efb7ca"], ["confirmation_key_expired_at", "2015-07-05 10:25:28.644088"], ["updated_at", "2015-07-05 09:25:28.644783"], ["id", 1415]]
79388
+  (0.7ms) commit transaction
79389
+ Redirected to http://www.example.com/
79390
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_confirmation.html.erb within layouts/nyauth/mailer (5.6ms)
79391
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_confirmation.text.erb within layouts/nyauth/mailer (5.2ms)
79392
+
79393
+ Nyauth::RequestMailer#request_confirmation: processed outbound mail in 349.0ms
79394
+
79395
+ Sent mail to user1@example.com (8.1ms)
79396
+ Date: Sun, 05 Jul 2015 18:25:29 +0900
79397
+ From: from@example.com
79398
+ To: user1@example.com
79399
+ Message-ID: <5598f8096588_77a13fed22060208914d9@mbpA1502.local.mail>
79400
+ Subject: Request confirmation
79401
+ Mime-Version: 1.0
79402
+ Content-Type: multipart/alternative;
79403
+ boundary="--==_mimepart_5598f8094eed_77a13fed22060208913a2";
79404
+ charset=UTF-8
79405
+ Content-Transfer-Encoding: 7bit
79406
+
79407
+
79408
+ ----==_mimepart_5598f8094eed_77a13fed22060208913a2
79409
+ Content-Type: text/plain;
79410
+ charset=UTF-8
79411
+ Content-Transfer-Encoding: 7bit
79412
+
79413
+ Plese confirm your email
79414
+
79415
+ http://www.example.com/confirmations/bf9aad42f31de8f39343dc9a321ce4b756116ac8a6a343b6372f4ee7a7efb7ca
79416
+
79417
+
79418
+ ----==_mimepart_5598f8094eed_77a13fed22060208913a2
79419
+ Content-Type: text/html;
79420
+ charset=UTF-8
79421
+ Content-Transfer-Encoding: 7bit
79422
+
79423
+ <p>
79424
+ Plese confirm your email
79425
+ </p>
79426
+ <p>
79427
+ <a href="http://www.example.com/confirmations/bf9aad42f31de8f39343dc9a321ce4b756116ac8a6a343b6372f4ee7a7efb7ca">confirm</a>
79428
+ </p>
79429
+
79430
+
79431
+ ----==_mimepart_5598f8094eed_77a13fed22060208913a2--
79432
+
79433
+ Completed 302 Found in 389ms (ActiveRecord: 1.4ms)
79434
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79435
+ Processing by PagesController#index as HTML
79436
+ Rendered pages/index.html.erb within layouts/application (0.3ms)
79437
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
79438
+ Started GET "/confirmations/bf9aad42f31de8f39343dc9a321ce4b756116ac8a6a343b6372f4ee7a7efb7ca" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79439
+ Processing by Nyauth::ConfirmationsController#update as HTML
79440
+ Parameters: {"confirmation_key"=>"bf9aad42f31de8f39343dc9a321ce4b756116ac8a6a343b6372f4ee7a7efb7ca"}
79441
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_key" = ? LIMIT 1 [["confirmation_key", "bf9aad42f31de8f39343dc9a321ce4b756116ac8a6a343b6372f4ee7a7efb7ca"]]
79442
+  (0.0ms) begin transaction
79443
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "confirmation_key" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2015-07-05 09:25:29.057659"], ["confirmation_key", nil], ["updated_at", "2015-07-05 09:25:29.058464"], ["id", 1415]]
79444
+  (0.5ms) commit transaction
79445
+ Redirected to http://www.example.com/
79446
+ Completed 302 Found in 16ms (ActiveRecord: 1.0ms)
79447
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79448
+ Processing by PagesController#index as HTML
79449
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79450
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
79451
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1415]]
79452
+  (0.6ms) DELETE FROM "users";
79453
+  (0.1ms) begin transaction
79454
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Keshawn Heidenreich IV"], ["password_salt", "a780ecec858ebe0e9a3eb06286517cf525656a4f27dec2266eb870c9126dffac8047d214209f92d862f01203de7737d0bd5bbab3d2abe709a312ea4d7f1c0e00b3f98fc96076e32bd1d9732069163ba3c5e9fbf7128324dc308f6e33d32d39d955fd67bd8de40fe37cdf7f6189e6e33cb9784acfaf3729dc00dd2d0c3799d3a1"], ["password_digest", "c1a50fb8579ee97c7da7c4d1e9f79c21e16951f79a78830538625a5f26852578"], ["created_at", "2015-07-05 09:25:29.091742"], ["updated_at", "2015-07-05 09:25:29.091742"]]
79455
+  (0.6ms) commit transaction
79456
+ Started GET "/confirmation_requests/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79457
+ Processing by Nyauth::ConfirmationRequestsController#new as HTML
79458
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/confirmation_requests/new.html.erb within layouts/application (7.7ms)
79459
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
79460
+ Started POST "/confirmation_requests" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79461
+ Processing by Nyauth::ConfirmationRequestsController#create as HTML
79462
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user2@example.com"}, "commit"=>"request confirmation"}
79463
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "user2@example.com"]]
79464
+  (0.1ms) begin transaction
79465
+ SQL (0.3ms) UPDATE "users" SET "confirmation_key" = ?, "confirmation_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmation_key", "0e230dff2f18c83c2553ae454c135ff12474c8a03df799d7523adc3287107be6"], ["confirmation_key_expired_at", "2015-07-05 10:25:29.118054"], ["updated_at", "2015-07-05 09:25:29.118744"], ["id", 1416]]
79466
+  (0.5ms) commit transaction
79467
+ Redirected to http://www.example.com/
79468
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_confirmation.html.erb within layouts/nyauth/mailer (8.3ms)
79469
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_confirmation.text.erb within layouts/nyauth/mailer (4.6ms)
79470
+
79471
+ Nyauth::RequestMailer#request_confirmation: processed outbound mail in 16.1ms
79472
+
79473
+ Sent mail to user2@example.com (3.2ms)
79474
+ Date: Sun, 05 Jul 2015 18:25:29 +0900
79475
+ From: from@example.com
79476
+ To: user2@example.com
79477
+ Message-ID: <5598f80924121_77a13fed220602089164c@mbpA1502.local.mail>
79478
+ Subject: Request confirmation
79479
+ Mime-Version: 1.0
79480
+ Content-Type: multipart/alternative;
79481
+ boundary="--==_mimepart_5598f8092374f_77a13fed22060208915a5";
79482
+ charset=UTF-8
79483
+ Content-Transfer-Encoding: 7bit
79484
+
79485
+
79486
+ ----==_mimepart_5598f8092374f_77a13fed22060208915a5
79487
+ Content-Type: text/plain;
79488
+ charset=UTF-8
79489
+ Content-Transfer-Encoding: 7bit
79490
+
79491
+ Plese confirm your email
79492
+
79493
+ http://www.example.com/confirmations/0e230dff2f18c83c2553ae454c135ff12474c8a03df799d7523adc3287107be6
79494
+
79495
+
79496
+ ----==_mimepart_5598f8092374f_77a13fed22060208915a5
79497
+ Content-Type: text/html;
79498
+ charset=UTF-8
79499
+ Content-Transfer-Encoding: 7bit
79500
+
79501
+ <p>
79502
+ Plese confirm your email
79503
+ </p>
79504
+ <p>
79505
+ <a href="http://www.example.com/confirmations/0e230dff2f18c83c2553ae454c135ff12474c8a03df799d7523adc3287107be6">confirm</a>
79506
+ </p>
79507
+
79508
+
79509
+ ----==_mimepart_5598f8092374f_77a13fed22060208915a5--
79510
+
79511
+ Completed 302 Found in 34ms (ActiveRecord: 1.0ms)
79512
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79513
+ Processing by PagesController#index as HTML
79514
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79515
+ Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
79516
+ Started GET "/confirmations/0e230dff2f18c83c2553ae454c135ff12474c8a03df799d7523adc3287107be6" for 127.0.0.1 at 2015-07-05 21:25:29 +0900
79517
+ Processing by Nyauth::ConfirmationsController#update as HTML
79518
+ Parameters: {"confirmation_key"=>"0e230dff2f18c83c2553ae454c135ff12474c8a03df799d7523adc3287107be6"}
79519
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_key" = ? LIMIT 1 [["confirmation_key", "0e230dff2f18c83c2553ae454c135ff12474c8a03df799d7523adc3287107be6"]]
79520
+  (0.0ms) begin transaction
79521
+  (0.0ms) rollback transaction
79522
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/confirmations/edit.html.erb within layouts/application (0.0ms)
79523
+ Completed 200 OK in 0ms (Views: 9.0ms | ActiveRecord: 0.0ms)
79524
+  (0.8ms) DELETE FROM "users";
79525
+  (0.1ms) begin transaction
79526
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Miss Marion Kozey"], ["password_salt", "b6fb228befeecdd4e91d29709cccb0d1195d1fcfec2c680ed0e1bdac3c373af971ed5139ce93d6532e83991d3cf5f2fa8d3495c0c39d038b6d6697c73908986257a4991f42802fc8a1c8475e658cac740fb1fb300a7b912cbab50011b70e5050fc28f6560c0b39b8fd6f0579cc242c5b5569c3d78ebba9ec620b5e15d1142c7f"], ["password_digest", "f5d53ea2a938136b638f2403b1de8cdf353c92caf4623310ad9bffa16b0b09d7"], ["created_at", "2015-07-05 09:25:29.183955"], ["updated_at", "2015-07-05 09:25:29.183955"]]
79527
+  (0.6ms) commit transaction
79528
+ Started GET "/rack_session/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79529
+ Started PUT "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79530
+ Started GET "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79531
+ Started GET "/password/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79532
+ Processing by Nyauth::PasswordsController#edit as HTML
79533
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1417]]
79534
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1417]]
79535
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/passwords/edit.html.erb within layouts/application (13.2ms)
79536
+ Completed 200 OK in 30ms (Views: 28.3ms | ActiveRecord: 0.1ms)
79537
+ Started PATCH "/password" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79538
+ Processing by Nyauth::PasswordsController#update as HTML
79539
+ Parameters: {"utf8"=>"✓", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update"}
79540
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1417]]
79541
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1417]]
79542
+  (0.0ms) begin transaction
79543
+ SQL (0.3ms) UPDATE "users" SET "password_salt" = ?, "password_digest" = ?, "updated_at" = ? WHERE "users"."id" = ? [["password_salt", "1417379f371f80c9e868d88039f594d9e61cae82545cd2a2661f7fb5cbc8b7e62bd8b03cdeaeefdcace29215102561b56bde6d0927ed61b9251e0445e7bbce817bedb731a3f7c0bef9e57ec3a6fd22e4b2758a0e99a50cb8c4dd112ce7148db57b6db6573234f3162e2a392961def62e486fb4eee4ce6d5dd9cdcc68cfaabc13dcd2"], ["password_digest", "00ac8ead06411f73f02b0914cce4a1dd1785845bf6834be2f05d43a2f36bff6b"], ["updated_at", "2015-07-05 09:25:29.245297"], ["id", 1417]]
79544
+  (0.4ms) commit transaction
79545
+ Redirected to http://www.example.com/
79546
+ Completed 302 Found in 13ms (ActiveRecord: 0.9ms)
79547
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79548
+ Processing by PagesController#index as HTML
79549
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79550
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
79551
+  (0.7ms) DELETE FROM "users";
79552
+  (0.1ms) begin transaction
79553
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Dr. Aglae Ferry"], ["password_salt", "00be7e451d5b901e60f7f2fcddbf4226b2927bec95fd4850ca6364159669b7ede4f63f65a6c4724c2ca1212963422ac5a6684baa1e93e2d6d849e5f453aefe5b6ef60d3eac708b6bf8b82dffcc466e1f6115bf88699e2e132a8aef590799a75d68ddcfef0e4ddc368d563ac6055bfd11eb7b18a3f66dfbae44d34c113b326e84"], ["password_digest", "0cc44cc02bf475ac17110455217d6d97b248dc99870a8a7855dd4c6c29e7d927"], ["created_at", "2015-07-05 09:25:29.265981"], ["updated_at", "2015-07-05 09:25:29.265981"]]
79554
+  (0.5ms) commit transaction
79555
+ Started GET "/rack_session/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79556
+ Started PUT "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79557
+ Started GET "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79558
+ Started GET "/password/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79559
+ Processing by Nyauth::PasswordsController#edit as HTML
79560
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1418]]
79561
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1418]]
79562
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/passwords/edit.html.erb within layouts/application (5.1ms)
79563
+ Completed 200 OK in 13ms (Views: 11.8ms | ActiveRecord: 0.1ms)
79564
+ Started PATCH "/password" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79565
+ Processing by Nyauth::PasswordsController#update as HTML
79566
+ Parameters: {"utf8"=>"✓", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update"}
79567
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1418]]
79568
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1418]]
79569
+  (0.1ms) begin transaction
79570
+  (0.1ms) rollback transaction
79571
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/passwords/edit.html.erb within layouts/application (18.0ms)
79572
+ Completed 200 OK in 33ms (Views: 23.2ms | ActiveRecord: 0.4ms)
79573
+  (0.8ms) DELETE FROM "users";
79574
+ Started GET "/registration/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79575
+ Processing by Nyauth::RegistrationsController#new as HTML
79576
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.erb within layouts/application (11.3ms)
79577
+ Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.0ms)
79578
+ Started POST "/registration" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79579
+ Processing by Nyauth::RegistrationsController#create as HTML
79580
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user1@example.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
79581
+  (0.1ms) begin transaction
79582
+ SQL (0.4ms) INSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "user1@example.com"], ["password_salt", "62f08f6a2bdb66efc6435271cabbe9fdfb5190069a8e4cb68d6b3f35c6ebb0798bec0f6e1058aea65dd4864e0eee7a5209993845925b5d1adf3427e66a2592b8b11a638b1838f5002421f10d327bb3dadf8603b0e940347b7eec443bff6fc788b6e8597e55249d29afe50a46c8fff4ccee94140669ff29740765890cd1186b45"], ["password_digest", "e99e14d37ba4309e2392990c59ae6f7dd94a568bd651bf6baaf11a9868c54b9a"], ["created_at", "2015-07-05 09:25:29.403396"], ["updated_at", "2015-07-05 09:25:29.403396"]]
79583
+  (1.1ms) commit transaction
79584
+ Redirected to http://www.example.com/
79585
+ Completed 302 Found in 15ms (ActiveRecord: 1.5ms)
79586
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79587
+ Processing by PagesController#index as HTML
79588
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79589
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
79590
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" DESC LIMIT 1
79591
+  (0.6ms) DELETE FROM "users";
79592
+ Started GET "/registration/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79593
+ Processing by Nyauth::RegistrationsController#new as HTML
79594
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.erb within layouts/application (5.6ms)
79595
+ Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
79596
+ Started POST "/registration" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79597
+ Processing by Nyauth::RegistrationsController#create as HTML
79598
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
79599
+  (0.1ms) begin transaction
79600
+  (0.0ms) rollback transaction
79601
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.erb within layouts/application (6.9ms)
79602
+ Completed 200 OK in 19ms (Views: 12.1ms | ActiveRecord: 0.1ms)
79603
+  (0.1ms) begin transaction
79604
+ SQL (0.5ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Monserrat O'Keefe"], ["password_salt", "43ec6d339c6674ff47317a23d9296047f2f95076521ff0a6f413568ce0388801e29edf919e2b9b58f914f3d1c9587f16b0a3b4736408aa77c081e6a10c46bc9b697c2ca119a339fbe13e8cff42a5897f9fa198f18bd910032ab98e91fb11827f1bfc2c5c850bd3fd7f2afe4988b96524deafb6c3342460cf6b5f3894019e6260"], ["password_digest", "9e78e7d22faa6579ac9cfbffd49dd9ee12195435fcbceda0d08f5326a8618157"], ["created_at", "2015-07-05 09:25:29.471452"], ["updated_at", "2015-07-05 09:25:29.471452"]]
79605
+  (1.8ms) commit transaction
79606
+ Started GET "/reset_password_requests/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79607
+ Processing by Nyauth::ResetPasswordRequestsController#new as HTML
79608
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_password_requests/new.html.erb within layouts/application (6.9ms)
79609
+ Completed 200 OK in 17ms (Views: 17.1ms | ActiveRecord: 0.0ms)
79610
+ Started POST "/reset_password_requests" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79611
+ Processing by Nyauth::ResetPasswordRequestsController#create as HTML
79612
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user1@example.com"}, "commit"=>"reset password"}
79613
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "user1@example.com"]]
79614
+  (0.0ms) begin transaction
79615
+ SQL (0.3ms) UPDATE "users" SET "reset_password_key" = ?, "reset_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_key", "a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f"], ["reset_password_key_expired_at", "2015-07-05 10:25:29.512202"], ["updated_at", "2015-07-05 09:25:29.512609"], ["id", 1420]]
79616
+  (0.6ms) commit transaction
79617
+ Redirected to http://www.example.com/
79618
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.html.erb within layouts/nyauth/mailer (2.6ms)
79619
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.text.erb within layouts/nyauth/mailer (2.0ms)
79620
+
79621
+ Nyauth::RequestMailer#request_reset_password: processed outbound mail in 22.1ms
79622
+
79623
+ Sent mail to user1@example.com (2.3ms)
79624
+ Date: Sun, 05 Jul 2015 18:25:29 +0900
79625
+ From: from@example.com
79626
+ To: user1@example.com
79627
+ Message-ID: <5598f80985b48_77a13fed220602089186a@mbpA1502.local.mail>
79628
+ Subject: Request reset password
79629
+ Mime-Version: 1.0
79630
+ Content-Type: multipart/alternative;
79631
+ boundary="--==_mimepart_5598f809854c9_77a13fed2206020891796";
79632
+ charset=UTF-8
79633
+ Content-Transfer-Encoding: 7bit
79634
+
79635
+
79636
+ ----==_mimepart_5598f809854c9_77a13fed2206020891796
79637
+ Content-Type: text/plain;
79638
+ charset=UTF-8
79639
+ Content-Transfer-Encoding: 7bit
79640
+
79641
+ Plese set your new password
79642
+
79643
+ http://www.example.com/reset_passwords/a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f/edit
79644
+
79645
+
79646
+ ----==_mimepart_5598f809854c9_77a13fed2206020891796
79647
+ Content-Type: text/html;
79648
+ charset=UTF-8
79649
+ Content-Transfer-Encoding: 7bit
79650
+
79651
+ <p>
79652
+ Plese set your new password
79653
+ </p>
79654
+ <p>
79655
+ <a href="http://www.example.com/reset_passwords/a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f/edit">set new password</a>
79656
+ </p>
79657
+
79658
+
79659
+ ----==_mimepart_5598f809854c9_77a13fed2206020891796--
79660
+
79661
+ Completed 302 Found in 39ms (ActiveRecord: 1.0ms)
79662
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79663
+ Processing by PagesController#index as HTML
79664
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79665
+ Completed 200 OK in 3ms (Views: 3.1ms | ActiveRecord: 0.0ms)
79666
+ Started GET "/reset_passwords/a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79667
+ Processing by Nyauth::ResetPasswordsController#edit as HTML
79668
+ Parameters: {"reset_password_key"=>"[FILTERED]"}
79669
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f"]]
79670
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_passwords/edit.html.erb within layouts/application (6.8ms)
79671
+ Completed 200 OK in 18ms (Views: 15.6ms | ActiveRecord: 0.1ms)
79672
+ Started PATCH "/reset_passwords/a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79673
+ Processing by Nyauth::ResetPasswordsController#update as HTML
79674
+ Parameters: {"utf8"=>"✓", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "reset_password_key"=>"[FILTERED]"}
79675
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "a37add986ccfc5c58a68fae8dad1647814f3c7de6516b233cac00ac78550322f"]]
79676
+  (0.0ms) begin transaction
79677
+ SQL (0.3ms) UPDATE "users" SET "password_salt" = ?, "password_digest" = ?, "reset_password_key" = ?, "updated_at" = ? WHERE "users"."id" = ? [["password_salt", "142087abd252ffcca909d80263701872c7f530bbd36ddb30abfb10d2f022e150a863b692dc962821dba60edf7a88197cb69b2a4e64f103178807cf0e96153d2358974079af69631867bfc9d64680cf6152e88f87af5a52106286aff07dbf59e12c24fec3d75e3a96157308da62647439754158ed49855dc83e847f82f872fcfc6d23"], ["password_digest", "65c9aa0759a99ab437f9e88811c493afaf73ccd32f2062732ee3b0a5564c929b"], ["reset_password_key", nil], ["updated_at", "2015-07-05 09:25:29.589865"], ["id", 1420]]
79678
+  (0.5ms) commit transaction
79679
+ Redirected to http://www.example.com/session/new
79680
+ Completed 302 Found in 18ms (ActiveRecord: 0.9ms)
79681
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79682
+ Processing by Nyauth::SessionsController#new as HTML
79683
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (8.4ms)
79684
+ Completed 200 OK in 22ms (Views: 19.3ms | ActiveRecord: 0.0ms)
79685
+  (0.9ms) DELETE FROM "users";
79686
+  (0.2ms) begin transaction
79687
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Dallin Dicki"], ["password_salt", "1c8df7f0699b0c046c5d06a6e806517fc1c45fb156399ad2445d08096c66d960e17a79b3d89eb95648b8d7774e5a51b64bc42f4ba8fa48b05314050bfa6aef99a94898f0c173e650c835fef9708063654ff390511d011b086efe198df8608ee39ec4a09f4d5db89445ae34dd67e90681524c0c20abd946796660676b6abc9946"], ["password_digest", "8df0744ab7305238c34fd724573b099afbcd00f624daf5f4c4b08c69b128b0d3"], ["created_at", "2015-07-05 09:25:29.648465"], ["updated_at", "2015-07-05 09:25:29.648465"]]
79688
+  (0.7ms) commit transaction
79689
+ Started GET "/reset_password_requests/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79690
+ Processing by Nyauth::ResetPasswordRequestsController#new as HTML
79691
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/reset_password_requests/new.html.erb within layouts/application (9.7ms)
79692
+ Completed 200 OK in 22ms (Views: 21.2ms | ActiveRecord: 0.0ms)
79693
+ Started POST "/reset_password_requests" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79694
+ Processing by Nyauth::ResetPasswordRequestsController#create as HTML
79695
+ Parameters: {"utf8"=>"✓", "user"=>{"email"=>"user2@example.com"}, "commit"=>"reset password"}
79696
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "user2@example.com"]]
79697
+  (0.0ms) begin transaction
79698
+ SQL (0.2ms) UPDATE "users" SET "reset_password_key" = ?, "reset_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_key", "76e291efe188d11741af55f8c1d6b178ae3122ea793b8adad30e185aa099ef0d"], ["reset_password_key_expired_at", "2015-07-05 10:25:29.687268"], ["updated_at", "2015-07-05 09:25:29.687681"], ["id", 1421]]
79699
+  (0.6ms) commit transaction
79700
+ Redirected to http://www.example.com/
79701
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.html.erb within layouts/nyauth/mailer (2.4ms)
79702
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.text.erb within layouts/nyauth/mailer (2.4ms)
79703
+
79704
+ Nyauth::RequestMailer#request_reset_password: processed outbound mail in 7.3ms
79705
+
79706
+ Sent mail to user2@example.com (2.2ms)
79707
+ Date: Sun, 05 Jul 2015 18:25:29 +0900
79708
+ From: from@example.com
79709
+ To: user2@example.com
79710
+ Message-ID: <5598f809ab36d_77a13fed22060208920ad@mbpA1502.local.mail>
79711
+ Subject: Request reset password
79712
+ Mime-Version: 1.0
79713
+ Content-Type: multipart/alternative;
79714
+ boundary="--==_mimepart_5598f809aad16_77a13fed22060208919e5";
79715
+ charset=UTF-8
79716
+ Content-Transfer-Encoding: 7bit
79717
+
79718
+
79719
+ ----==_mimepart_5598f809aad16_77a13fed22060208919e5
79720
+ Content-Type: text/plain;
79721
+ charset=UTF-8
79722
+ Content-Transfer-Encoding: 7bit
79723
+
79724
+ Plese set your new password
79725
+
79726
+ http://www.example.com/reset_passwords/76e291efe188d11741af55f8c1d6b178ae3122ea793b8adad30e185aa099ef0d/edit
79727
+
79728
+
79729
+ ----==_mimepart_5598f809aad16_77a13fed22060208919e5
79730
+ Content-Type: text/html;
79731
+ charset=UTF-8
79732
+ Content-Transfer-Encoding: 7bit
79733
+
79734
+ <p>
79735
+ Plese set your new password
79736
+ </p>
79737
+ <p>
79738
+ <a href="http://www.example.com/reset_passwords/76e291efe188d11741af55f8c1d6b178ae3122ea793b8adad30e185aa099ef0d/edit">set new password</a>
79739
+ </p>
79740
+
79741
+
79742
+ ----==_mimepart_5598f809aad16_77a13fed22060208919e5--
79743
+
79744
+ Completed 302 Found in 17ms (ActiveRecord: 1.0ms)
79745
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79746
+ Processing by PagesController#index as HTML
79747
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79748
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
79749
+ Started GET "/reset_passwords/76e291efe188d11741af55f8c1d6b178ae3122ea793b8adad30e185aa099ef0d/edit" for 127.0.0.1 at 2015-07-05 21:25:29 +0900
79750
+ Processing by Nyauth::ResetPasswordsController#edit as HTML
79751
+ Parameters: {"reset_password_key"=>"[FILTERED]"}
79752
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_key" = ? LIMIT 1 [["reset_password_key", "76e291efe188d11741af55f8c1d6b178ae3122ea793b8adad30e185aa099ef0d"]]
79753
+ Redirected to http://www.example.com/session/new
79754
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
79755
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 21:25:29 +0900
79756
+ Processing by Nyauth::SessionsController#new as HTML
79757
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (0.0ms)
79758
+ Completed 200 OK in 0ms (Views: 8.7ms | ActiveRecord: 0.0ms)
79759
+  (0.7ms) DELETE FROM "users";
79760
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79761
+ Processing by Nyauth::SessionsController#new as HTML
79762
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.5ms)
79763
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
79764
+  (0.1ms) begin transaction
79765
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Sibyl Ullrich"], ["password_salt", "8d5fb80f5e9264648ff7cd8f76b78ca94db37ec8e7ccfb4e99a195bbfd31bf9710538c15bb9cf8297a326d53572cdafe3a10baebbeacfc527131fc2ec2ef2d10bb15145471deb97193fd6706a9bab005d7867dd17d1af0d1a0ad8e6820fd2745deea75f4d2e52a2958f4883af0c3a864e70485b54031be35365334af1b9cefdd"], ["password_digest", "9e4b0b6439ca57961f94875a745a050711be6807ee876248ca108aa728bc86fd"], ["created_at", "2015-07-05 09:25:29.747997"], ["updated_at", "2015-07-05 09:25:29.747997"]]
79766
+  (0.5ms) commit transaction
79767
+ Started POST "/session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79768
+ Processing by Nyauth::SessionsController#create as HTML
79769
+ Parameters: {"utf8"=>"✓", "session_service"=>{"email"=>"user1@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
79770
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "user1@example.com"]]
79771
+ Redirected to http://www.example.com/
79772
+ Completed 302 Found in 10ms (ActiveRecord: 0.2ms)
79773
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79774
+ Processing by PagesController#index as HTML
79775
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79776
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
79777
+  (0.8ms) DELETE FROM "users";
79778
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79779
+ Processing by Nyauth::SessionsController#new as HTML
79780
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.6ms)
79781
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
79782
+ Started POST "/session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79783
+ Processing by Nyauth::SessionsController#create as HTML
79784
+ Parameters: {"utf8"=>"✓", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
79785
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", ""]]
79786
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.1ms)
79787
+ Completed 200 OK in 13ms (Views: 8.0ms | ActiveRecord: 0.1ms)
79788
+  (0.1ms) begin transaction
79789
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Elena Cummings"], ["password_salt", "b890f2566acfbf12c3885a5bc7e597e100a3c16ebf5f409f53c649b5887854dcb68f27092c77323ea4187b448bb806993ab00317f7dfb3763b3d774201ffb27727b27733a782ac1f2130b77be47106c601e15d1d92b6a8a4405de79c6fbb204f12339ce9c58b592b47b39b3d110ca3a1ba4715daf5e9e34ca0b9da2bbf04e83c"], ["password_digest", "45cfaded0fea7c62626bea62aef3f7322231882a1a72aaadf003a9837fddd7e0"], ["created_at", "2015-07-05 09:25:29.815694"], ["updated_at", "2015-07-05 09:25:29.815694"]]
79790
+  (0.6ms) commit transaction
79791
+ Started GET "/rack_session/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79792
+ Started PUT "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79793
+ Started GET "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79794
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79795
+ Processing by PagesController#index as HTML
79796
+ Rendered pages/index.html.erb within layouts/application (0.2ms)
79797
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
79798
+ Started DELETE "/session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79799
+ Processing by Nyauth::SessionsController#destroy as HTML
79800
+ Redirected to http://www.example.com/session/new
79801
+ Completed 302 Found in 5ms (ActiveRecord: 0.0ms)
79802
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79803
+ Processing by Nyauth::SessionsController#new as HTML
79804
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (4.8ms)
79805
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
79806
+  (0.9ms) DELETE FROM "users";
79807
+ Started GET "/admin/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79808
+ Processing by Nyauth::SessionsController#new as HTML
79809
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (12.1ms)
79810
+ Completed 200 OK in 22ms (Views: 22.1ms | ActiveRecord: 0.0ms)
79811
+  (0.0ms) begin transaction
79812
+ SQL (0.4ms) INSERT INTO "admins" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "admin1@example.com"], ["password_salt", "4286d0733ddb31a06716e199e134ab9cb7ef6e9c498bf92bfd8cf75ac3a3e70ce05e9f70fb90cb8d35a13f97662d88c1ba0ddd255411decee54617a5502641d911ede4d076446b17a2572c22dc5238119a2cdaf63a4f996075125be102ffb4a69c4d6bc42f835782b7e116731f55a80b7c3e31b8e44480457be4200203801da6"], ["password_digest", "79537b71dbd13a83c241b2889c0d6daf3b220015253859656b2dc8e553fe2cf9"], ["created_at", "2015-07-05 09:25:29.888977"], ["updated_at", "2015-07-05 09:25:29.888977"]]
79813
+  (0.6ms) commit transaction
79814
+ Started POST "/admin/session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79815
+ Processing by Nyauth::SessionsController#create as HTML
79816
+ Parameters: {"utf8"=>"✓", "session_service"=>{"email"=>"admin1@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
79817
+ Admin Load (0.2ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", "admin1@example.com"]]
79818
+ Redirected to http://www.example.com/
79819
+ Completed 302 Found in 9ms (ActiveRecord: 0.2ms)
79820
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79821
+ Processing by PagesController#index as HTML
79822
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79823
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
79824
+  (1.3ms) DELETE FROM "admins";
79825
+ Started GET "/admin/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79826
+ Processing by Nyauth::SessionsController#new as HTML
79827
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (8.1ms)
79828
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
79829
+ Started POST "/admin/session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79830
+ Processing by Nyauth::SessionsController#create as HTML
79831
+ Parameters: {"utf8"=>"✓", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
79832
+ Admin Load (0.1ms) SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", ""]]
79833
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (6.9ms)
79834
+ Completed 200 OK in 22ms (Views: 15.6ms | ActiveRecord: 0.1ms)
79835
+  (0.1ms) begin transaction
79836
+ SQL (0.4ms) INSERT INTO "admins" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "admin2@example.com"], ["password_salt", "2208b98b2af89307b60008fdee1a6e762d51ff2ef975e235797c0a608cc3b2db72e254d4010ea62c89acd27627782d97eefb8cd9dd3dbf705e23f8743c58ea4e371c891055a943f315cd02f6ce1e2fe4e819825cbe3e0c40850d0c9e31fb2b2b3ec3de5efb83e44b11f3687715c614416fb76c6a95985e404303f4796d07dd2a"], ["password_digest", "ee539feb239e9c3a53fac3cf03fffd3d45088b0b2af2e20ef3066186af6a8689"], ["created_at", "2015-07-05 09:25:29.973101"], ["updated_at", "2015-07-05 09:25:29.973101"]]
79837
+  (0.8ms) commit transaction
79838
+ Started GET "/rack_session/edit" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79839
+ Started PUT "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79840
+ Started GET "/rack_session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79841
+ Started GET "/" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79842
+ Processing by PagesController#index as HTML
79843
+ Rendered pages/index.html.erb within layouts/application (0.0ms)
79844
+ Completed 200 OK in 3ms (Views: 3.3ms | ActiveRecord: 0.0ms)
79845
+ Started DELETE "/session" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79846
+ Processing by Nyauth::SessionsController#destroy as HTML
79847
+ Redirected to http://www.example.com/session/new
79848
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
79849
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 18:25:29 +0900
79850
+ Processing by Nyauth::SessionsController#new as HTML
79851
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (5.0ms)
79852
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
79853
+  (0.9ms) DELETE FROM "admins";
79854
+ Started GET "/session/new" for 127.0.0.1 at 2015-07-05 18:25:30 +0900
79855
+ Processing by Nyauth::SessionsController#new as HTML
79856
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.erb within layouts/application (12.9ms)
79857
+ Completed 200 OK in 17ms (Views: 17.2ms | ActiveRecord: 0.0ms)
79858
+  (0.1ms) begin transaction
79859
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "confirmation_key", "confirmation_key_expired_at", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Haven Rowe"], ["confirmation_key", "key"], ["confirmation_key_expired_at", "2015-07-05 10:25:30.248535"], ["password_salt", "e92fe1599f3841f861bdc2087fdf5765454ef913389dc23ddb4e5858275ccf62c828748c04393b244535a477f2a2111333602a7f0b096494e3925d43daf4237a3012c00cfbf4273d258dfbf3ffea49dab031e4870b27c5c67478fa671093c678cc8eaebf6d277329631cc3865116814dc87bf41e1183e2726b2e23b5fe86b1e4"], ["password_digest", "0b876676af085b3b2043ac3304c9a597dc67efae9ddba69402529f62555ebd3b"], ["created_at", "2015-07-05 09:25:30.253056"], ["updated_at", "2015-07-05 09:25:30.253056"]]
79860
+  (0.6ms) commit transaction
79861
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_confirmation.html.erb within layouts/nyauth/mailer (2.4ms)
79862
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_confirmation.text.erb within layouts/nyauth/mailer (2.2ms)
79863
+
79864
+ Nyauth::RequestMailer#request_confirmation: processed outbound mail in 7.4ms
79865
+  (0.9ms) DELETE FROM "users";
79866
+  (0.1ms) begin transaction
79867
+ SQL (0.8ms) INSERT INTO "users" ("email", "nickname", "reset_password_key", "reset_password_key_expired_at", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Nellie Renner"], ["reset_password_key", "key"], ["reset_password_key_expired_at", "2015-07-05 10:25:30.267661"], ["password_salt", "ef40c58620c2f47a820ce197b9046089cb5e607bd8e118081b7bdc227d92ff607249f9677fb6af4fa3a87dfcf7615eb22535ae0b24e5264281728e064ff5cbd7732bb5522c568f4983bb290642afa05b5af65e0b5f5a1f896c9b80a0a571f23e1bc59812dad5566445bb0864eb9aff28cf97c37d5a52f34139daae1368834320"], ["password_digest", "b32a099b6dda02e97a9891a87f5d591f7b6994fe46270c1f92a77b2ab73b4877"], ["created_at", "2015-07-05 09:25:30.275437"], ["updated_at", "2015-07-05 09:25:30.275437"]]
79868
+  (1.2ms) commit transaction
79869
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.html.erb within layouts/nyauth/mailer (4.7ms)
79870
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_reset_password.text.erb within layouts/nyauth/mailer (2.4ms)
79871
+
79872
+ Nyauth::RequestMailer#request_reset_password: processed outbound mail in 9.7ms
79873
+  (0.8ms) DELETE FROM "users";
79874
+  (0.1ms) begin transaction
79875
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user1@example.com"], ["nickname", "Anna Kshlerin"], ["password_salt", "ad6f75b494cc1deaa81457b9b1e08522e406fedd817a6e33bedc10eed3892cf3d1f5bcb2700b5da74a956e86da80a4706a05dce0889c84958e89d4b2351244d0c5190044f2ed234c18c3d8aa8cd9ad6ffd4a562b11c976c5755d490fff5ffd2be787a77457b6e7b5e66ee6f8d25390ea815ca3340654e2d52980045746584f29"], ["password_digest", "7377ad00a41c7c93cb78500e55b334058176bc8126ec6b4902c4c092a11cd3ac"], ["created_at", "2015-07-05 09:25:30.298077"], ["updated_at", "2015-07-05 09:25:30.298077"]]
79876
+  (0.5ms) commit transaction
79877
+  (0.5ms) DELETE FROM "users";
79878
+  (0.1ms) begin transaction
79879
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user2@example.com"], ["nickname", "Garland Leannon"], ["password_salt", "fae291f702092aca9a89e9332939fa3014bd3363af2140ff6048d005604f70d7e558c7de6bd83e8c01b0223f4b318e136f1a94b6fdb21ac556f4c42c1a7d155481fa08db200d508b8d6176293b61fefdba9c3450ef15ab34dd2fcb7154bf697cf846a2d0285f88dc4754d6f53e6d82845d24aafe68b5c1090f8ddadc7a4a6b48"], ["password_digest", "6c6a1cf1ffe40c33f60a1aa661f5e261054ea22cade805e142e0ee9fccc00471"], ["created_at", "2015-07-05 09:25:30.310595"], ["updated_at", "2015-07-05 09:25:30.310595"]]
79880
+  (0.7ms) commit transaction
79881
+  (0.9ms) DELETE FROM "users";
79882
+  (0.1ms) begin transaction
79883
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user3@example.com"], ["nickname", "Clementine Effertz"], ["password_salt", "4da3575367b456dff64a41e979837ea6ebb306d5e3a7be0cd30b72cfa66e53d1cda74997891da69a731843cc9b65cb96cad12c93a9e24636e41548574f4c2cfdb696bbfa73483f8758032b7aaa79f3a664f0fe86684bf09228b03b13bc8d66b38b0bd4fc5872f04f1e24983d85431f9fd933a924df789c88771a603947c58a12"], ["password_digest", "1c947c41c68520e8c0f516c69540f193042055505861c1545d6c8ebec71a964f"], ["created_at", "2015-07-05 09:25:30.337091"], ["updated_at", "2015-07-05 09:25:30.337091"]]
79884
+  (0.5ms) commit transaction
79885
+  (1.1ms) DELETE FROM "users";
79886
+  (0.1ms) begin transaction
79887
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correct@example.com"], ["nickname", "Robbie Reilly"], ["password_salt", "70fe6dec60e3b295cb239e112619a6e0cb696b0379dd71dc0aa9b5073ab3b4f1e9b11117d77968b1ae95898653fbac6a363089f3b95f5da5bf14a2739ae6d3ce3efc3f1700b9660f0a50fbbc0eee3cc549e4d5a10cffa5fed8b971d22ce6f9d401e69e118b7f64ffb0a265da678eb6ca6ddc699a4599f9c9a0bf5cfec16c6c37"], ["password_digest", "3189992a82457d5632a07c164c49d771015cca15eefb30dfb914364a6f9ec589"], ["created_at", "2015-07-05 09:25:30.373011"], ["updated_at", "2015-07-05 09:25:30.373011"]]
79888
+  (1.0ms) commit transaction
79889
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "correct@example.com"]]
79890
+  (0.7ms) DELETE FROM "users";
79891
+  (0.5ms) begin transaction
79892
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correct@example.com"], ["nickname", "Lempi Wehner"], ["password_salt", "ccc03fdf7ea712a4ea2406afaa4626507e93bd8f0396453bdda44d8375cc5e8b7ef2c4b66c498689838134cea399693cf3e568d4681041df7a947f12277130db92106964492b8136bb0c6d76cf514f63b0173f22a7471ca6bc1012dca2b41ac032db30e7974a2156c9cb6b23497b5f369b25e47b5eb28a9ca65852a33e56e7f1"], ["password_digest", "eabd5300a14257104a2c062b9deb7d18936c45502d473a640f9c67ed95f1e150"], ["created_at", "2015-07-05 09:25:30.399504"], ["updated_at", "2015-07-05 09:25:30.399504"]]
79893
+  (0.7ms) commit transaction
79894
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "correct@example.com"]]
79895
+  (1.2ms) DELETE FROM "users";
79896
+  (0.1ms) begin transaction
79897
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correct@example.com"], ["nickname", "Kayli Von"], ["password_salt", "a7afc31496d4b7346392d9ccd33c634e4a808552c84a493f33a065dfaf8e0441cb74214a1ca2497adb1826c4f3af0ca07f47e065e9c3c936c603a1fcecd10fd78ec793c27b6a03580b5a5f91f8ef9c6c297a62cd075a346230d40a99f5ef72e01f2c1e34a1f9d0ed281252f283ab19f292050e65721da3492f66b32d232f946e"], ["password_digest", "8789e31f1618a99f1ac669a83edd1f0b80e88e8a7e2660ee9dcc5633ea0759de"], ["created_at", "2015-07-05 09:25:30.426343"], ["updated_at", "2015-07-05 09:25:30.426343"]]
79898
+  (0.5ms) commit transaction
79899
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "wrong@example.com"]]
79900
+  (0.6ms) DELETE FROM "users";
79901
+  (0.2ms) begin transaction
79902
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "correct@example.com"], ["nickname", "Mrs. Richard Fadel"], ["password_salt", "e22f7800fbd340dcec37888a3af5feaf44f767578421e5817a30a8ec663c621dc72ccacf853bc158a82560c33f944b2315e887087fee3e090bb82e40cc95d476498146b2e042b9c26821d4b07da3ff2e2d835917b3cf2c930b3c6ff6df5475b1edf10c8c43a5fd301fd966dd8c6cc567c91d41bfc81d20d65d9fb4a0871a25ea"], ["password_digest", "c3f0bcb244c74d723b9f35e08086254c44e3f43bed71630a0d7eb2acd7e5ad0d"], ["created_at", "2015-07-05 09:25:30.437661"], ["updated_at", "2015-07-05 09:25:30.437661"]]
79903
+  (0.6ms) commit transaction
79904
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "wrong@example.com"]]
79905
+  (0.6ms) DELETE FROM "users";
79906
+  (0.0ms) begin transaction
79907
+ SQL (0.9ms) INSERT INTO "users" ("email", "nickname", "confirmation_key", "confirmation_key_expired_at", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user4@example.com"], ["nickname", "Sylvan Stracke"], ["confirmation_key", "key"], ["confirmation_key_expired_at", "2015-07-05 10:25:30.444002"], ["password_salt", "5bd9a93381f9f853e176a113857908c5ef51143d6146c569acfa1f12d682d112c94784ad0c283945ae420a814de53f90f91f5e4d0b146666effb3e34d3d6184c28d3b266d3ccbe9816fe88a3907fb8593e8e082d2daf5f0d60fc7d1e051eacd0fec760b0b19ddcd51e01c96e53df7338850457ea97d67cb315342ddccaae77e4"], ["password_digest", "8d5c4f4d5885c848c29aac610309f9b8cfd2737413c896695b9722c0b3fbbb18"], ["created_at", "2015-07-05 09:25:30.449344"], ["updated_at", "2015-07-05 09:25:30.449344"]]
79908
+  (0.6ms) commit transaction
79909
+  (0.0ms) begin transaction
79910
+ SQL (0.0ms) UPDATE "users" SET "confirmed_at" = ?, "password_salt" = ?, "password_digest" = ?, "confirmation_key" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2015-07-05 09:25:30.453554"], ["password_salt", "1433837f5e46f1feaec917ec22260b74dae9a964a25730344685228fecb8c81eb815d5ae89c1c1e7e1bf49387a15ecec26435d0d2829eadc8798ce5cb081348df6174c050cdd0cecb9284b804dea1f9ff4d160585a9f04ab6ae36af4072b5ed4da8d9b334c6093911932696ccc76fcbd395c7ee03fad803e0f69a00a870e87bf8ed0"], ["password_digest", "2e9694779912d8dfd3611f15d6d507e3a5e5e14c5ea9f3081e9f8c8e835d2969"], ["confirmation_key", nil], ["updated_at", "2015-07-05 09:25:30.453554"], ["id", 1433]]
79911
+  (0.0ms) commit transaction
79912
+  (1.5ms) DELETE FROM "users";
79913
+  (0.1ms) begin transaction
79914
+ SQL (0.4ms) INSERT INTO "users" ("email", "nickname", "confirmation_key", "confirmation_key_expired_at", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user5@example.com"], ["nickname", "Alexie Stamm"], ["confirmation_key", "key"], ["confirmation_key_expired_at", "2015-07-05 10:25:30.471183"], ["password_salt", "93ffcc32d091f0af83b546acac9e72f9e288c4c09d2c790e68d2b75f4767a98c50ab58cc7580b046940940b051657ac781f40c45affb818aa638b824da9a92984d60d06d63f4cadd811e203af04f5553701394f35e9964c8e06ce700e130338412b7f752c8072b08bbd7a5436cbf127367dbfa9bed563d1dc53d97a741ca1fbc"], ["password_digest", "e25e9cd4356c7876e2be2ec7d120a18f07acbd4fe9b69cb0ada4284550441c75"], ["created_at", "2015-07-05 09:25:30.484121"], ["updated_at", "2015-07-05 09:25:30.484121"]]
79915
+  (0.5ms) commit transaction
79916
+  (0.0ms) begin transaction
79917
+ SQL (0.0ms) UPDATE "users" SET "confirmed_at" = ?, "password_salt" = ?, "password_digest" = ?, "confirmation_key" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2015-07-05 09:25:30.487168"], ["password_salt", "143435bc3d81f97c80920fdc8aec094393be531d5ac598476061581a870865b0039b16259deacfedf903665bda1a16c328319d9a571052f0a5f77262ff3501128bc56f75c772de36c5201201bcf72ed244a3cf09ec37acb15624c3b40e94d0c2c88417c48190580b91c6614d2679eef3936863c881af56e0830921e3995c0a511338"], ["password_digest", "00ab48c1403312fc287e326a46c0c4da23842eb8e8dd6b85db086bf711aa98c8"], ["confirmation_key", nil], ["updated_at", "2015-07-05 09:25:30.487168"], ["id", 1434]]
79918
+  (0.0ms) commit transaction
79919
+  (0.6ms) DELETE FROM "users";
79920
+  (0.1ms) begin transaction
79921
+ SQL (0.3ms) INSERT INTO "users" ("email", "nickname", "confirmation_key", "confirmation_key_expired_at", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["email", "user6@example.com"], ["nickname", "Dr. Mozell Koss"], ["confirmation_key", "key"], ["confirmation_key_expired_at", "2015-07-05 10:25:30.503625"], ["password_salt", "de0acf6eec2324cc5fe8c7937a68af075b80f2833614b3b91d50fb9b86f4ae4f6bc500e1436fc63d86aa0a4085ccc4a53478359f5a4660250b712e3a138287d779cf486599cbe90974b8a39cb44ead43e06ec8b3015ac922ec0a53b21246f7d092455af75f802d221d85101b769c1bde87f16a14a51dfff66f8614a97e17f4d5"], ["password_digest", "7febd1d28c234a4e6b41ea9f22f9fe57056937c2da0ae1697df1cbf0aad06cc8"], ["created_at", "2015-07-05 09:25:30.513981"], ["updated_at", "2015-07-05 09:25:30.513981"]]
79922
+  (0.5ms) commit transaction
79923
+  (0.0ms) begin transaction
79924
+ SQL (0.0ms) UPDATE "users" SET "confirmed_at" = ?, "password_salt" = ?, "password_digest" = ?, "confirmation_key" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmed_at", "2015-07-05 09:25:30.516168"], ["password_salt", "1435386cadc94814b5a26ecea852d7a8cd4a790aece2fbdc345f376cdd755a5b85d91fd7f347bfc9cfeb85a09f17422a2e4a3b002630b04faecf2058408430c0ff1efe4a57453b0bfb21f21c09b0bf11ff81f74b67e891217f59b64a6ae758d47080ba50b339150376609d0c711f5660a7effeaa764d3dcbd00d6761363556c50150"], ["password_digest", "b9b48cd58161d17ad0d96a3d1a840de1bc4e9a038a9445ce05a1e9cde68c1f47"], ["confirmation_key", nil], ["updated_at", "2015-07-05 09:25:30.516168"], ["id", 1435]]
79925
+  (0.0ms) commit transaction
79926
+  (0.8ms) DELETE FROM "users";
79927
+  (0.1ms) begin transaction
79928
+ SQL (0.6ms) INSERT INTO "users" ("email", "nickname", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?, ?) [["email", "user7@example.com"], ["nickname", "Stephania Barrows"], ["password_salt", "a74cc04e5d97bddc5e7a439aca2e4195cccdc411ba3b914584dca371a876f80c8a83fef678a5ca6d6fd5fbfdb968c5072cd8a50d34266c4bb261fe1e03917a606c4060162e2911f084c24cb7f7ded2cda0cd7525d96cd76ded1f235a3572c17d93815262ae374bf97cd4e4462b3635c70d9460a51074b5e6a22f04903385d600"], ["password_digest", "11d080e4e58ba2c6d5b27062c4c4a514ee88e50970d59b2ee04ef511862710e9"], ["created_at", "2015-07-05 09:25:30.539101"], ["updated_at", "2015-07-05 09:25:30.539101"]]
79929
+  (0.5ms) commit transaction
79930
+  (0.1ms) begin transaction
79931
+ SQL (0.5ms) UPDATE "users" SET "reset_password_key" = ?, "reset_password_key_expired_at" = ?, "password_salt" = ?, "password_digest" = ?, "updated_at" = ? WHERE "users"."id" = ? [["reset_password_key", "2cf1f2e4bbcf1a60b282623a6101ec127915be185c22d168688ca9b7563f1cc0"], ["reset_password_key_expired_at", "2015-07-05 10:25:30.542831"], ["password_salt", "1436fdcbbadcbd5356b9489a9bf21416a8e732a3604fc128d207f9100a9d8c0f374c0618fe22cb64ef01700900c3fee3e8259aea2f58cb200a284a51a3aa2e685238ed47082fb73fea7ca33ac463a5a5791b3e7f777f4a6dea8fc85cb1faa9ec404497f7173d89ce343c916bb9ee1fada68df05dbcf4b737fd5fbf9005f5835a7257"], ["password_digest", "982b21e79dc81e64a819d65c323ab78a91584cd3e1043e6a8d40b3ed251f96d4"], ["updated_at", "2015-07-05 09:25:30.551664"], ["id", 1436]]
79932
+  (0.9ms) commit transaction
79933
+  (1.3ms) DELETE FROM "users";
@@ -12,6 +12,12 @@ RSpec.shared_examples 'Nyauth::SessionConcern' do
12
12
  subject
13
13
  }.to change { controller.signed_in?(options) }.from(false).to(true)
14
14
  end
15
+
16
+ it '#signed_in?(as: :admin) should not change result from false'do
17
+ expect {
18
+ subject
19
+ }.not_to change { controller.signed_in?(as: :admin) }.from(false)
20
+ end
15
21
 
16
22
  it '#current_authenticated should change from result nil to user 'do
17
23
  expect {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nyauth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.3
4
+ version: 0.2.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - ppworks
@@ -161,7 +161,6 @@ files:
161
161
  - spec/dummy/tmp/capybara/capybara-201503172346495241516033.html
162
162
  - spec/dummy/tmp/capybara/capybara-201503172354248621830336.html
163
163
  - spec/dummy/tmp/capybara/capybara-20150623002226753539811.html
164
- - spec/dummy/tmp/pids/server.pid
165
164
  - spec/factories/admins.rb
166
165
  - spec/factories/users.rb
167
166
  - spec/featrues/nyauth/confirmation_requests_spec.rb
@@ -287,7 +286,6 @@ test_files:
287
286
  - spec/dummy/tmp/capybara/capybara-201503172346495241516033.html
288
287
  - spec/dummy/tmp/capybara/capybara-201503172354248621830336.html
289
288
  - spec/dummy/tmp/capybara/capybara-20150623002226753539811.html
290
- - spec/dummy/tmp/pids/server.pid
291
289
  - spec/factories/admins.rb
292
290
  - spec/factories/users.rb
293
291
  - spec/featrues/nyauth/confirmation_requests_spec.rb
@@ -1 +0,0 @@
1
- 95078