devise_token_auth 0.1.19.alpha3 → 0.1.19.alpha4

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: 7ae4d8e1327926f4561f4340616daf434f64e1ad
4
- data.tar.gz: 437cb5391ae5c23f2bfe95281e5c69ad759723cb
3
+ metadata.gz: c5c5a55513b151a78cccf48428e19de00d94a644
4
+ data.tar.gz: 14fcb036ebbdafa63f106b5111858023361c69e9
5
5
  SHA512:
6
- metadata.gz: c4dc45542b1f3b61c48fede455ad8c3a875e86f0bf8342b850a52b5bb68cc5dbb72dded573fda6fcae7571849acd5a396a830f7f94cdfb4a7056f224a5b8dddf
7
- data.tar.gz: ab855ed6aa7eba8a30dcc014e9d7b7bfcf108b2d8345db157ef7f04b620c6cc52922f1dede5bb95714eb20446261a05968afea92d7aa34578f6dcda810f309d4
6
+ metadata.gz: 6cee416cd24a5c54a276922873dec7dd8ef4b71229a4e1f65f5c1bbb502d206d2a735b2b66350d864030001a1e28d431b476fe21e573e9c0e151b8ba25488269
7
+ data.tar.gz: bd7099fe3db113dd5ad342946132a52f748b55b9900f0d71e71c37b43e943f9c7b1b9eef80232ff55b63215c1b70929d672feb3f422ab09d8cbfd0eab9b6f3a7
@@ -10,7 +10,7 @@ module DeviseTokenAuth
10
10
  client_id = SecureRandom.urlsafe_base64(nil, false)
11
11
  token = SecureRandom.urlsafe_base64(nil, false)
12
12
  token_hash = BCrypt::Password.create(token)
13
- expiry = Time.now + DeviseTokenAuth.token_lifespan
13
+ expiry = (Time.now + DeviseTokenAuth.token_lifespan).to_i
14
14
 
15
15
  @user.tokens[client_id] = {
16
16
  token: token_hash,
@@ -20,8 +20,9 @@ module DeviseTokenAuth
20
20
  @user.save!
21
21
 
22
22
  redirect_to(@user.build_auth_url(@user.confirm_success_url, {
23
- token: token,
24
- client_id: client_id
23
+ token: token,
24
+ client_id: client_id,
25
+ account_confirmation_success: true
25
26
  }))
26
27
  else
27
28
  raise ActionController::RoutingError.new('Not Found')
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.19.alpha3"
2
+ VERSION = "0.1.19.alpha4"
3
3
  end
@@ -17,7 +17,7 @@ Rails.application.configure do
17
17
  config.action_mailer.raise_delivery_errors = true
18
18
 
19
19
  # use mailcatcher for development
20
- config.action_mailer.default_url_options = { :host => 'localhost:3000' }
20
+ config.action_mailer.default_url_options = { :host => 'devise-token-auth.dev' }
21
21
  config.action_mailer.delivery_method = :smtp
22
22
  config.action_mailer.smtp_settings = { :address => 'localhost', :port => 1025 }
23
23
 
Binary file
@@ -28405,3 +28405,993 @@ Migrating to DeviseTokenAuthCreateUsers (20140714223034)
28405
28405
  SQL (0.4ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20140714223034"]]
28406
28406
   (0.5ms) COMMIT
28407
28407
  ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
28408
+
28409
+
28410
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:08:47 -0500
28411
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
28412
+
28413
+
28414
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:08:47 -0500
28415
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
28416
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
28417
+ Completed 401 Unauthorized in 7ms (Views: 0.2ms | ActiveRecord: 0.7ms)
28418
+
28419
+
28420
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-07-14 18:10:02 -0500
28421
+
28422
+
28423
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:10:02 -0500
28424
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
28425
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
28426
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
28427
+ Unpermitted parameters: registration
28428
+ Unpermitted parameters: registration
28429
+  (0.1ms) begin transaction
28430
+  (0.5ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test@test.com'
28431
+ User Load (1.5ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '2656cdfb80dd94ba59b0d042286eb64e83a0afa2f1a9c9141cfa3cf568cbd3b0' ORDER BY "users"."id" ASC LIMIT 1
28432
+ Binary data inserted for `string` type on column `confirmation_token`
28433
+ Binary data inserted for `string` type on column `encrypted_password`
28434
+ SQL (1.0ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-14 23:10:02.481640"], ["confirmation_token", "2656cdfb80dd94ba59b0d042286eb64e83a0afa2f1a9c9141cfa3cf568cbd3b0"], ["created_at", "2014-07-14 23:10:02.303855"], ["email", "test@test.com"], ["encrypted_password", "$2a$10$63qaesrKgNLB1IobDRr6Hes0fzIFcQsFuOP1wqoFOAK/zB7Ctut2u"], ["provider", "email"], ["tokens", "{}"], ["uid", "test@test.com"], ["updated_at", "2014-07-14 23:10:02.303855"]]
28435
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (2.1ms)
28436
+
28437
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 318.4ms
28438
+
28439
+ Sent mail to test@test.com (37.2ms)
28440
+ Date: Mon, 14 Jul 2014 18:10:02 -0500
28441
+ From: please-change-me-at-config-initializers-devise@example.com
28442
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
28443
+ To: test@test.com
28444
+ Message-ID: <53c4634ac659d_11ee03fc5d082dbf88686@Lynns-MacBook-Pro.local.mail>
28445
+ Subject: Confirmation instructions
28446
+ Mime-Version: 1.0
28447
+ Content-Type: text/html;
28448
+ charset=UTF-8
28449
+ Content-Transfer-Encoding: 7bit
28450
+
28451
+ <p>Welcome test@test.com!</p>
28452
+
28453
+ <p>You can confirm your account email through the link below:</p>
28454
+
28455
+ <p><a href="http://localhost:3000/auth/confirmation?confirmation_token=jnpXsHKxcWsE7nXhU8Uy">Confirm my account</a></p>
28456
+
28457
+  (17.2ms) commit transaction
28458
+ Completed 200 OK in 648ms (Views: 0.3ms | ActiveRecord: 20.5ms)
28459
+
28460
+
28461
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:10:25 -0500
28462
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28463
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
28464
+ Parameters: {"email"=>"test2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
28465
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
28466
+ Unpermitted parameters: registration
28467
+ Unpermitted parameters: registration
28468
+  (0.1ms) begin transaction
28469
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test2@test.com'
28470
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e' ORDER BY "users"."id" ASC LIMIT 1
28471
+ Binary data inserted for `string` type on column `confirmation_token`
28472
+ Binary data inserted for `string` type on column `encrypted_password`
28473
+ SQL (0.4ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-14 23:10:25.552369"], ["confirmation_token", "068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e"], ["created_at", "2014-07-14 23:10:25.369574"], ["email", "test2@test.com"], ["encrypted_password", "$2a$10$Is.6dLkLVB25/JF4RKySguUgp2pEQB.bcf38sEISejvuasqYRwnny"], ["provider", "email"], ["tokens", "{}"], ["uid", "test2@test.com"], ["updated_at", "2014-07-14 23:10:25.369574"]]
28474
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (1.8ms)
28475
+
28476
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 318.1ms
28477
+
28478
+ Sent mail to test2@test.com (23.8ms)
28479
+ Date: Mon, 14 Jul 2014 18:10:25 -0500
28480
+ From: please-change-me-at-config-initializers-devise@example.com
28481
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
28482
+ To: test2@test.com
28483
+ Message-ID: <53c46361d6c23_122aa3fc9ed42dbe070924@Lynns-MacBook-Pro.local.mail>
28484
+ Subject: Confirmation instructions
28485
+ Mime-Version: 1.0
28486
+ Content-Type: text/html;
28487
+ charset=UTF-8
28488
+ Content-Transfer-Encoding: 7bit
28489
+
28490
+ <p>Welcome test2@test.com!</p>
28491
+
28492
+ <p>You can confirm your account email through the link below:</p>
28493
+
28494
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=zdTpvoxWx5sMopussv5p">Confirm my account</a></p>
28495
+
28496
+  (1.8ms) commit transaction
28497
+ Completed 200 OK in 624ms (Views: 0.3ms | ActiveRecord: 3.0ms)
28498
+
28499
+
28500
+ Started GET "/auth/confirmation?confirmation_token=zdTpvoxWx5sMopussv5p" for 127.0.0.1 at 2014-07-14 18:10:38 -0500
28501
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
28502
+ Parameters: {"confirmation_token"=>"zdTpvoxWx5sMopussv5p"}
28503
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e' ORDER BY "users"."id" ASC LIMIT 1
28504
+  (0.0ms) begin transaction
28505
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["confirmation_token", nil], ["confirmed_at", "2014-07-14 23:10:38.787524"], ["tokens", "{}"], ["updated_at", "2014-07-14 23:10:38.787800"]]
28506
+  (0.6ms) commit transaction
28507
+  (0.1ms) begin transaction
28508
+ SQL (0.4ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["confirmation_token", "zdTpvoxWx5sMopussv5p"], ["tokens", "{\"ApBiuXy67Z1D4l32Wf82xg\":{\"token\":\"$2a$10$Ov2NiW428.2lIGqT00WAIe2oFeEIkMpr68tv9oE0dTJOWh7QWAfYO\",\"expiry\":\"2014-07-28 18:10:38 -0500\"}}"], ["updated_at", "2014-07-14 23:10:38.851264"]]
28509
+  (0.6ms) commit transaction
28510
+ Redirected to http://ng-token-auth.dev/?client_id=ApBiuXy67Z1D4l32Wf82xg&expiry=2014-07-28+18%3A10%3A38+-0500&token=tVaG6ytAf3uhEUFVkmaT2w&uid=test2%40test.com
28511
+ Completed 302 Found in 70ms (ActiveRecord: 2.2ms)
28512
+
28513
+
28514
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:10:39 -0500
28515
+
28516
+
28517
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:10:39 -0500
28518
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
28519
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test2@test.com' LIMIT 1
28520
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
28521
+
28522
+
28523
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:20:55 -0500
28524
+
28525
+
28526
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:20:55 -0500
28527
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
28528
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test2@test.com' LIMIT 1
28529
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
28530
+
28531
+
28532
+ Started GET "/auth/confirmation?confirmation_token=zdTpvoxWx5sMopussv5p" for 127.0.0.1 at 2014-07-14 18:25:49 -0500
28533
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
28534
+ Parameters: {"confirmation_token"=>"zdTpvoxWx5sMopussv5p"}
28535
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e' ORDER BY "users"."id" ASC LIMIT 1
28536
+ Completed 404 Not Found in 13ms
28537
+
28538
+ ActionController::RoutingError (Not Found):
28539
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/confirmations_controller.rb:27:in `show'
28540
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
28541
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
28542
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
28543
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
28544
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28545
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28546
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
28547
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28548
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28549
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28550
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28551
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
28552
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
28553
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
28554
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
28555
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
28556
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
28557
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
28558
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
28559
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
28560
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
28561
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
28562
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
28563
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
28564
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
28565
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
28566
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
28567
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
28568
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
28569
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
28570
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
28571
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28572
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28573
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28574
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28575
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28576
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
28577
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
28578
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28579
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28580
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28581
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28582
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28583
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28584
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28585
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28586
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28587
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28588
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28589
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28590
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
28591
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
28592
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
28593
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
28594
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
28595
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
28596
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
28597
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
28598
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
28599
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
28600
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
28601
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
28602
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
28603
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
28604
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
28605
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
28606
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
28607
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
28608
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
28609
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
28610
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
28611
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
28612
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
28613
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
28614
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
28615
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
28616
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
28617
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
28618
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
28619
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
28620
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
28621
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
28622
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
28623
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
28624
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
28625
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
28626
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28627
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
28628
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
28629
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
28630
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
28631
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
28632
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
28633
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
28634
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
28635
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
28636
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
28637
+
28638
+
28639
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
28640
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
28641
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
28642
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms)
28643
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.5ms)
28644
+
28645
+
28646
+ Started GET "/auth/confirmation?confirmation_token=zdTpvoxWx5sMopussv5p" for 127.0.0.1 at 2014-07-14 18:27:01 -0500
28647
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
28648
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
28649
+ Parameters: {"confirmation_token"=>"zdTpvoxWx5sMopussv5p"}
28650
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e' ORDER BY "users"."id" ASC LIMIT 1
28651
+ Completed 404 Not Found in 492ms
28652
+
28653
+ ActionController::RoutingError (Not Found):
28654
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/confirmations_controller.rb:27:in `show'
28655
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
28656
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
28657
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
28658
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
28659
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28660
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28661
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
28662
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28663
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28664
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28665
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28666
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
28667
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
28668
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
28669
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
28670
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
28671
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
28672
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
28673
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
28674
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
28675
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
28676
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
28677
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
28678
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
28679
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
28680
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
28681
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
28682
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
28683
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
28684
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
28685
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
28686
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28687
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28688
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28689
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28690
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28691
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
28692
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
28693
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28694
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28695
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28696
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28697
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28698
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28699
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28700
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28701
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28702
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28703
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28704
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28705
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
28706
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
28707
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
28708
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
28709
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
28710
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
28711
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
28712
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
28713
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
28714
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
28715
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
28716
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
28717
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
28718
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
28719
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
28720
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
28721
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
28722
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
28723
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
28724
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
28725
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
28726
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
28727
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
28728
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
28729
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
28730
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
28731
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
28732
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
28733
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
28734
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
28735
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
28736
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
28737
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
28738
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
28739
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
28740
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
28741
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28742
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
28743
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
28744
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
28745
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
28746
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
28747
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
28748
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
28749
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
28750
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
28751
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
28752
+
28753
+
28754
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
28755
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
28756
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
28757
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.3ms)
28758
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.9ms)
28759
+
28760
+
28761
+ Started GET "/auth/confirmation?confirmation_token=zdTpvoxWx5sMopussv5p" for 127.0.0.1 at 2014-07-14 18:27:10 -0500
28762
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
28763
+ Parameters: {"confirmation_token"=>"zdTpvoxWx5sMopussv5p"}
28764
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e' ORDER BY "users"."id" ASC LIMIT 1
28765
+ Completed 404 Not Found in 2ms
28766
+
28767
+ ActionController::RoutingError (Not Found):
28768
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/confirmations_controller.rb:27:in `show'
28769
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
28770
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
28771
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
28772
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
28773
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28774
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28775
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
28776
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28777
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28778
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28779
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28780
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
28781
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
28782
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
28783
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
28784
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
28785
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
28786
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
28787
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
28788
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
28789
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
28790
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
28791
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
28792
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
28793
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
28794
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
28795
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
28796
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
28797
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
28798
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
28799
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
28800
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28801
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28802
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28803
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28804
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28805
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
28806
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
28807
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28808
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28809
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28810
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28811
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28812
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28813
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28814
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28815
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28816
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28817
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28818
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28819
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
28820
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
28821
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
28822
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
28823
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
28824
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
28825
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
28826
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
28827
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
28828
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
28829
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
28830
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
28831
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
28832
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
28833
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
28834
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
28835
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
28836
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
28837
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
28838
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
28839
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
28840
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
28841
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
28842
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
28843
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
28844
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
28845
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
28846
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
28847
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
28848
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
28849
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
28850
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
28851
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
28852
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
28853
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
28854
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
28855
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28856
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
28857
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
28858
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
28859
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
28860
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
28861
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
28862
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
28863
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
28864
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
28865
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
28866
+
28867
+
28868
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
28869
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
28870
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
28871
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
28872
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (34.1ms)
28873
+
28874
+
28875
+ Started GET "/auth/confirmation?confirmation_token=zdTpvoxWx5sMopussv5p" for 127.0.0.1 at 2014-07-14 18:31:50 -0500
28876
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
28877
+ Parameters: {"confirmation_token"=>"zdTpvoxWx5sMopussv5p"}
28878
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '068a6c65acc375f71e085c1f1a6f12ff8ede89727fc206c0f8d585081fbe309e' ORDER BY "users"."id" ASC LIMIT 1
28879
+ Completed 404 Not Found in 13ms
28880
+
28881
+ ActionController::RoutingError (Not Found):
28882
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/confirmations_controller.rb:27:in `show'
28883
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
28884
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
28885
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
28886
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
28887
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28888
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
28889
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
28890
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28891
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28892
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
28893
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
28894
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
28895
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
28896
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
28897
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
28898
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
28899
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
28900
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
28901
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
28902
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
28903
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
28904
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
28905
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
28906
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
28907
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
28908
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
28909
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
28910
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
28911
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
28912
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
28913
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
28914
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28915
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28916
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28917
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28918
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28919
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
28920
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
28921
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
28922
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
28923
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
28924
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
28925
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28926
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28927
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28928
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28929
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28930
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28931
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
28932
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
28933
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
28934
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
28935
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
28936
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
28937
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
28938
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
28939
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
28940
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
28941
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
28942
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
28943
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
28944
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
28945
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
28946
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
28947
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
28948
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
28949
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
28950
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
28951
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
28952
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
28953
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
28954
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
28955
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
28956
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
28957
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
28958
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
28959
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
28960
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
28961
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
28962
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
28963
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
28964
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
28965
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
28966
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
28967
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
28968
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
28969
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
28970
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
28971
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
28972
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
28973
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
28974
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
28975
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
28976
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
28977
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
28978
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
28979
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
28980
+
28981
+
28982
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
28983
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
28984
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
28985
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
28986
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (35.4ms)
28987
+
28988
+
28989
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:33:01 -0500
28990
+
28991
+
28992
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:33:02 -0500
28993
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
28994
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test2@test.com' LIMIT 1
28995
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
28996
+
28997
+
28998
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-07-14 18:33:37 -0500
28999
+
29000
+
29001
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:33:37 -0500
29002
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
29003
+ Parameters: {"email"=>"test3@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?client_id=ApBiuXy67Z1D4l32Wf82xg&expiry=2014-07-28%2B18:10:38%2B-0500&token=tVaG6ytAf3uhEUFVkmaT2w&uid=test2@test.com", "registration"=>{"email"=>"test3@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?client_id=ApBiuXy67Z1D4l32Wf82xg&expiry=2014-07-28%2B18:10:38%2B-0500&token=tVaG6ytAf3uhEUFVkmaT2w&uid=test2@test.com"}}
29004
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test2@test.com' LIMIT 1
29005
+ Unpermitted parameters: registration
29006
+ Unpermitted parameters: registration
29007
+  (0.1ms) begin transaction
29008
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test3@test.com'
29009
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '35e8cbba5048b005c0cabeb784287a6ba4e758f113bad794231634f6a1654ee7' ORDER BY "users"."id" ASC LIMIT 1
29010
+ Binary data inserted for `string` type on column `confirmation_token`
29011
+ Binary data inserted for `string` type on column `encrypted_password`
29012
+ SQL (0.4ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/?client_id=ApBiuXy67Z1D4l32Wf82xg&expiry=2014-07-28%2B18:10:38%2B-0500&token=tVaG6ytAf3uhEUFVkmaT2w&uid=test2@test.com"], ["confirmation_sent_at", "2014-07-14 23:33:45.547379"], ["confirmation_token", "35e8cbba5048b005c0cabeb784287a6ba4e758f113bad794231634f6a1654ee7"], ["created_at", "2014-07-14 23:33:45.546524"], ["email", "test3@test.com"], ["encrypted_password", "$2a$10$El1SZVfX.3RU1NZcrx1Z/.5QMHpqTkRvcESTNItB38Ebk4MPiioq6"], ["provider", "email"], ["tokens", "{}"], ["uid", "test3@test.com"], ["updated_at", "2014-07-14 23:33:45.546524"]]
29013
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (0.9ms)
29014
+
29015
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 22.9ms
29016
+
29017
+ Sent mail to test3@test.com (26.4ms)
29018
+ Date: Mon, 14 Jul 2014 18:33:45 -0500
29019
+ From: please-change-me-at-config-initializers-devise@example.com
29020
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
29021
+ To: test3@test.com
29022
+ Message-ID: <53c468d98dd96_12d043fd3fdc2dbdc305d@Lynns-MacBook-Pro.local.mail>
29023
+ Subject: Confirmation instructions
29024
+ Mime-Version: 1.0
29025
+ Content-Type: text/html;
29026
+ charset=UTF-8
29027
+ Content-Transfer-Encoding: 7bit
29028
+
29029
+ <p>Welcome test3@test.com!</p>
29030
+
29031
+ <p>You can confirm your account email through the link below:</p>
29032
+
29033
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=4QLaZ-b9XYBBh_zLBH4j">Confirm my account</a></p>
29034
+
29035
+  (0.7ms) commit transaction
29036
+ Completed 200 OK in 8123ms (Views: 0.3ms | ActiveRecord: 2.0ms)
29037
+
29038
+
29039
+ Started GET "/auth/confirmation?confirmation_token=4QLaZ-b9XYBBh_zLBH4j" for 127.0.0.1 at 2014-07-14 18:34:11 -0500
29040
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
29041
+ Parameters: {"confirmation_token"=>"4QLaZ-b9XYBBh_zLBH4j"}
29042
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '35e8cbba5048b005c0cabeb784287a6ba4e758f113bad794231634f6a1654ee7' ORDER BY "users"."id" ASC LIMIT 1
29043
+  (0.0ms) begin transaction
29044
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 3 [["confirmation_token", nil], ["confirmed_at", "2014-07-14 23:34:11.389913"], ["tokens", "{}"], ["updated_at", "2014-07-14 23:34:11.390153"]]
29045
+  (4.7ms) commit transaction
29046
+  (0.1ms) begin transaction
29047
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 3 [["confirmation_token", "4QLaZ-b9XYBBh_zLBH4j"], ["tokens", "{\"qAKlMcQwQNWsZrMR6WEn_Q\":{\"token\":\"$2a$10$xeWLwj8bihXR645deY1tc.n//7HEBSWSYwwLXO8Eki6jzZzNuBr4W\",\"expiry\":\"2014-07-28 18:34:11 -0500\"}}"], ["updated_at", "2014-07-14 23:34:11.456728"]]
29048
+  (0.9ms) commit transaction
29049
+ Redirected to http://ng-token-auth.dev/?client_id=qAKlMcQwQNWsZrMR6WEn_Q&expiry=2014-07-28+18%3A34%3A11+-0500&token=d8hi41IgzETGzcwJ-aRdxQ&uid=test3%40test.com
29050
+ Completed 302 Found in 71ms (ActiveRecord: 6.5ms)
29051
+
29052
+
29053
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:34:11 -0500
29054
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29055
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test3@test.com' LIMIT 1
29056
+ Completed 401 Unauthorized in 79683ms (Views: 0.2ms | ActiveRecord: 0.2ms)
29057
+
29058
+
29059
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:35:48 -0500
29060
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
29061
+ Parameters: {"email"=>"test4@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?client_id=qAKlMcQwQNWsZrMR6WEn_Q&expiry=2014-07-28+18%3A34%3A11+-0500&token=d8hi41IgzETGzcwJ-aRdxQ&uid=test3%40test.com", "registration"=>{"email"=>"test4@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?client_id=qAKlMcQwQNWsZrMR6WEn_Q&expiry=2014-07-28+18%3A34%3A11+-0500&token=d8hi41IgzETGzcwJ-aRdxQ&uid=test3%40test.com"}}
29062
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test3@test.com' LIMIT 1
29063
+ Unpermitted parameters: registration
29064
+ Unpermitted parameters: registration
29065
+  (0.1ms) begin transaction
29066
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test4@test.com'
29067
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'd90ca4a0fe8338f12eff7502593e013cf17d8bf18cd40260f28b9172f3ffd48f' ORDER BY "users"."id" ASC LIMIT 1
29068
+ Binary data inserted for `string` type on column `confirmation_token`
29069
+ Binary data inserted for `string` type on column `encrypted_password`
29070
+ SQL (0.4ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/?client_id=qAKlMcQwQNWsZrMR6WEn_Q&expiry=2014-07-28+18%3A34%3A11+-0500&token=d8hi41IgzETGzcwJ-aRdxQ&uid=test3%40test.com"], ["confirmation_sent_at", "2014-07-14 23:35:48.387108"], ["confirmation_token", "d90ca4a0fe8338f12eff7502593e013cf17d8bf18cd40260f28b9172f3ffd48f"], ["created_at", "2014-07-14 23:35:48.385921"], ["email", "test4@test.com"], ["encrypted_password", "$2a$10$MClqzonuJqgcYs0Shxsbwu9w3r7BwsCiUpZNLxiaUBEA.hw89D/ym"], ["provider", "email"], ["tokens", "{}"], ["uid", "test4@test.com"], ["updated_at", "2014-07-14 23:35:48.385921"]]
29071
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
29072
+
29073
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 12.3ms
29074
+
29075
+ Sent mail to test4@test.com (20.2ms)
29076
+ Date: Mon, 14 Jul 2014 18:35:48 -0500
29077
+ From: please-change-me-at-config-initializers-devise@example.com
29078
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
29079
+ To: test4@test.com
29080
+ Message-ID: <53c4695462f79_12d043fd3fdc2dbdc315c@Lynns-MacBook-Pro.local.mail>
29081
+ Subject: Confirmation instructions
29082
+ Mime-Version: 1.0
29083
+ Content-Type: text/html;
29084
+ charset=UTF-8
29085
+ Content-Transfer-Encoding: 7bit
29086
+
29087
+ <p>Welcome test4@test.com!</p>
29088
+
29089
+ <p>You can confirm your account email through the link below:</p>
29090
+
29091
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=Kf8d9fMXkqyZmRw1DV-T">Confirm my account</a></p>
29092
+
29093
+  (0.7ms) commit transaction
29094
+ Completed 200 OK in 122ms (Views: 0.3ms | ActiveRecord: 2.0ms)
29095
+
29096
+
29097
+ Started GET "/auth/confirmation?confirmation_token=Kf8d9fMXkqyZmRw1DV-T" for 127.0.0.1 at 2014-07-14 18:35:58 -0500
29098
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
29099
+ Parameters: {"confirmation_token"=>"Kf8d9fMXkqyZmRw1DV-T"}
29100
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'd90ca4a0fe8338f12eff7502593e013cf17d8bf18cd40260f28b9172f3ffd48f' ORDER BY "users"."id" ASC LIMIT 1
29101
+  (0.1ms) begin transaction
29102
+ SQL (0.2ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["confirmation_token", nil], ["confirmed_at", "2014-07-14 23:35:58.892108"], ["tokens", "{}"], ["updated_at", "2014-07-14 23:35:58.892373"]]
29103
+  (0.6ms) commit transaction
29104
+  (0.1ms) begin transaction
29105
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["confirmation_token", "Kf8d9fMXkqyZmRw1DV-T"], ["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$jSTtn55LpP6/F5iSF.zCXeXhVYDu33WBvSl3D1D2OuP/BKyFdCAvK\",\"expiry\":1406590558}}"], ["updated_at", "2014-07-14 23:35:58.957143"]]
29106
+  (0.8ms) commit transaction
29107
+ Redirected to http://ng-token-auth.dev/?client_id=-hhQPUzGM5v8n4H0pfZU1Q&expiry=1406590558&token=CtK9-6lq39lrvVsKpGNXcg&uid=test4%40test.com
29108
+ Completed 302 Found in 68ms (ActiveRecord: 2.2ms)
29109
+
29110
+
29111
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:35:59 -0500
29112
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29113
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test4@test.com' LIMIT 1
29114
+  (0.1ms) begin transaction
29115
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$CRP2DtmWBJ5b6aBTqhON1ukf7rQa86S8IUp4mZ.b8GB2hKzqHXgiu\",\"expiry\":1406590559,\"last_token\":\"$2a$10$jSTtn55LpP6/F5iSF.zCXeXhVYDu33WBvSl3D1D2OuP/BKyFdCAvK\",\"updated_at\":\"2014-07-14 18:35:59 -0500\"}}"], ["updated_at", "2014-07-14 23:35:59.980286"]]
29116
+  (1.9ms) commit transaction
29117
+ Completed 200 OK in 128ms (Views: 0.3ms | ActiveRecord: 2.5ms)
29118
+
29119
+
29120
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:36:49 -0500
29121
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29122
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test4@test.com' LIMIT 1
29123
+  (0.1ms) begin transaction
29124
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$VNnPSfSxJrNVDQe4fQV0ROmZIFAJTMfPb1I6uGm33w5YseHN2mfa2\",\"expiry\":1406590609,\"last_token\":\"$2a$10$CRP2DtmWBJ5b6aBTqhON1ukf7rQa86S8IUp4mZ.b8GB2hKzqHXgiu\",\"updated_at\":\"2014-07-14 18:36:49 -0500\"}}"], ["updated_at", "2014-07-14 23:36:49.982945"]]
29125
+  (7.3ms) commit transaction
29126
+ Completed 200 OK in 134ms (Views: 0.3ms | ActiveRecord: 7.8ms)
29127
+
29128
+
29129
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:39:05 -0500
29130
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29131
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test4@test.com' LIMIT 1
29132
+  (0.1ms) begin transaction
29133
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$vk1p3xeVAR1J7GcRK68DDeqOo.bTyVoSXD0P7HYrPZt5byTvUBio.\",\"expiry\":1406590745,\"last_token\":\"$2a$10$VNnPSfSxJrNVDQe4fQV0ROmZIFAJTMfPb1I6uGm33w5YseHN2mfa2\",\"updated_at\":\"2014-07-14 18:39:05 -0500\"}}"], ["updated_at", "2014-07-14 23:39:05.367873"]]
29134
+  (0.6ms) commit transaction
29135
+ Completed 200 OK in 140ms (Views: 0.4ms | ActiveRecord: 1.7ms)
29136
+
29137
+
29138
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:39:29 -0500
29139
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29140
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test4@test.com' LIMIT 1
29141
+  (0.1ms) begin transaction
29142
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$U/jMtfpw4stXr8ESFRNABeXy1ll6sWwCltDBn/YzjhYCkVEZTY262\",\"expiry\":1406590769,\"last_token\":\"$2a$10$vk1p3xeVAR1J7GcRK68DDeqOo.bTyVoSXD0P7HYrPZt5byTvUBio.\",\"updated_at\":\"2014-07-14 18:39:29 -0500\"}}"], ["updated_at", "2014-07-14 23:39:29.956248"]]
29143
+  (1.7ms) commit transaction
29144
+ Completed 200 OK in 129ms (Views: 0.3ms | ActiveRecord: 2.5ms)
29145
+
29146
+
29147
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-07-14 18:39:31 -0500
29148
+
29149
+
29150
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-14 18:39:31 -0500
29151
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
29152
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test4@test.com' LIMIT 1
29153
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 ORDER BY "users"."id" ASC LIMIT 1
29154
+  (0.1ms) begin transaction
29155
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$U/jMtfpw4stXr8ESFRNABeXy1ll6sWwCltDBn/YzjhYCkVEZTY262\",\"expiry\":1406590769,\"last_token\":\"$2a$10$vk1p3xeVAR1J7GcRK68DDeqOo.bTyVoSXD0P7HYrPZt5byTvUBio.\",\"updated_at\":\"2014-07-14 18:39:29 -0500\"}}"], ["updated_at", "2014-07-14 23:39:31.958277"]]
29156
+  (0.5ms) commit transaction
29157
+  (0.0ms) begin transaction
29158
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"-hhQPUzGM5v8n4H0pfZU1Q\":{\"token\":\"$2a$10$U/jMtfpw4stXr8ESFRNABeXy1ll6sWwCltDBn/YzjhYCkVEZTY262\",\"expiry\":1406590769,\"last_token\":\"$2a$10$vk1p3xeVAR1J7GcRK68DDeqOo.bTyVoSXD0P7HYrPZt5byTvUBio.\",\"updated_at\":\"2014-07-14 18:39:31 -0500\"}}"], ["updated_at", "2014-07-14 23:39:31.960445"]]
29159
+  (0.7ms) commit transaction
29160
+ Completed 200 OK in 71ms (Views: 0.2ms | ActiveRecord: 2.1ms)
29161
+
29162
+
29163
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:39:41 -0500
29164
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
29165
+ Parameters: {"email"=>"test5@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test5@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
29166
+ Unpermitted parameters: registration
29167
+ Unpermitted parameters: registration
29168
+  (0.1ms) begin transaction
29169
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test5@test.com'
29170
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'e943ea182e7d540418f807f3c19ef9f512a37e1bb87ea88a56c8f7d37a93d853' ORDER BY "users"."id" ASC LIMIT 1
29171
+ Binary data inserted for `string` type on column `confirmation_token`
29172
+ Binary data inserted for `string` type on column `encrypted_password`
29173
+ SQL (0.3ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-14 23:39:41.565873"], ["confirmation_token", "e943ea182e7d540418f807f3c19ef9f512a37e1bb87ea88a56c8f7d37a93d853"], ["created_at", "2014-07-14 23:39:41.565152"], ["email", "test5@test.com"], ["encrypted_password", "$2a$10$37Rfv8ARlBc1VdcsF1T1.enJzg3ahcY3gCH9NeP2vYVnPYeyoWru2"], ["provider", "email"], ["tokens", "{}"], ["uid", "test5@test.com"], ["updated_at", "2014-07-14 23:39:41.565152"]]
29174
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (0.4ms)
29175
+
29176
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 11.2ms
29177
+
29178
+ Sent mail to test5@test.com (19.1ms)
29179
+ Date: Mon, 14 Jul 2014 18:39:41 -0500
29180
+ From: please-change-me-at-config-initializers-devise@example.com
29181
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
29182
+ To: test5@test.com
29183
+ Message-ID: <53c46a3d8df4f_12d043fd3fdc2dbdc32ab@Lynns-MacBook-Pro.local.mail>
29184
+ Subject: Confirmation instructions
29185
+ Mime-Version: 1.0
29186
+ Content-Type: text/html;
29187
+ charset=UTF-8
29188
+ Content-Transfer-Encoding: 7bit
29189
+
29190
+ <p>Welcome test5@test.com!</p>
29191
+
29192
+ <p>You can confirm your account email through the link below:</p>
29193
+
29194
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=zzZpwbngGWtkRGR9xzrc">Confirm my account</a></p>
29195
+
29196
+  (1.8ms) commit transaction
29197
+ Completed 200 OK in 101ms (Views: 0.3ms | ActiveRecord: 2.4ms)
29198
+
29199
+
29200
+ Started GET "/auth/confirmation?confirmation_token=zzZpwbngGWtkRGR9xzrc" for 127.0.0.1 at 2014-07-14 18:46:14 -0500
29201
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
29202
+ Parameters: {"confirmation_token"=>"zzZpwbngGWtkRGR9xzrc"}
29203
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'e943ea182e7d540418f807f3c19ef9f512a37e1bb87ea88a56c8f7d37a93d853' ORDER BY "users"."id" ASC LIMIT 1
29204
+  (0.0ms) begin transaction
29205
+ SQL (0.2ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 5 [["confirmation_token", nil], ["confirmed_at", "2014-07-14 23:46:14.715015"], ["tokens", "{}"], ["updated_at", "2014-07-14 23:46:14.715264"]]
29206
+  (0.7ms) commit transaction
29207
+  (0.1ms) begin transaction
29208
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 5 [["confirmation_token", "zzZpwbngGWtkRGR9xzrc"], ["tokens", "{\"OLMMKCQ47k-slxld923Wnw\":{\"token\":\"$2a$10$sIxY5RXQsxufvO8EBpNtGOzstnVJg7Ik3k2H8k8pvQagoGVnGLEPK\",\"expiry\":1406591174}}"], ["updated_at", "2014-07-14 23:46:14.776249"]]
29209
+  (0.7ms) commit transaction
29210
+ Redirected to http://ng-token-auth.dev/?account_confirmation_success=true&client_id=OLMMKCQ47k-slxld923Wnw&expiry=1406591174&token=GSvkXVfFrCtK2CmNdwSjhg&uid=test5%40test.com
29211
+ Completed 302 Found in 64ms (ActiveRecord: 2.2ms)
29212
+
29213
+
29214
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:46:15 -0500
29215
+
29216
+
29217
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:46:15 -0500
29218
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29219
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test5@test.com' LIMIT 1
29220
+  (0.1ms) begin transaction
29221
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 5 [["tokens", "{\"OLMMKCQ47k-slxld923Wnw\":{\"token\":\"$2a$10$NM02jguWsAOVUuFojqbD/OltvOm8ggrBP3XUMuyF4060qW4cSUaUC\",\"expiry\":1406591175,\"last_token\":\"$2a$10$sIxY5RXQsxufvO8EBpNtGOzstnVJg7Ik3k2H8k8pvQagoGVnGLEPK\",\"updated_at\":\"2014-07-14 18:46:15 -0500\"}}"], ["updated_at", "2014-07-14 23:46:15.992102"]]
29222
+  (1.6ms) commit transaction
29223
+ Completed 200 OK in 128ms (Views: 0.4ms | ActiveRecord: 2.2ms)
29224
+
29225
+
29226
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:46:33 -0500
29227
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29228
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test5@test.com' LIMIT 1
29229
+  (0.1ms) begin transaction
29230
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 5 [["tokens", "{\"OLMMKCQ47k-slxld923Wnw\":{\"token\":\"$2a$10$SeLoCNuuzUYAluCkgB.Y8OqYmYtx2aEQiErUW.fZiMQkEtT4QwPfC\",\"expiry\":1406591193,\"last_token\":\"$2a$10$NM02jguWsAOVUuFojqbD/OltvOm8ggrBP3XUMuyF4060qW4cSUaUC\",\"updated_at\":\"2014-07-14 18:46:33 -0500\"}}"], ["updated_at", "2014-07-14 23:46:33.288606"]]
29231
+  (1.6ms) commit transaction
29232
+ Completed 200 OK in 130ms (Views: 0.4ms | ActiveRecord: 2.1ms)
29233
+
29234
+
29235
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-14 18:46:37 -0500
29236
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
29237
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test5@test.com' LIMIT 1
29238
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 5 ORDER BY "users"."id" ASC LIMIT 1
29239
+  (0.0ms) begin transaction
29240
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 5 [["tokens", "{\"OLMMKCQ47k-slxld923Wnw\":{\"token\":\"$2a$10$SeLoCNuuzUYAluCkgB.Y8OqYmYtx2aEQiErUW.fZiMQkEtT4QwPfC\",\"expiry\":1406591193,\"last_token\":\"$2a$10$NM02jguWsAOVUuFojqbD/OltvOm8ggrBP3XUMuyF4060qW4cSUaUC\",\"updated_at\":\"2014-07-14 18:46:33 -0500\"}}"], ["updated_at", "2014-07-14 23:46:37.566553"]]
29241
+  (1.6ms) commit transaction
29242
+  (0.0ms) begin transaction
29243
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 5 [["tokens", "{\"OLMMKCQ47k-slxld923Wnw\":{\"token\":\"$2a$10$SeLoCNuuzUYAluCkgB.Y8OqYmYtx2aEQiErUW.fZiMQkEtT4QwPfC\",\"expiry\":1406591193,\"last_token\":\"$2a$10$NM02jguWsAOVUuFojqbD/OltvOm8ggrBP3XUMuyF4060qW4cSUaUC\",\"updated_at\":\"2014-07-14 18:46:37 -0500\"}}"], ["updated_at", "2014-07-14 23:46:37.569657"]]
29244
+  (0.5ms) commit transaction
29245
+ Completed 200 OK in 68ms (Views: 0.1ms | ActiveRecord: 3.0ms)
29246
+
29247
+
29248
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-07-14 18:46:46 -0500
29249
+
29250
+
29251
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:46:46 -0500
29252
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
29253
+ Parameters: {"email"=>"test6@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test6@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
29254
+ Unpermitted parameters: registration
29255
+ Unpermitted parameters: registration
29256
+  (0.1ms) begin transaction
29257
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test6@test.com'
29258
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '42ff6c70a9c62f89a006f7c12018fc1198232d2ecbc45acb64214a44fffd046a' ORDER BY "users"."id" ASC LIMIT 1
29259
+ Binary data inserted for `string` type on column `confirmation_token`
29260
+ Binary data inserted for `string` type on column `encrypted_password`
29261
+ SQL (0.3ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-14 23:46:46.242303"], ["confirmation_token", "42ff6c70a9c62f89a006f7c12018fc1198232d2ecbc45acb64214a44fffd046a"], ["created_at", "2014-07-14 23:46:46.241643"], ["email", "test6@test.com"], ["encrypted_password", "$2a$10$aI/gWsBni6d4wPsVEyakyuMMLZyHR.1Y0jUsZ0X5u3sbQPUWy0ziu"], ["provider", "email"], ["tokens", "{}"], ["uid", "test6@test.com"], ["updated_at", "2014-07-14 23:46:46.241643"]]
29262
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
29263
+
29264
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 10.7ms
29265
+
29266
+ Sent mail to test6@test.com (19.1ms)
29267
+ Date: Mon, 14 Jul 2014 18:46:46 -0500
29268
+ From: please-change-me-at-config-initializers-devise@example.com
29269
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
29270
+ To: test6@test.com
29271
+ Message-ID: <53c46be63e39c_12d043fd3fdc2dbdc3316@Lynns-MacBook-Pro.local.mail>
29272
+ Subject: Confirmation instructions
29273
+ Mime-Version: 1.0
29274
+ Content-Type: text/html;
29275
+ charset=UTF-8
29276
+ Content-Transfer-Encoding: 7bit
29277
+
29278
+ <p>Welcome test6@test.com!</p>
29279
+
29280
+ <p>You can confirm your account email through the link below:</p>
29281
+
29282
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=1uMfk9SsJx9r7R5V5-d3">Confirm my account</a></p>
29283
+
29284
+  (0.7ms) commit transaction
29285
+ Completed 200 OK in 97ms (Views: 0.2ms | ActiveRecord: 1.2ms)
29286
+
29287
+
29288
+ Started GET "/auth/confirmation?confirmation_token=1uMfk9SsJx9r7R5V5-d3" for 127.0.0.1 at 2014-07-14 18:46:56 -0500
29289
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
29290
+ Parameters: {"confirmation_token"=>"1uMfk9SsJx9r7R5V5-d3"}
29291
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '42ff6c70a9c62f89a006f7c12018fc1198232d2ecbc45acb64214a44fffd046a' ORDER BY "users"."id" ASC LIMIT 1
29292
+  (0.0ms) begin transaction
29293
+ SQL (0.2ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["confirmation_token", nil], ["confirmed_at", "2014-07-14 23:46:56.172381"], ["tokens", "{}"], ["updated_at", "2014-07-14 23:46:56.172605"]]
29294
+  (1.6ms) commit transaction
29295
+  (0.1ms) begin transaction
29296
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["confirmation_token", "1uMfk9SsJx9r7R5V5-d3"], ["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$bg9r6QhoP/VBq1Z2rWPcNeP1vCGn.b76Nf3060/Z81k5zkG2QgnUq\",\"expiry\":1406591216}}"], ["updated_at", "2014-07-14 23:46:56.235205"]]
29297
+  (0.8ms) commit transaction
29298
+ Redirected to http://ng-token-auth.dev/?account_confirmation_success=true&client_id=lHPDHCy0z4j4tOPyivxPJQ&expiry=1406591216&token=TwxpPd3GNybN2bn4sWsqOA&uid=test6%40test.com
29299
+ Completed 302 Found in 66ms (ActiveRecord: 3.2ms)
29300
+
29301
+
29302
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-14 18:46:56 -0500
29303
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
29304
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test6@test.com' LIMIT 1
29305
+  (0.1ms) begin transaction
29306
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"expiry\":1406591216,\"last_token\":\"$2a$10$bg9r6QhoP/VBq1Z2rWPcNeP1vCGn.b76Nf3060/Z81k5zkG2QgnUq\",\"updated_at\":\"2014-07-14 18:46:56 -0500\"}}"], ["updated_at", "2014-07-14 23:46:56.882752"]]
29307
+  (1.6ms) commit transaction
29308
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 2.3ms)
29309
+
29310
+
29311
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-14 18:47:03 -0500
29312
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
29313
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test6@test.com' LIMIT 1
29314
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 6 ORDER BY "users"."id" ASC LIMIT 1
29315
+  (0.0ms) begin transaction
29316
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"expiry\":1406591216,\"last_token\":\"$2a$10$bg9r6QhoP/VBq1Z2rWPcNeP1vCGn.b76Nf3060/Z81k5zkG2QgnUq\",\"updated_at\":\"2014-07-14 18:46:56 -0500\"}}"], ["updated_at", "2014-07-14 23:47:03.623544"]]
29317
+  (17.1ms) commit transaction
29318
+  (0.1ms) begin transaction
29319
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$GNnaYzMKGRJ3JI645KxLdeTkNVNCeREzEuva6HsqAnnKZBX9FjbDe\",\"expiry\":1406591223,\"last_token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"updated_at\":\"2014-07-14 18:47:03 -0500\"}}"], ["updated_at", "2014-07-14 23:47:03.705294"]]
29320
+  (0.8ms) commit transaction
29321
+ Completed 200 OK in 147ms (Views: 0.1ms | ActiveRecord: 18.7ms)
29322
+
29323
+
29324
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:47:12 -0500
29325
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
29326
+ Parameters: {"email"=>"test6@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?account_confirmation_success=true&client_id=lHPDHCy0z4j4tOPyivxPJQ&expiry=1406591216&token=TwxpPd3GNybN2bn4sWsqOA&uid=test6%40test.com", "registration"=>{"email"=>"test6@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?account_confirmation_success=true&client_id=lHPDHCy0z4j4tOPyivxPJQ&expiry=1406591216&token=TwxpPd3GNybN2bn4sWsqOA&uid=test6%40test.com"}}
29327
+ Unpermitted parameters: registration
29328
+ Unpermitted parameters: registration
29329
+  (0.1ms) begin transaction
29330
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test6@test.com'
29331
+  (0.0ms) rollback transaction
29332
+ Completed 403 Forbidden in 67ms (Views: 0.4ms | ActiveRecord: 0.2ms)
29333
+
29334
+
29335
+ Started POST "/auth" for 127.0.0.1 at 2014-07-14 18:47:18 -0500
29336
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
29337
+ Parameters: {"email"=>"test6@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?account_confirmation_success=true&client_id=lHPDHCy0z4j4tOPyivxPJQ&expiry=1406591216&token=TwxpPd3GNybN2bn4sWsqOA&uid=test6%40test.com", "registration"=>{"email"=>"test6@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/?account_confirmation_success=true&client_id=lHPDHCy0z4j4tOPyivxPJQ&expiry=1406591216&token=TwxpPd3GNybN2bn4sWsqOA&uid=test6%40test.com"}}
29338
+ Unpermitted parameters: registration
29339
+ Unpermitted parameters: registration
29340
+  (0.1ms) begin transaction
29341
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test6@test.com'
29342
+  (0.0ms) rollback transaction
29343
+ Completed 403 Forbidden in 64ms (Views: 0.4ms | ActiveRecord: 0.2ms)
29344
+
29345
+
29346
+ Started OPTIONS "/auth/sign_in" for 127.0.0.1 at 2014-07-14 18:47:29 -0500
29347
+
29348
+
29349
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-07-14 18:47:29 -0500
29350
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
29351
+ Parameters: {"email"=>"test6@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test6@test.com", "password"=>"[FILTERED]"}}
29352
+ Unpermitted parameters: session
29353
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test6@test.com' LIMIT 1
29354
+ Unpermitted parameters: session
29355
+ Unpermitted parameters: session
29356
+ Unpermitted parameters: session
29357
+  (0.1ms) begin transaction
29358
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$GNnaYzMKGRJ3JI645KxLdeTkNVNCeREzEuva6HsqAnnKZBX9FjbDe\",\"expiry\":1406591223,\"last_token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"updated_at\":\"2014-07-14 18:47:03 -0500\"},\"cvWlE5eT0gC9tPsYCzafZQ\":{\"token\":\"$2a$10$qn6fFS9wOBiOign22hJcYu/epBLCpLw8tlJVMuF69BhkWcAw458bi\",\"expiry\":\"2014-07-28 18:47:29 -0500\"}}"], ["updated_at", "2014-07-14 23:47:29.756681"]]
29359
+  (1.6ms) commit transaction
29360
+  (0.1ms) begin transaction
29361
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$GNnaYzMKGRJ3JI645KxLdeTkNVNCeREzEuva6HsqAnnKZBX9FjbDe\",\"expiry\":1406591223,\"last_token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"updated_at\":\"2014-07-14 18:47:03 -0500\"},\"cvWlE5eT0gC9tPsYCzafZQ\":{\"token\":\"$2a$10$fSfPLuqSLxsbvMyJOlknDOCB4Ir8xS385k50PHku011gk5s3f5r7K\",\"expiry\":1406591249,\"last_token\":\"$2a$10$qn6fFS9wOBiOign22hJcYu/epBLCpLw8tlJVMuF69BhkWcAw458bi\",\"updated_at\":\"2014-07-14 18:47:29 -0500\"}}"], ["updated_at", "2014-07-14 23:47:29.820257"]]
29362
+  (0.6ms) commit transaction
29363
+ Completed 200 OK in 189ms (Views: 0.3ms | ActiveRecord: 3.0ms)
29364
+
29365
+
29366
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-14 18:47:35 -0500
29367
+
29368
+
29369
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-14 18:47:35 -0500
29370
+ Processing by DemoController#members_only as HTML
29371
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test6@test.com' LIMIT 1
29372
+  (0.1ms) begin transaction
29373
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$GNnaYzMKGRJ3JI645KxLdeTkNVNCeREzEuva6HsqAnnKZBX9FjbDe\",\"expiry\":1406591223,\"last_token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"updated_at\":\"2014-07-14 18:47:03 -0500\"},\"cvWlE5eT0gC9tPsYCzafZQ\":{\"token\":\"$2a$10$nDtBizJqF7aeKe8MbqvfH.YOo6RA2qdVvRLheL90B8oqyYFeUCnAS\",\"expiry\":1406591255,\"last_token\":\"$2a$10$fSfPLuqSLxsbvMyJOlknDOCB4Ir8xS385k50PHku011gk5s3f5r7K\",\"updated_at\":\"2014-07-14 18:47:35 -0500\"}}"], ["updated_at", "2014-07-14 23:47:35.464887"]]
29374
+  (1.6ms) commit transaction
29375
+ Completed 200 OK in 126ms (Views: 0.7ms | ActiveRecord: 2.1ms)
29376
+
29377
+
29378
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-14 18:47:37 -0500
29379
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
29380
+
29381
+
29382
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-14 18:47:37 -0500
29383
+ Processing by DemoController#members_only as HTML
29384
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test6@test.com' LIMIT 1
29385
+  (0.1ms) begin transaction
29386
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$GNnaYzMKGRJ3JI645KxLdeTkNVNCeREzEuva6HsqAnnKZBX9FjbDe\",\"expiry\":1406591223,\"last_token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"updated_at\":\"2014-07-14 18:47:03 -0500\"},\"cvWlE5eT0gC9tPsYCzafZQ\":{\"token\":\"$2a$10$nDtBizJqF7aeKe8MbqvfH.YOo6RA2qdVvRLheL90B8oqyYFeUCnAS\",\"expiry\":1406591255,\"last_token\":\"$2a$10$fSfPLuqSLxsbvMyJOlknDOCB4Ir8xS385k50PHku011gk5s3f5r7K\",\"updated_at\":\"2014-07-14 18:47:37 -0500\"}}"], ["updated_at", "2014-07-14 23:47:37.438603"]]
29387
+  (1.7ms) commit transaction
29388
+ Completed 200 OK in 125ms (Views: 0.5ms | ActiveRecord: 2.2ms)
29389
+
29390
+
29391
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-14 18:47:40 -0500
29392
+ Processing by DemoController#members_only as HTML
29393
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test6@test.com' LIMIT 1
29394
+  (0.1ms) begin transaction
29395
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"lHPDHCy0z4j4tOPyivxPJQ\":{\"token\":\"$2a$10$GNnaYzMKGRJ3JI645KxLdeTkNVNCeREzEuva6HsqAnnKZBX9FjbDe\",\"expiry\":1406591223,\"last_token\":\"$2a$10$ebjRIuQzr9hXrXEPS1AJQeTHqmpUI5V9KQbJ6NVDmd/jTW1/RaOX.\",\"updated_at\":\"2014-07-14 18:47:03 -0500\"},\"cvWlE5eT0gC9tPsYCzafZQ\":{\"token\":\"$2a$10$nDtBizJqF7aeKe8MbqvfH.YOo6RA2qdVvRLheL90B8oqyYFeUCnAS\",\"expiry\":1406591255,\"last_token\":\"$2a$10$fSfPLuqSLxsbvMyJOlknDOCB4Ir8xS385k50PHku011gk5s3f5r7K\",\"updated_at\":\"2014-07-14 18:47:40 -0500\"}}"], ["updated_at", "2014-07-14 23:47:40.262117"]]
29396
+  (1.7ms) commit transaction
29397
+ Completed 200 OK in 123ms (Views: 0.7ms | ActiveRecord: 2.2ms)
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_token_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.19.alpha3
4
+ version: 0.1.19.alpha4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lynn Hurley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-14 00:00:00.000000000 Z
11
+ date: 2014-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails