devise_token_auth 0.1.2 → 0.1.3

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: ec1df69cf35e2adde1799462367ac4da4db4560b
4
- data.tar.gz: 7934d79c54b560678e21a825ca0910ba35ea2853
3
+ metadata.gz: 42915202b777017299c3ba2814a605596c20a7fb
4
+ data.tar.gz: 58ad421a11398018bcfa82567d380129effa8d64
5
5
  SHA512:
6
- metadata.gz: 4a24265c4aa9c97bb5fc819b05160a6a89ed1c5173d3efdd7c429e78861b748e7601db9de0a73c2c960eafaf1043409b0556ee11fe05d67c96b818f529362da6
7
- data.tar.gz: a578ae542753f330ddca24231520bbe495b2eb8b0392177d59ec1a80c2603ba284d117ce16ed61443013b445e0024a21d91f72834643f27bcfba971eb9b5529b
6
+ metadata.gz: 2d1fe403e0ec4ef93b56658280549a442604dfe9b0665f499a18abd6db759c728e5b099f3c742b22d9cd3364ae87dd718623f075efd63800a8cc98461b1cdbbf
7
+ data.tar.gz: c35dad1c6b8d9239f68a0e705bcffbb07ff10ad9fb9c8413e482ba8154aeb1497a1d1d5d40102dc121561ec0cb589288008dd281cab9b1730d5e4281deea3e78
@@ -1,33 +1,6 @@
1
1
  module DeviseTokenAuth
2
2
  class ApplicationController < ActionController::Base
3
- # Prevent CSRF attacks by raising an exception.
4
- # For APIs, you may want to use :null_session instead.
5
- protect_from_forgery with: :null_session
6
- skip_before_filter :verify_authenticity_token
7
-
8
- prepend_before_action :validate_user
9
-
10
- # user auth
11
- def validate_user
12
- auth_header = request.headers["Authorization"]
13
-
14
- # missing auth token
15
- return false if not auth_header
16
-
17
- token = auth_header[/token=(.*?) /,1]
18
- email = auth_header[/email=(.*?)$/,1]
19
-
20
- @user = @current_user = User.where(
21
- email: email,
22
- auth_token: token
23
- ).first
24
-
25
- # invalid auth token
26
- return if not @user
27
- return if not @user.auth_token == token
28
-
29
- # sign in user, don't create session
30
- sign_in(@user, store: false)
31
- end
3
+ include DeviseTokenAuth::Concerns::SetUserByToken
4
+ prepend_before_action :set_user_by_token
32
5
  end
33
6
  end
@@ -1,14 +1,15 @@
1
1
  module DeviseTokenAuth
2
- class AuthController < ApplicationController
2
+ class AuthController < DeviseTokenAuth::ApplicationController
3
3
  respond_to :json
4
4
 
5
- def validate_token
6
- user = User.where(uid: params[:uid], auth_token: params[:auth_token]).first
5
+ skip_after_filter :update_auth_header, :only => [:omniauth_success, :omniauth_failure]
7
6
 
8
- if not user.nil?
7
+ def validate_token
8
+ # @user will have been set by set_user_token concern
9
+ if @user
9
10
  render json: {
10
11
  success: true,
11
- data: user.as_json
12
+ data: @user.as_json
12
13
  }
13
14
  else
14
15
  render json: {
@@ -3,6 +3,7 @@ module DeviseTokenAuth::Concerns::SetUserByToken
3
3
 
4
4
  included do
5
5
  before_action :set_user_by_token
6
+ after_action :update_auth_header
6
7
  end
7
8
 
8
9
  # user auth
@@ -10,21 +11,29 @@ module DeviseTokenAuth::Concerns::SetUserByToken
10
11
  auth_header = request.headers["Authorization"]
11
12
 
12
13
  # missing auth token
13
- return false if not auth_header
14
+ return false unless auth_header
14
15
 
15
16
  token = auth_header[/token=(.*?) /,1]
16
17
  uid = auth_header[/uid=(.*?)$/,1]
17
18
 
18
- @user = @current_user = User.where(
19
- uid: uid,
20
- auth_token: token
21
- ).first
19
+ # mitigate timing attacks by finding by uid instead of auth token
20
+ @user = @current_user = uid && User.find_by_uid(uid)
22
21
 
23
- # invalid auth token
24
- return if not @user
25
- return if not @user.auth_token
22
+ if @user && Devise.secure_compare(@user.auth_token, token)
23
+ sign_in(@user, store: false)
24
+ else
25
+ @user = @current_user = nil
26
+ end
27
+ end
28
+
29
+ def update_auth_header
30
+ if @user
31
+ # update user's auth token (should happen on each request)
32
+ @user.auth_token = SecureRandom.urlsafe_base64(nil, false)
33
+ @user.save!
26
34
 
27
- # sign in user, don't create session
28
- sign_in(@user, store: false)
35
+ # update Authorization response header with new token
36
+ response.headers["Authorization"] = "token=#{@user.auth_token} uid=#{@user.uid}"
37
+ end
29
38
  end
30
39
  end
data/config/routes.rb CHANGED
@@ -8,7 +8,7 @@ DeviseTokenAuth::Engine.routes.draw do
8
8
  :passwords => "devise_token_auth/passwords",
9
9
  :confirmations => "devise_token_auth/confirmations"}
10
10
 
11
- post "validate_token", to: "auth#validate_token"
11
+ get "validate_token", to: "auth#validate_token"
12
12
  get "failure", to: "auth#omniauth_failure"
13
13
  get ":provider/callback", to: "auth#omniauth_success"
14
14
  end
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.2"
2
+ VERSION = "0.1.3"
3
3
  end
@@ -1,6 +1,3 @@
1
1
  class ApplicationController < ActionController::Base
2
- # Prevent CSRF attacks by raising an exception.
3
- # For APIs, you may want to use :null_session instead.
4
- protect_from_forgery with: :exception
5
2
  include DeviseTokenAuth::Concerns::SetUserByToken
6
3
  end
@@ -24,7 +24,10 @@ module Dummy
24
24
  config.middleware.use Rack::Cors do
25
25
  allow do
26
26
  origins '*'
27
- resource '*', :headers => :any, :methods => [:get, :post, :options, :delete, :put]
27
+ resource '*',
28
+ :headers => :any,
29
+ :expose => ['Authorization'],
30
+ :methods => [:get, :post, :options, :delete, :put]
28
31
  end
29
32
  end
30
33
  end
Binary file
@@ -3796,3 +3796,2946 @@ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-29 22:22:23 -0500
3796
3796
  Processing by TestController#members_only as HTML
3797
3797
  User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" IS NULL AND "users"."auth_token" IS NULL ORDER BY "users"."id" ASC LIMIT 1
3798
3798
  Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3799
+
3800
+
3801
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:15:40 -0500
3802
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3803
+
3804
+
3805
+ Started GET "/auth/github/callback?code=9c9784a01b2312ee1518&state=b47818af382988cdc2d270dca8a85e9901ab8faea44bad23" for 127.0.0.1 at 2014-06-30 15:15:40 -0500
3806
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
3807
+ Parameters: {"code"=>"9c9784a01b2312ee1518", "state"=>"b47818af382988cdc2d270dca8a85e9901ab8faea44bad23", "provider"=>"github"}
3808
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
3809
+  (0.1ms) begin transaction
3810
+ SQL (1.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "R2P0zAmGDBNE9-pxI56gLQ"], ["updated_at", "2014-06-30 20:15:41.445001"]]
3811
+  (18.0ms) commit transaction
3812
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.6ms)
3813
+ Completed 200 OK in 54ms (Views: 10.6ms | ActiveRecord: 20.5ms)
3814
+
3815
+
3816
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 15:15:48 -0500
3817
+
3818
+
3819
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:15:48 -0500
3820
+ Processing by TestController#members_only as HTML
3821
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
3822
+  (0.0ms) begin transaction
3823
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:15:48.236117"], ["last_sign_in_at", "2014-06-30 03:22:15.836294"], ["sign_in_count", 4], ["updated_at", "2014-06-30 20:15:48.236941"]]
3824
+  (0.7ms) commit transaction
3825
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 1.6ms)
3826
+
3827
+
3828
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:23:24 -0500
3829
+
3830
+
3831
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:23:24 -0500
3832
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3833
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3834
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3835
+  (0.1ms) begin transaction
3836
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "9j-qG_GaPLcEvi8ZPsz0Qg"], ["updated_at", "2014-06-30 20:23:24.388301"]]
3837
+  (0.6ms) commit transaction
3838
+ Completed 200 OK in 21ms (Views: 0.3ms | ActiveRecord: 2.0ms)
3839
+
3840
+
3841
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:23:29 -0500
3842
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3843
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3844
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3845
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3846
+
3847
+
3848
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:23:31 -0500
3849
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3850
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3851
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3852
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3853
+
3854
+
3855
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:24:33 -0500
3856
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3857
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3858
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3859
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3860
+
3861
+
3862
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:29:41 -0500
3863
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3864
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3865
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3866
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.3ms)
3867
+
3868
+
3869
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:29:44 -0500
3870
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3871
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3872
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3873
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3874
+
3875
+
3876
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:30:12 -0500
3877
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
3878
+ Parameters: {"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037", "auth"=>{"auth_token"=>"R2P0zAmGDBNE9-pxI56gLQ", "uid"=>"468037"}}
3879
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
3880
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3881
+
3882
+
3883
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:30:15 -0500
3884
+
3885
+
3886
+ Started GET "/auth/github/callback?code=8f8d00a6effe9308f22b&state=d29a31ce469860f217d121cfba6ad98869af30cddee2bc2f" for 127.0.0.1 at 2014-06-30 15:30:15 -0500
3887
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
3888
+ Parameters: {"code"=>"8f8d00a6effe9308f22b", "state"=>"d29a31ce469860f217d121cfba6ad98869af30cddee2bc2f", "provider"=>"github"}
3889
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
3890
+  (0.1ms) begin transaction
3891
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "LVeOZFMw2DQjcplfFUAw7A"], ["updated_at", "2014-06-30 20:30:16.430925"]]
3892
+  (2.0ms) commit transaction
3893
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
3894
+ Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 2.5ms)
3895
+
3896
+
3897
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 15:30:20 -0500
3898
+
3899
+
3900
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:30:20 -0500
3901
+ Processing by TestController#members_only as HTML
3902
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
3903
+  (0.0ms) begin transaction
3904
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:30:20.883585"], ["last_sign_in_at", "2014-06-30 20:15:48.236117"], ["sign_in_count", 5], ["updated_at", "2014-06-30 20:30:20.883970"]]
3905
+  (0.7ms) commit transaction
3906
+ Completed 500 Internal Server Error in 6ms
3907
+
3908
+ NameError (undefined local variable or method `user' for #<TestController:0x007fbc8d607038>):
3909
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:29:in `set_user_by_token'
3910
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
3911
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
3912
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
3913
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `call'
3914
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
3915
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
3916
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
3917
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
3918
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
3919
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
3920
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
3921
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
3922
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
3923
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
3924
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
3925
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
3926
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
3927
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
3928
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
3929
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
3930
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
3931
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
3932
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
3933
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
3934
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
3935
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
3936
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
3937
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
3938
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
3939
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
3940
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3941
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3942
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3943
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3944
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3945
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3946
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
3947
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
3948
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3949
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3950
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3951
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3952
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3953
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3954
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3955
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
3956
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3957
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3958
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3959
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
3960
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3961
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
3962
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3963
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
3964
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3965
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3966
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3967
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3968
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3969
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
3970
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
3971
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3972
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
3973
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
3974
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
3975
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3976
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3977
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3978
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3979
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3980
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3981
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3982
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
3983
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
3984
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3985
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3986
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3987
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3988
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3989
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3990
+
3991
+
3992
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3993
+ 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 (3.7ms)
3994
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3995
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.8ms)
3996
+
3997
+
3998
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:30:59 -0500
3999
+ Processing by TestController#members_only as HTML
4000
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4001
+  (0.1ms) begin transaction
4002
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:30:59.389062"], ["last_sign_in_at", "2014-06-30 20:30:20.883585"], ["sign_in_count", 6], ["updated_at", "2014-06-30 20:30:59.389567"]]
4003
+  (1.6ms) commit transaction
4004
+  (0.0ms) begin transaction
4005
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "g4E5eJjo4jm65_XUoY7wBw"], ["updated_at", "2014-06-30 20:30:59.392555"]]
4006
+  (0.6ms) commit transaction
4007
+ Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 3.3ms)
4008
+
4009
+
4010
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:31:06 -0500
4011
+ Processing by TestController#members_only as HTML
4012
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4013
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)
4014
+
4015
+
4016
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:36:07 -0500
4017
+ Processing by TestController#members_only as HTML
4018
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4019
+ Completed 200 OK in 1ms (Views: 0.5ms | ActiveRecord: 0.2ms)
4020
+
4021
+
4022
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:37:11 -0500
4023
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4024
+
4025
+
4026
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:37:11 -0500
4027
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4028
+ Parameters: {"auth_token"=>"LVeOZFMw2DQjcplfFUAw7A", "uid"=>"468037", "auth"=>{"auth_token"=>"LVeOZFMw2DQjcplfFUAw7A", "uid"=>"468037"}}
4029
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4030
+ Completed 401 Unauthorized in 25ms (Views: 0.3ms | ActiveRecord: 0.7ms)
4031
+
4032
+
4033
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:37:14 -0500
4034
+
4035
+
4036
+ Started GET "/auth/github/callback?code=9a205b06ce99dcc6ee74&state=c9804817319c06d51fd040e1f6051d23733e1642b074a3a8" for 127.0.0.1 at 2014-06-30 15:37:15 -0500
4037
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4038
+ Parameters: {"code"=>"9a205b06ce99dcc6ee74", "state"=>"c9804817319c06d51fd040e1f6051d23733e1642b074a3a8", "provider"=>"github"}
4039
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4040
+  (0.1ms) begin transaction
4041
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "M_aUZeYwXw-abOu9jzfZeA"], ["updated_at", "2014-06-30 20:37:16.579094"]]
4042
+  (0.6ms) commit transaction
4043
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
4044
+ Completed 200 OK in 16ms (Views: 6.0ms | ActiveRecord: 1.4ms)
4045
+
4046
+
4047
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:39:23 -0500
4048
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4049
+ Parameters: {"auth_token"=>"M_aUZeYwXw-abOu9jzfZeA", "uid"=>"468037", "auth"=>{"auth_token"=>"M_aUZeYwXw-abOu9jzfZeA", "uid"=>"468037"}}
4050
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4051
+  (0.1ms) begin transaction
4052
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "FRArGa5RrmmQHmYXKcvSxw"], ["updated_at", "2014-06-30 20:39:23.725126"]]
4053
+  (1.6ms) commit transaction
4054
+ Completed 200 OK in 16ms (Views: 0.5ms | ActiveRecord: 2.7ms)
4055
+
4056
+
4057
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:39:25 -0500
4058
+
4059
+
4060
+ Started GET "/auth/github/callback?code=fc806b8db2ac37cbbe95&state=37a4eb5e30f8feb00e537b6ef0c4253b8599371db7810cd2" for 127.0.0.1 at 2014-06-30 15:39:25 -0500
4061
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4062
+ Parameters: {"code"=>"fc806b8db2ac37cbbe95", "state"=>"37a4eb5e30f8feb00e537b6ef0c4253b8599371db7810cd2", "provider"=>"github"}
4063
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4064
+  (0.0ms) begin transaction
4065
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "pHkrxGMJYRzEDm8m77sxww"], ["updated_at", "2014-06-30 20:39:26.306829"]]
4066
+  (1.6ms) commit transaction
4067
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4068
+ Completed 200 OK in 6ms (Views: 1.6ms | ActiveRecord: 2.2ms)
4069
+
4070
+
4071
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:39:57 -0500
4072
+ Processing by TestController#members_only as HTML
4073
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4074
+  (0.0ms) begin transaction
4075
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:39:57.586376"], ["last_sign_in_at", "2014-06-30 20:30:59.389062"], ["sign_in_count", 7], ["updated_at", "2014-06-30 20:39:57.587217"]]
4076
+  (1.7ms) commit transaction
4077
+  (0.0ms) begin transaction
4078
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "KTlVo-lz4WajVu37Th1K7A"], ["updated_at", "2014-06-30 20:39:57.590625"]]
4079
+  (0.6ms) commit transaction
4080
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 3.0ms)
4081
+
4082
+
4083
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:40:15 -0500
4084
+ Processing by TestController#members_only as HTML
4085
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4086
+  (0.0ms) begin transaction
4087
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "UfENOY7QgW2pGm4BybHI1A"], ["updated_at", "2014-06-30 20:40:15.022983"]]
4088
+  (1.6ms) commit transaction
4089
+ Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 2.0ms)
4090
+
4091
+
4092
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:41:22 -0500
4093
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4094
+ Parameters: {"auth_token"=>"pHkrxGMJYRzEDm8m77sxww", "uid"=>"468037", "auth"=>{"auth_token"=>"pHkrxGMJYRzEDm8m77sxww", "uid"=>"468037"}}
4095
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4096
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
4097
+
4098
+
4099
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:41:27 -0500
4100
+
4101
+
4102
+ Started GET "/auth/github/callback?code=27f5c0cfb8d744742dd1&state=8151b056122b0f966b16ad5062abbe6dbf999db25c51d67e" for 127.0.0.1 at 2014-06-30 15:41:27 -0500
4103
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4104
+ Parameters: {"code"=>"27f5c0cfb8d744742dd1", "state"=>"8151b056122b0f966b16ad5062abbe6dbf999db25c51d67e", "provider"=>"github"}
4105
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4106
+  (0.0ms) begin transaction
4107
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "hagiIR1wZbbG3cyzk3OWfw"], ["updated_at", "2014-06-30 20:41:28.749258"]]
4108
+  (1.7ms) commit transaction
4109
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4110
+ Completed 200 OK in 6ms (Views: 1.9ms | ActiveRecord: 2.4ms)
4111
+
4112
+
4113
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 15:41:31 -0500
4114
+
4115
+
4116
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:41:31 -0500
4117
+ Processing by TestController#members_only as HTML
4118
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4119
+  (0.1ms) begin transaction
4120
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:41:31.881863"], ["last_sign_in_at", "2014-06-30 20:39:57.586376"], ["sign_in_count", 8], ["updated_at", "2014-06-30 20:41:31.882240"]]
4121
+  (1.7ms) commit transaction
4122
+  (0.0ms) begin transaction
4123
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "r7QHZR7I1VfrnB61WIC5gg"], ["updated_at", "2014-06-30 20:41:31.885456"]]
4124
+  (0.7ms) commit transaction
4125
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.1ms)
4126
+
4127
+
4128
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:41:53 -0500
4129
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4130
+ Parameters: {"auth_token"=>"hagiIR1wZbbG3cyzk3OWfw", "uid"=>"468037", "auth"=>{"auth_token"=>"hagiIR1wZbbG3cyzk3OWfw", "uid"=>"468037"}}
4131
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4132
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.3ms)
4133
+
4134
+
4135
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:41:57 -0500
4136
+
4137
+
4138
+ Started GET "/auth/github/callback?code=3e2f7adab271488d8174&state=7770fbbe10e22a616dda9df34547cff066ef6918d0f00e5f" for 127.0.0.1 at 2014-06-30 15:41:57 -0500
4139
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4140
+ Parameters: {"code"=>"3e2f7adab271488d8174", "state"=>"7770fbbe10e22a616dda9df34547cff066ef6918d0f00e5f", "provider"=>"github"}
4141
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4142
+  (0.0ms) begin transaction
4143
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "JepbZn0wvUdD512f3_Ekvw"], ["updated_at", "2014-06-30 20:41:58.859509"]]
4144
+  (1.8ms) commit transaction
4145
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4146
+ Completed 200 OK in 6ms (Views: 1.9ms | ActiveRecord: 2.4ms)
4147
+
4148
+
4149
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:42:01 -0500
4150
+ Processing by TestController#members_only as HTML
4151
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4152
+  (0.0ms) begin transaction
4153
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:42:01.422979"], ["last_sign_in_at", "2014-06-30 20:41:31.881863"], ["sign_in_count", 9], ["updated_at", "2014-06-30 20:42:01.423310"]]
4154
+  (1.6ms) commit transaction
4155
+  (0.0ms) begin transaction
4156
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Q8stfiKqsqb5B5nrwnpEYg"], ["updated_at", "2014-06-30 20:42:01.426447"]]
4157
+  (0.6ms) commit transaction
4158
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 2.8ms)
4159
+
4160
+
4161
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:42:39 -0500
4162
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4163
+ Parameters: {"auth_token"=>"JepbZn0wvUdD512f3_Ekvw", "uid"=>"468037", "auth"=>{"auth_token"=>"JepbZn0wvUdD512f3_Ekvw", "uid"=>"468037"}}
4164
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4165
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.3ms)
4166
+
4167
+
4168
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:42:42 -0500
4169
+
4170
+
4171
+ Started GET "/auth/github/callback?code=13dfd7a8ea25cb58290f&state=f4a7c4cae36aac806778a86a03df24288426d1d9807a9de0" for 127.0.0.1 at 2014-06-30 15:42:44 -0500
4172
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4173
+ Parameters: {"code"=>"13dfd7a8ea25cb58290f", "state"=>"f4a7c4cae36aac806778a86a03df24288426d1d9807a9de0", "provider"=>"github"}
4174
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4175
+  (0.1ms) begin transaction
4176
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "vl61Ran2F2YubH5mRx-J7A"], ["updated_at", "2014-06-30 20:42:45.522686"]]
4177
+  (1.8ms) commit transaction
4178
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4179
+ Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 2.4ms)
4180
+
4181
+
4182
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:42:48 -0500
4183
+ Processing by TestController#members_only as HTML
4184
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4185
+  (0.0ms) begin transaction
4186
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:42:48.015135"], ["last_sign_in_at", "2014-06-30 20:42:01.422979"], ["sign_in_count", 10], ["updated_at", "2014-06-30 20:42:48.015530"]]
4187
+  (1.6ms) commit transaction
4188
+  (0.1ms) begin transaction
4189
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "neiceynZIC8GzEJolL-rCA"], ["updated_at", "2014-06-30 20:42:48.018934"]]
4190
+  (0.5ms) commit transaction
4191
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 2.9ms)
4192
+
4193
+
4194
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:43:23 -0500
4195
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4196
+ Parameters: {"auth_token"=>"vl61Ran2F2YubH5mRx-J7A", "uid"=>"468037", "auth"=>{"auth_token"=>"vl61Ran2F2YubH5mRx-J7A", "uid"=>"468037"}}
4197
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4198
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
4199
+
4200
+
4201
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:43:36 -0500
4202
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4203
+ Parameters: {"auth_token"=>"vl61Ran2F2YubH5mRx-J7A", "uid"=>"468037", "auth"=>{"auth_token"=>"vl61Ran2F2YubH5mRx-J7A", "uid"=>"468037"}}
4204
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4205
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4206
+
4207
+
4208
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:43:39 -0500
4209
+
4210
+
4211
+ Started GET "/auth/github/callback?code=f8e1f5dacc8edfa88098&state=6fe4703f00632081c5a8cf82a58c7fa04e9b8dbffb7064fa" for 127.0.0.1 at 2014-06-30 15:43:39 -0500
4212
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4213
+ Parameters: {"code"=>"f8e1f5dacc8edfa88098", "state"=>"6fe4703f00632081c5a8cf82a58c7fa04e9b8dbffb7064fa", "provider"=>"github"}
4214
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4215
+  (0.0ms) begin transaction
4216
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "rsLSXCt4NKlyh8jSvvmkNg"], ["updated_at", "2014-06-30 20:43:40.746687"]]
4217
+  (1.7ms) commit transaction
4218
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4219
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 2.2ms)
4220
+
4221
+
4222
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:43:42 -0500
4223
+ Processing by TestController#members_only as HTML
4224
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4225
+  (0.0ms) begin transaction
4226
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:43:42.551668"], ["last_sign_in_at", "2014-06-30 20:42:48.015135"], ["sign_in_count", 11], ["updated_at", "2014-06-30 20:43:42.552038"]]
4227
+  (1.7ms) commit transaction
4228
+  (0.0ms) begin transaction
4229
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "jClnwV-Dcdy_rHx0gY5EgQ"], ["updated_at", "2014-06-30 20:43:42.555488"]]
4230
+  (0.7ms) commit transaction
4231
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 3.2ms)
4232
+
4233
+
4234
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:45:01 -0500
4235
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4236
+ Parameters: {"auth_token"=>"rsLSXCt4NKlyh8jSvvmkNg", "uid"=>"468037", "auth"=>{"auth_token"=>"rsLSXCt4NKlyh8jSvvmkNg", "uid"=>"468037"}}
4237
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4238
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
4239
+
4240
+
4241
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:45:05 -0500
4242
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4243
+ Parameters: {"auth_token"=>"rsLSXCt4NKlyh8jSvvmkNg", "uid"=>"468037", "auth"=>{"auth_token"=>"rsLSXCt4NKlyh8jSvvmkNg", "uid"=>"468037"}}
4244
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4245
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
4246
+
4247
+
4248
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:45:09 -0500
4249
+
4250
+
4251
+ Started GET "/auth/github/callback?code=5d25aaa091dfc33cdd82&state=51fa6707a534bac267d7c92735e66402a2c763558123c963" for 127.0.0.1 at 2014-06-30 15:45:09 -0500
4252
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4253
+ Parameters: {"code"=>"5d25aaa091dfc33cdd82", "state"=>"51fa6707a534bac267d7c92735e66402a2c763558123c963", "provider"=>"github"}
4254
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4255
+  (0.1ms) begin transaction
4256
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "DhNnXMktKyFWvdLjvt5F5g"], ["updated_at", "2014-06-30 20:45:10.632226"]]
4257
+  (2.1ms) commit transaction
4258
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
4259
+ Completed 200 OK in 7ms (Views: 1.8ms | ActiveRecord: 2.7ms)
4260
+
4261
+
4262
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:45:13 -0500
4263
+ Processing by TestController#members_only as HTML
4264
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4265
+  (0.0ms) begin transaction
4266
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:45:13.494343"], ["last_sign_in_at", "2014-06-30 20:43:42.551668"], ["sign_in_count", 12], ["updated_at", "2014-06-30 20:45:13.494704"]]
4267
+  (2.0ms) commit transaction
4268
+  (0.0ms) begin transaction
4269
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "4hw7LBKGLv6Hd8pxf8GJGQ"], ["updated_at", "2014-06-30 20:45:13.498304"]]
4270
+  (0.7ms) commit transaction
4271
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.3ms)
4272
+
4273
+
4274
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:47:09 -0500
4275
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4276
+ Parameters: {"auth_token"=>"DhNnXMktKyFWvdLjvt5F5g", "uid"=>"468037", "auth"=>{"auth_token"=>"DhNnXMktKyFWvdLjvt5F5g", "uid"=>"468037"}}
4277
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4278
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4279
+
4280
+
4281
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:47:14 -0500
4282
+
4283
+
4284
+ Started GET "/auth/github/callback?code=e2730503224a9a014233&state=f119083273a5de3bb85c68fb323aa8edef1b79bfd7e41285" for 127.0.0.1 at 2014-06-30 15:47:14 -0500
4285
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4286
+ Parameters: {"code"=>"e2730503224a9a014233", "state"=>"f119083273a5de3bb85c68fb323aa8edef1b79bfd7e41285", "provider"=>"github"}
4287
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4288
+  (0.0ms) begin transaction
4289
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "kHq-3lmw82AzEjB5SHtMWw"], ["updated_at", "2014-06-30 20:47:15.573907"]]
4290
+  (1.8ms) commit transaction
4291
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4292
+ Completed 200 OK in 6ms (Views: 1.8ms | ActiveRecord: 2.4ms)
4293
+
4294
+
4295
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:47:18 -0500
4296
+ Processing by TestController#members_only as HTML
4297
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4298
+  (0.0ms) begin transaction
4299
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:47:18.623490"], ["last_sign_in_at", "2014-06-30 20:45:13.494343"], ["sign_in_count", 13], ["updated_at", "2014-06-30 20:47:18.623876"]]
4300
+  (1.8ms) commit transaction
4301
+  (0.0ms) begin transaction
4302
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "gWNGvoOY9BsvTptzdE9T-g"], ["updated_at", "2014-06-30 20:47:18.627227"]]
4303
+  (0.7ms) commit transaction
4304
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.0ms)
4305
+
4306
+
4307
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:49:44 -0500
4308
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4309
+
4310
+
4311
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:49:44 -0500
4312
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4313
+ Parameters: {"auth_token"=>"kHq-3lmw82AzEjB5SHtMWw", "uid"=>"468037", "auth"=>{"auth_token"=>"kHq-3lmw82AzEjB5SHtMWw", "uid"=>"468037"}}
4314
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4315
+ Completed 401 Unauthorized in 25ms (Views: 0.2ms | ActiveRecord: 0.9ms)
4316
+
4317
+
4318
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:49:46 -0500
4319
+
4320
+
4321
+ Started GET "/auth/github/callback?code=211d7f5ef8d93a429650&state=710f73e9ff28560eaf9fa066dcb8e6faa49a8bf1341d5739" for 127.0.0.1 at 2014-06-30 15:49:47 -0500
4322
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4323
+ Parameters: {"code"=>"211d7f5ef8d93a429650", "state"=>"710f73e9ff28560eaf9fa066dcb8e6faa49a8bf1341d5739", "provider"=>"github"}
4324
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4325
+  (0.1ms) begin transaction
4326
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Fk-EPusqkXEJrngEoq4qaA"], ["updated_at", "2014-06-30 20:49:47.930630"]]
4327
+  (1.9ms) commit transaction
4328
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.6ms)
4329
+ Completed 200 OK in 17ms (Views: 8.6ms | ActiveRecord: 2.6ms)
4330
+
4331
+
4332
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:49:51 -0500
4333
+ Processing by TestController#members_only as HTML
4334
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4335
+  (0.0ms) begin transaction
4336
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:49:51.323351"], ["last_sign_in_at", "2014-06-30 20:47:18.623490"], ["sign_in_count", 14], ["updated_at", "2014-06-30 20:49:51.324170"]]
4337
+  (1.8ms) commit transaction
4338
+  (0.0ms) begin transaction
4339
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "cwOeiZ4UHsfff2R3fAYf2w"], ["updated_at", "2014-06-30 20:49:51.327704"]]
4340
+  (0.7ms) commit transaction
4341
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 3.2ms)
4342
+
4343
+
4344
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:50:07 -0500
4345
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4346
+ Parameters: {"auth_token"=>"Fk-EPusqkXEJrngEoq4qaA", "uid"=>"468037", "auth"=>{"auth_token"=>"Fk-EPusqkXEJrngEoq4qaA", "uid"=>"468037"}}
4347
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4348
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4349
+
4350
+
4351
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:50:09 -0500
4352
+
4353
+
4354
+ Started GET "/auth/github/callback?code=c946c65310a31553a501&state=7f1aa74495800ecb5d513ec7dc190016c5fe5653dacc39e8" for 127.0.0.1 at 2014-06-30 15:50:09 -0500
4355
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4356
+ Parameters: {"code"=>"c946c65310a31553a501", "state"=>"7f1aa74495800ecb5d513ec7dc190016c5fe5653dacc39e8", "provider"=>"github"}
4357
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4358
+  (0.0ms) begin transaction
4359
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "sgJ9lFo718En5ybnG2AM2w"], ["updated_at", "2014-06-30 20:50:11.171762"]]
4360
+  (1.6ms) commit transaction
4361
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4362
+ Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 2.1ms)
4363
+
4364
+
4365
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:50:13 -0500
4366
+ Processing by TestController#members_only as HTML
4367
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4368
+  (0.0ms) begin transaction
4369
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:50:13.639538"], ["last_sign_in_at", "2014-06-30 20:49:51.323351"], ["sign_in_count", 15], ["updated_at", "2014-06-30 20:50:13.639875"]]
4370
+  (1.7ms) commit transaction
4371
+  (0.0ms) begin transaction
4372
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "x_wCPrdfy3VzdcrxobaMuQ"], ["updated_at", "2014-06-30 20:50:13.643215"]]
4373
+  (0.7ms) commit transaction
4374
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.0ms)
4375
+
4376
+
4377
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:50:53 -0500
4378
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4379
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4380
+ Parameters: {"auth_token"=>"sgJ9lFo718En5ybnG2AM2w", "uid"=>"468037", "auth"=>{"auth_token"=>"sgJ9lFo718En5ybnG2AM2w", "uid"=>"468037"}}
4381
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4382
+ Completed 401 Unauthorized in 16ms (Views: 0.2ms | ActiveRecord: 0.5ms)
4383
+
4384
+
4385
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:50:56 -0500
4386
+
4387
+
4388
+ Started GET "/auth/github/callback?code=950a95f3442bd3fa3c12&state=635875e9e7047ec5d13c333bd3b40694e9f44484eb8722c1" for 127.0.0.1 at 2014-06-30 15:50:57 -0500
4389
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4390
+ Parameters: {"code"=>"950a95f3442bd3fa3c12", "state"=>"635875e9e7047ec5d13c333bd3b40694e9f44484eb8722c1", "provider"=>"github"}
4391
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4392
+  (0.1ms) begin transaction
4393
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "66sMo8Fmma2dfG5p1LUHAg"], ["updated_at", "2014-06-30 20:50:58.350947"]]
4394
+  (1.9ms) commit transaction
4395
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
4396
+ Completed 200 OK in 15ms (Views: 6.1ms | ActiveRecord: 2.5ms)
4397
+
4398
+
4399
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:51:00 -0500
4400
+ Processing by TestController#members_only as HTML
4401
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4402
+  (0.0ms) begin transaction
4403
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:51:00.629686"], ["last_sign_in_at", "2014-06-30 20:50:13.639538"], ["sign_in_count", 16], ["updated_at", "2014-06-30 20:51:00.630513"]]
4404
+  (0.5ms) commit transaction
4405
+  (0.1ms) begin transaction
4406
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Z47X94TOUOU0MNtl5MLZGw"], ["updated_at", "2014-06-30 20:51:00.632851"]]
4407
+  (0.5ms) commit transaction
4408
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 1.8ms)
4409
+
4410
+
4411
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:51:09 -0500
4412
+ Processing by TestController#members_only as HTML
4413
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4414
+  (0.0ms) begin transaction
4415
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "j6X2OaoYiMt8yXZ3PvhCYw"], ["updated_at", "2014-06-30 20:51:09.666769"]]
4416
+  (1.7ms) commit transaction
4417
+ Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 2.2ms)
4418
+
4419
+
4420
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:51:18 -0500
4421
+ Processing by TestController#members_only as HTML
4422
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4423
+  (0.0ms) begin transaction
4424
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "htEN6iT6oNWYco3M5EIVHw"], ["updated_at", "2014-06-30 20:51:18.854229"]]
4425
+  (1.7ms) commit transaction
4426
+ Completed 200 OK in 4ms (Views: 0.5ms | ActiveRecord: 2.2ms)
4427
+
4428
+
4429
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:53:27 -0500
4430
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4431
+ Parameters: {"auth_token"=>"66sMo8Fmma2dfG5p1LUHAg", "uid"=>"468037", "auth"=>{"auth_token"=>"66sMo8Fmma2dfG5p1LUHAg", "uid"=>"468037"}}
4432
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4433
+ Completed 401 Unauthorized in 17ms (Views: 0.2ms | ActiveRecord: 0.6ms)
4434
+
4435
+
4436
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:53:31 -0500
4437
+
4438
+
4439
+ Started GET "/auth/github/callback?code=ff562a316e1959285092&state=a54868602207134098edada67f5247b9327f05b38265171d" for 127.0.0.1 at 2014-06-30 15:53:31 -0500
4440
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4441
+ Parameters: {"code"=>"ff562a316e1959285092", "state"=>"a54868602207134098edada67f5247b9327f05b38265171d", "provider"=>"github"}
4442
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4443
+  (0.0ms) begin transaction
4444
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "UGieyunRZsrc66uVCfuE_g"], ["updated_at", "2014-06-30 20:53:32.732116"]]
4445
+  (1.7ms) commit transaction
4446
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4447
+ Completed 200 OK in 7ms (Views: 2.0ms | ActiveRecord: 2.3ms)
4448
+
4449
+
4450
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 15:53:36 -0500
4451
+
4452
+
4453
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:53:36 -0500
4454
+ Processing by TestController#members_only as HTML
4455
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4456
+  (0.0ms) begin transaction
4457
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:53:36.281917"], ["last_sign_in_at", "2014-06-30 20:51:00.629686"], ["sign_in_count", 17], ["updated_at", "2014-06-30 20:53:36.282326"]]
4458
+  (0.6ms) commit transaction
4459
+  (0.1ms) begin transaction
4460
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "GKytZGwpB_50pP7YA56tUw"], ["updated_at", "2014-06-30 20:53:36.284776"]]
4461
+  (0.7ms) commit transaction
4462
+ Completed 200 OK in 5ms (Views: 0.5ms | ActiveRecord: 2.0ms)
4463
+
4464
+
4465
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:53:39 -0500
4466
+ Processing by TestController#members_only as HTML
4467
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4468
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4469
+
4470
+
4471
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:57:08 -0500
4472
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4473
+ Parameters: {"auth_token"=>"UGieyunRZsrc66uVCfuE_g", "uid"=>"468037", "auth"=>{"auth_token"=>"UGieyunRZsrc66uVCfuE_g", "uid"=>"468037"}}
4474
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4475
+ Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms)
4476
+
4477
+
4478
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:57:10 -0500
4479
+
4480
+
4481
+ Started GET "/auth/github/callback?code=9bf7fab64343324fb144&state=21ec89f3e261e5bb030d24e0aa35075682e5ba2b8ddf8f39" for 127.0.0.1 at 2014-06-30 15:57:10 -0500
4482
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4483
+ Parameters: {"code"=>"9bf7fab64343324fb144", "state"=>"21ec89f3e261e5bb030d24e0aa35075682e5ba2b8ddf8f39", "provider"=>"github"}
4484
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4485
+  (0.0ms) begin transaction
4486
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "x6UWPxibcRLFRu-pcHdBLA"], ["updated_at", "2014-06-30 20:57:11.534497"]]
4487
+  (1.7ms) commit transaction
4488
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4489
+ Completed 200 OK in 6ms (Views: 1.7ms | ActiveRecord: 2.3ms)
4490
+
4491
+
4492
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:57:15 -0500
4493
+ Processing by TestController#members_only as HTML
4494
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4495
+  (0.0ms) begin transaction
4496
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:57:15.518681"], ["last_sign_in_at", "2014-06-30 20:53:36.281917"], ["sign_in_count", 18], ["updated_at", "2014-06-30 20:57:15.519073"]]
4497
+  (1.7ms) commit transaction
4498
+  (0.0ms) begin transaction
4499
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "xoC4WyTsQbu7qf6MtsFttg"], ["updated_at", "2014-06-30 20:57:15.522486"]]
4500
+  (0.6ms) commit transaction
4501
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 3.0ms)
4502
+
4503
+
4504
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:57:21 -0500
4505
+ Processing by TestController#members_only as HTML
4506
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4507
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4508
+
4509
+
4510
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 15:58:25 -0500
4511
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4512
+ Parameters: {"auth_token"=>"x6UWPxibcRLFRu-pcHdBLA", "uid"=>"468037", "auth"=>{"auth_token"=>"x6UWPxibcRLFRu-pcHdBLA", "uid"=>"468037"}}
4513
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4514
+ Completed 401 Unauthorized in 12ms (Views: 0.2ms | ActiveRecord: 0.7ms)
4515
+
4516
+
4517
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 15:58:26 -0500
4518
+
4519
+
4520
+ Started GET "/auth/github/callback?code=ab3b57c13b375a2bb179&state=28cdfda7dfd87be7b0771505cd7229a9f84ea0bf28921b52" for 127.0.0.1 at 2014-06-30 15:58:28 -0500
4521
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4522
+ Parameters: {"code"=>"ab3b57c13b375a2bb179", "state"=>"28cdfda7dfd87be7b0771505cd7229a9f84ea0bf28921b52", "provider"=>"github"}
4523
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4524
+  (0.0ms) begin transaction
4525
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "hKitvYUGmkKseD5o9AIiVQ"], ["updated_at", "2014-06-30 20:58:29.312379"]]
4526
+  (1.8ms) commit transaction
4527
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4528
+ Completed 200 OK in 7ms (Views: 1.8ms | ActiveRecord: 2.4ms)
4529
+
4530
+
4531
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:58:32 -0500
4532
+ Processing by TestController#members_only as HTML
4533
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4534
+  (0.0ms) begin transaction
4535
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 20:58:32.631460"], ["last_sign_in_at", "2014-06-30 20:57:15.518681"], ["sign_in_count", 19], ["updated_at", "2014-06-30 20:58:32.631818"]]
4536
+  (1.8ms) commit transaction
4537
+  (0.0ms) begin transaction
4538
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "gHIZ0Z40YTp324y5pDjSYg"], ["updated_at", "2014-06-30 20:58:32.635210"]]
4539
+  (0.7ms) commit transaction
4540
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.1ms)
4541
+
4542
+
4543
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 15:58:38 -0500
4544
+ Processing by TestController#members_only as HTML
4545
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4546
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4547
+
4548
+
4549
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:00:00 -0500
4550
+
4551
+
4552
+ Started GET "/auth/github/callback?code=e7f0c21ba47bc9644e4e&state=0aa80142b5dbecdfd4b56d5decbc5451e4e0240edb5d8d82" for 127.0.0.1 at 2014-06-30 16:00:00 -0500
4553
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4554
+ Parameters: {"code"=>"e7f0c21ba47bc9644e4e", "state"=>"0aa80142b5dbecdfd4b56d5decbc5451e4e0240edb5d8d82", "provider"=>"github"}
4555
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4556
+  (0.0ms) begin transaction
4557
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "3Yppfn9KE6bQF3p_-ZAeHQ"], ["updated_at", "2014-06-30 21:00:01.688326"]]
4558
+  (2.0ms) commit transaction
4559
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
4560
+ Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 2.9ms)
4561
+
4562
+
4563
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:00:04 -0500
4564
+ Processing by TestController#members_only as HTML
4565
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4566
+  (0.0ms) begin transaction
4567
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:00:04.567406"], ["last_sign_in_at", "2014-06-30 20:58:32.631460"], ["sign_in_count", 20], ["updated_at", "2014-06-30 21:00:04.567771"]]
4568
+  (1.7ms) commit transaction
4569
+  (0.0ms) begin transaction
4570
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "fFyt7dC4jx_FWgPZlOMckg"], ["updated_at", "2014-06-30 21:00:04.571214"]]
4571
+  (0.6ms) commit transaction
4572
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.0ms)
4573
+
4574
+
4575
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:00:10 -0500
4576
+ Processing by TestController#members_only as HTML
4577
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4578
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4579
+
4580
+
4581
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:02:57 -0500
4582
+
4583
+
4584
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:02:57 -0500
4585
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4586
+ Parameters: {"auth_token"=>"3Yppfn9KE6bQF3p_-ZAeHQ", "uid"=>"468037", "auth"=>{"auth_token"=>"3Yppfn9KE6bQF3p_-ZAeHQ", "uid"=>"468037"}}
4587
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4588
+ Completed 401 Unauthorized in 20ms (Views: 0.3ms | ActiveRecord: 1.1ms)
4589
+
4590
+
4591
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:02:59 -0500
4592
+
4593
+
4594
+ Started GET "/auth/github/callback?code=b21dbff770ddebf4db4a&state=a00e415072cd7429c4f9e07cce028ed238f019f20c26552d" for 127.0.0.1 at 2014-06-30 16:02:59 -0500
4595
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4596
+ Parameters: {"code"=>"b21dbff770ddebf4db4a", "state"=>"a00e415072cd7429c4f9e07cce028ed238f019f20c26552d", "provider"=>"github"}
4597
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4598
+  (0.1ms) begin transaction
4599
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "ruVlxf8Rcf1SkgVrbR_a2g"], ["updated_at", "2014-06-30 21:03:00.843216"]]
4600
+  (1.7ms) commit transaction
4601
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
4602
+ Completed 200 OK in 8ms (Views: 2.3ms | ActiveRecord: 2.5ms)
4603
+
4604
+
4605
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:03:03 -0500
4606
+ Processing by TestController#members_only as HTML
4607
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4608
+  (0.0ms) begin transaction
4609
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:03:03.086975"], ["last_sign_in_at", "2014-06-30 21:00:04.567406"], ["sign_in_count", 21], ["updated_at", "2014-06-30 21:03:03.087353"]]
4610
+  (1.8ms) commit transaction
4611
+  (0.0ms) begin transaction
4612
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "nxM_R37iI9PZxbNCLQcE0Q"], ["updated_at", "2014-06-30 21:03:03.090943"]]
4613
+  (0.7ms) commit transaction
4614
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 3.2ms)
4615
+
4616
+
4617
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:03:07 -0500
4618
+ Processing by TestController#members_only as HTML
4619
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4620
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4621
+
4622
+
4623
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:04:14 -0500
4624
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4625
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4626
+ Parameters: {"auth_token"=>"ruVlxf8Rcf1SkgVrbR_a2g", "uid"=>"468037", "auth"=>{"auth_token"=>"ruVlxf8Rcf1SkgVrbR_a2g", "uid"=>"468037"}}
4627
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4628
+ Completed 401 Unauthorized in 22ms (Views: 0.2ms | ActiveRecord: 0.5ms)
4629
+
4630
+
4631
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:04:17 -0500
4632
+
4633
+
4634
+ Started GET "/auth/github/callback?code=86276756ee63de8789bd&state=afbaa9ac96da723e1f0a6e144e72c32509891f922f613498" for 127.0.0.1 at 2014-06-30 16:04:17 -0500
4635
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4636
+ Parameters: {"code"=>"86276756ee63de8789bd", "state"=>"afbaa9ac96da723e1f0a6e144e72c32509891f922f613498", "provider"=>"github"}
4637
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4638
+  (0.1ms) begin transaction
4639
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "WMByvXEGh8ADYjyNAXgOiQ"], ["updated_at", "2014-06-30 21:04:18.843783"]]
4640
+  (1.7ms) commit transaction
4641
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
4642
+ Completed 200 OK in 15ms (Views: 6.0ms | ActiveRecord: 2.3ms)
4643
+
4644
+
4645
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 16:04:20 -0500
4646
+
4647
+
4648
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:04:20 -0500
4649
+ Processing by TestController#members_only as HTML
4650
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4651
+  (0.0ms) begin transaction
4652
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:04:20.985358"], ["last_sign_in_at", "2014-06-30 21:03:03.086975"], ["sign_in_count", 22], ["updated_at", "2014-06-30 21:04:20.986154"]]
4653
+  (1.7ms) commit transaction
4654
+  (0.0ms) begin transaction
4655
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "b7ITcpNWqoDUNyjPzIJJmA"], ["updated_at", "2014-06-30 21:04:20.989611"]]
4656
+  (0.6ms) commit transaction
4657
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 3.0ms)
4658
+
4659
+
4660
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:04:26 -0500
4661
+ Processing by TestController#members_only as HTML
4662
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4663
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4664
+
4665
+
4666
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:06:29 -0500
4667
+ Processing by TestController#members_only as HTML
4668
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4669
+ Completed 401 Unauthorized in 17ms (Views: 0.2ms | ActiveRecord: 0.6ms)
4670
+
4671
+
4672
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:08:29 -0500
4673
+ Processing by TestController#members_only as HTML
4674
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4675
+ Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms)
4676
+
4677
+
4678
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:08:33 -0500
4679
+ Processing by TestController#members_only as HTML
4680
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4681
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4682
+
4683
+
4684
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:08:41 -0500
4685
+
4686
+
4687
+ Started GET "/auth/github/callback?code=a9e4456d881a1dc136fe&state=64c461c60172a5d68b481e9bac6b25d77da5e7ff23e3db9e" for 127.0.0.1 at 2014-06-30 16:08:41 -0500
4688
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4689
+ Parameters: {"code"=>"a9e4456d881a1dc136fe", "state"=>"64c461c60172a5d68b481e9bac6b25d77da5e7ff23e3db9e", "provider"=>"github"}
4690
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4691
+  (0.0ms) begin transaction
4692
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "BGgb4GgaTGP2730IUWN9lA"], ["updated_at", "2014-06-30 21:08:41.894046"]]
4693
+  (1.7ms) commit transaction
4694
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4695
+  (0.0ms) begin transaction
4696
+ SQL (0.1ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "6CrBLkftAHYFBXYl4w9mPw"], ["updated_at", "2014-06-30 21:08:41.898874"]]
4697
+  (0.6ms) commit transaction
4698
+ Completed 200 OK in 18595ms (Views: 1.8ms | ActiveRecord: 3.1ms)
4699
+
4700
+
4701
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:09:29 -0500
4702
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4703
+
4704
+
4705
+ Started GET "/auth/github/callback?code=52755d300d4ab9bc3c89&state=4743bcb55dee140b9b179dddc0ec2ad95e6c7a7c8e3be4b1" for 127.0.0.1 at 2014-06-30 16:09:30 -0500
4706
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4707
+ Parameters: {"code"=>"52755d300d4ab9bc3c89", "state"=>"4743bcb55dee140b9b179dddc0ec2ad95e6c7a7c8e3be4b1", "provider"=>"github"}
4708
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4709
+  (0.1ms) begin transaction
4710
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "diYMjVyV-EMmU1FQvpP7jg"], ["updated_at", "2014-06-30 21:09:31.408657"]]
4711
+  (1.6ms) commit transaction
4712
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.2ms)
4713
+ Completed 200 OK in 29ms (Views: 6.5ms | ActiveRecord: 2.6ms)
4714
+
4715
+
4716
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:09:39 -0500
4717
+ Processing by TestController#members_only as HTML
4718
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4719
+  (0.0ms) begin transaction
4720
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:09:39.387198"], ["last_sign_in_at", "2014-06-30 21:04:20.985358"], ["sign_in_count", 23], ["updated_at", "2014-06-30 21:09:39.387986"]]
4721
+  (1.7ms) commit transaction
4722
+  (0.0ms) begin transaction
4723
+ SQL (0.1ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "BjB5iJueADNqZnSOtBdmLA"], ["updated_at", "2014-06-30 21:09:39.391451"]]
4724
+  (0.5ms) commit transaction
4725
+ Completed 200 OK in 7ms (Views: 0.4ms | ActiveRecord: 2.9ms)
4726
+
4727
+
4728
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:09:49 -0500
4729
+ Processing by TestController#members_only as HTML
4730
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4731
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4732
+
4733
+
4734
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:09:54 -0500
4735
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4736
+ Parameters: {"auth_token"=>"diYMjVyV-EMmU1FQvpP7jg", "uid"=>"468037", "auth"=>{"auth_token"=>"diYMjVyV-EMmU1FQvpP7jg", "uid"=>"468037"}}
4737
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
4738
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
4739
+
4740
+
4741
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:09:56 -0500
4742
+
4743
+
4744
+ Started GET "/auth/github/callback?code=ca447bf95076097b9ce7&state=6e12409597b76f3afd6ecb8c933b55492830fb32d85d9ce1" for 127.0.0.1 at 2014-06-30 16:09:57 -0500
4745
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4746
+ Parameters: {"code"=>"ca447bf95076097b9ce7", "state"=>"6e12409597b76f3afd6ecb8c933b55492830fb32d85d9ce1", "provider"=>"github"}
4747
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4748
+  (0.0ms) begin transaction
4749
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "gAlYxe0kihz1dSR3iHh9BQ"], ["updated_at", "2014-06-30 21:09:58.164998"]]
4750
+  (1.8ms) commit transaction
4751
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
4752
+ Completed 200 OK in 6ms (Views: 1.5ms | ActiveRecord: 2.3ms)
4753
+
4754
+
4755
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:10:29 -0500
4756
+ Processing by TestController#members_only as HTML
4757
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4758
+  (0.1ms) begin transaction
4759
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:10:29.262103"], ["last_sign_in_at", "2014-06-30 21:09:39.387198"], ["sign_in_count", 24], ["updated_at", "2014-06-30 21:10:29.262581"]]
4760
+  (1.9ms) commit transaction
4761
+  (0.0ms) begin transaction
4762
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "znMpp0e19ac6KA7H_88hJA"], ["updated_at", "2014-06-30 21:10:29.266488"]]
4763
+  (0.5ms) commit transaction
4764
+ Completed 200 OK in 11346ms (Views: 0.5ms | ActiveRecord: 3.7ms)
4765
+
4766
+
4767
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:13:00 -0500
4768
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4769
+
4770
+
4771
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:13:00 -0500
4772
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
4773
+ Parameters: {"auth_token"=>"gAlYxe0kihz1dSR3iHh9BQ", "uid"=>"468037", "auth"=>{"auth_token"=>"gAlYxe0kihz1dSR3iHh9BQ", "uid"=>"468037"}}
4774
+ Completed 500 Internal Server Error in 2ms
4775
+
4776
+ NoMethodError (undefined method `validate_user' for #<DeviseTokenAuth::AuthController:0x007ffd3fd3fc90>):
4777
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
4778
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
4779
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
4780
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
4781
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
4782
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
4783
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
4784
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
4785
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
4786
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4787
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
4788
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4789
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
4790
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4791
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
4792
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
4793
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
4794
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4795
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
4796
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
4797
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
4798
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
4799
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4800
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
4801
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
4802
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
4803
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
4804
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
4805
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
4806
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4807
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
4808
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
4809
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
4810
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
4811
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
4812
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
4813
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
4814
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
4815
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
4816
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
4817
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
4818
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
4819
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
4820
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
4821
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
4822
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
4823
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
4824
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4825
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
4826
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
4827
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
4828
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
4829
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
4830
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
4831
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
4832
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4833
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
4834
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4835
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
4836
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
4837
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4838
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4839
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
4840
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
4841
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
4842
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
4843
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
4844
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
4845
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4846
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
4847
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
4848
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
4849
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4850
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4851
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4852
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
4853
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
4854
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4855
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4856
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4857
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4858
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4859
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4860
+
4861
+
4862
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
4863
+ 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)
4864
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.9ms)
4865
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.0ms)
4866
+
4867
+
4868
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:13:03 -0500
4869
+
4870
+
4871
+ Started GET "/auth/github/callback?code=cc152efd1a2ef98452b5&state=935ca392ad3d0b93a82c9d2f7151521dd7e16a2a285d2917" for 127.0.0.1 at 2014-06-30 16:13:04 -0500
4872
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4873
+ Parameters: {"code"=>"cc152efd1a2ef98452b5", "state"=>"935ca392ad3d0b93a82c9d2f7151521dd7e16a2a285d2917", "provider"=>"github"}
4874
+ Completed 500 Internal Server Error in 4ms
4875
+
4876
+ NoMethodError (undefined method `validate_user' for #<DeviseTokenAuth::AuthController:0x007ffd3debc9a8>):
4877
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
4878
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
4879
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
4880
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
4881
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
4882
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
4883
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
4884
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
4885
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
4886
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
4887
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
4888
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
4889
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
4890
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
4891
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
4892
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
4893
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
4894
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
4895
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
4896
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
4897
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
4898
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
4899
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4900
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
4901
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
4902
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
4903
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
4904
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
4905
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
4906
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
4907
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
4908
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
4909
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
4910
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
4911
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
4912
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
4913
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
4914
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
4915
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
4916
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
4917
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
4918
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
4919
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
4920
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
4921
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
4922
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
4923
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
4924
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
4925
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
4926
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
4927
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
4928
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
4929
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
4930
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
4931
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
4932
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
4933
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
4934
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
4935
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
4936
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
4937
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
4938
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
4939
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
4940
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
4941
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
4942
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
4943
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
4944
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
4945
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
4946
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
4947
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
4948
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
4949
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
4950
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
4951
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
4952
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
4953
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4954
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
4955
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
4956
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
4957
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
4958
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
4959
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
4960
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
4961
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
4962
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
4963
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
4964
+
4965
+
4966
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
4967
+ 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)
4968
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
4969
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.1ms)
4970
+
4971
+
4972
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:14:17 -0500
4973
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
4974
+
4975
+
4976
+ Started GET "/auth/github/callback?code=82cad28cd9815f24b70d&state=265b4bac37966e0789ee9b77b18ffe45ee79fc64670faee6" for 127.0.0.1 at 2014-06-30 16:14:18 -0500
4977
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
4978
+ Parameters: {"code"=>"82cad28cd9815f24b70d", "state"=>"265b4bac37966e0789ee9b77b18ffe45ee79fc64670faee6", "provider"=>"github"}
4979
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
4980
+  (0.1ms) begin transaction
4981
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "b4POrUmML-mBy3MZJMcRBg"], ["updated_at", "2014-06-30 21:14:19.505158"]]
4982
+  (0.8ms) commit transaction
4983
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
4984
+ Completed 200 OK in 27ms (Views: 6.1ms | ActiveRecord: 1.6ms)
4985
+
4986
+
4987
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 16:14:27 -0500
4988
+
4989
+
4990
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:14:27 -0500
4991
+ Processing by TestController#members_only as HTML
4992
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
4993
+  (0.0ms) begin transaction
4994
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:14:27.062428"], ["last_sign_in_at", "2014-06-30 21:10:29.262103"], ["sign_in_count", 25], ["updated_at", "2014-06-30 21:14:27.063235"]]
4995
+  (1.9ms) commit transaction
4996
+  (0.0ms) begin transaction
4997
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "QpVF0uxQ8X09WBnrlwwlsw"], ["updated_at", "2014-06-30 21:14:27.067009"]]
4998
+  (0.7ms) commit transaction
4999
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 3.4ms)
5000
+
5001
+
5002
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:14:54 -0500
5003
+
5004
+
5005
+ Started GET "/auth/github/callback?code=e4b8b41f161c5405f65a&state=0b0c64267aed1ce94390263cece01807a7ed3812193d9da1" for 127.0.0.1 at 2014-06-30 16:14:55 -0500
5006
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5007
+ Parameters: {"code"=>"e4b8b41f161c5405f65a", "state"=>"0b0c64267aed1ce94390263cece01807a7ed3812193d9da1", "provider"=>"github"}
5008
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5009
+  (0.0ms) begin transaction
5010
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "qO0TiuoZrBorvE-8ewMpNQ"], ["updated_at", "2014-06-30 21:14:56.875878"]]
5011
+  (1.9ms) commit transaction
5012
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5013
+ Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 2.8ms)
5014
+
5015
+
5016
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:14:59 -0500
5017
+ Processing by TestController#members_only as HTML
5018
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5019
+  (0.0ms) begin transaction
5020
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:14:59.017305"], ["last_sign_in_at", "2014-06-30 21:14:27.062428"], ["sign_in_count", 26], ["updated_at", "2014-06-30 21:14:59.017693"]]
5021
+  (1.8ms) commit transaction
5022
+  (0.0ms) begin transaction
5023
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "1QAqqfF4DgxX7ujnmbL7FQ"], ["updated_at", "2014-06-30 21:14:59.021210"]]
5024
+  (0.6ms) commit transaction
5025
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.1ms)
5026
+
5027
+
5028
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:15:21 -0500
5029
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5030
+ Parameters: {"auth_token"=>"qO0TiuoZrBorvE-8ewMpNQ", "uid"=>"468037", "auth"=>{"auth_token"=>"qO0TiuoZrBorvE-8ewMpNQ", "uid"=>"468037"}}
5031
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
5032
+ Completed 401 Unauthorized in 11ms (Views: 0.2ms | ActiveRecord: 0.6ms)
5033
+
5034
+
5035
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:15:24 -0500
5036
+
5037
+
5038
+ Started GET "/auth/github/callback?code=528c7900e885e35d1716&state=375b2128407f692c26c33632ad5136c767b3bd1599e0bf5c" for 127.0.0.1 at 2014-06-30 16:15:25 -0500
5039
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5040
+ Parameters: {"code"=>"528c7900e885e35d1716", "state"=>"375b2128407f692c26c33632ad5136c767b3bd1599e0bf5c", "provider"=>"github"}
5041
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5042
+  (0.0ms) begin transaction
5043
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "cC-lRZOmRAEqlX1Let8kkA"], ["updated_at", "2014-06-30 21:15:26.327782"]]
5044
+  (1.7ms) commit transaction
5045
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5046
+ Completed 200 OK in 7ms (Views: 2.0ms | ActiveRecord: 2.4ms)
5047
+
5048
+
5049
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:15:32 -0500
5050
+ Processing by TestController#members_only as HTML
5051
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5052
+  (0.0ms) begin transaction
5053
+ SQL (0.6ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:15:32.738773"], ["last_sign_in_at", "2014-06-30 21:14:59.017305"], ["sign_in_count", 27], ["updated_at", "2014-06-30 21:15:32.739174"]]
5054
+  (0.8ms) commit transaction
5055
+  (0.0ms) begin transaction
5056
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "SvecXg63mVOl2S31gfHT0g"], ["updated_at", "2014-06-30 21:15:32.744601"]]
5057
+  (0.7ms) commit transaction
5058
+ Completed 200 OK in 12ms (Views: 0.5ms | ActiveRecord: 2.6ms)
5059
+
5060
+
5061
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:16:04 -0500
5062
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5063
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5064
+ Parameters: {"auth_token"=>"cC-lRZOmRAEqlX1Let8kkA", "uid"=>"468037", "auth"=>{"auth_token"=>"cC-lRZOmRAEqlX1Let8kkA", "uid"=>"468037"}}
5065
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
5066
+ Completed 401 Unauthorized in 20ms (Views: 0.2ms | ActiveRecord: 0.6ms)
5067
+
5068
+
5069
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:16:06 -0500
5070
+
5071
+
5072
+ Started GET "/auth/github/callback?code=f51501296632e327ddcc&state=f9049baadf5531ce58593f0d87041cace7a87cce4cc73025" for 127.0.0.1 at 2014-06-30 16:16:06 -0500
5073
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5074
+ Parameters: {"code"=>"f51501296632e327ddcc", "state"=>"f9049baadf5531ce58593f0d87041cace7a87cce4cc73025", "provider"=>"github"}
5075
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5076
+  (0.0ms) begin transaction
5077
+ SQL (0.5ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "KyrCxom5QUBQx8UEjr5OEw"], ["updated_at", "2014-06-30 21:16:07.704360"]]
5078
+  (1.7ms) commit transaction
5079
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.2ms)
5080
+ Completed 200 OK in 14ms (Views: 6.4ms | ActiveRecord: 2.4ms)
5081
+
5082
+
5083
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:16:19 -0500
5084
+ Processing by TestController#members_only as HTML
5085
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5086
+  (0.0ms) begin transaction
5087
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:16:19.138343"], ["last_sign_in_at", "2014-06-30 21:15:32.738773"], ["sign_in_count", 28], ["updated_at", "2014-06-30 21:16:19.139199"]]
5088
+  (1.6ms) commit transaction
5089
+  (0.0ms) begin transaction
5090
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "1WgOU8xhpEwk5Y1HimaNmQ"], ["updated_at", "2014-06-30 21:16:19.142756"]]
5091
+  (0.5ms) commit transaction
5092
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 2.9ms)
5093
+
5094
+
5095
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:17:55 -0500
5096
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5097
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5098
+ Parameters: {"auth_token"=>"KyrCxom5QUBQx8UEjr5OEw", "uid"=>"468037", "auth"=>{"auth_token"=>"KyrCxom5QUBQx8UEjr5OEw", "uid"=>"468037"}}
5099
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
5100
+ Completed 401 Unauthorized in 16ms (Views: 0.2ms | ActiveRecord: 0.5ms)
5101
+
5102
+
5103
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:17:56 -0500
5104
+
5105
+
5106
+ Started GET "/auth/github/callback?code=ea64f33d61e80c1b5914&state=aa6d5b9ef1421e697345e20dd30419d441a82a658c1e716e" for 127.0.0.1 at 2014-06-30 16:17:56 -0500
5107
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5108
+ Parameters: {"code"=>"ea64f33d61e80c1b5914", "state"=>"aa6d5b9ef1421e697345e20dd30419d441a82a658c1e716e", "provider"=>"github"}
5109
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5110
+  (0.1ms) begin transaction
5111
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "RJkdYmCi21pIKmtnOR4Bxg"], ["updated_at", "2014-06-30 21:17:57.917260"]]
5112
+  (1.7ms) commit transaction
5113
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
5114
+ Completed 200 OK in 15ms (Views: 6.0ms | ActiveRecord: 2.3ms)
5115
+
5116
+
5117
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:18:01 -0500
5118
+ Processing by TestController#members_only as HTML
5119
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5120
+  (0.0ms) begin transaction
5121
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:18:01.111968"], ["last_sign_in_at", "2014-06-30 21:16:19.138343"], ["sign_in_count", 29], ["updated_at", "2014-06-30 21:18:01.112833"]]
5122
+  (2.0ms) commit transaction
5123
+  (0.0ms) begin transaction
5124
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "MY_wGqDVZLfkwPDSjTbMhw"], ["updated_at", "2014-06-30 21:18:01.116649"]]
5125
+  (0.7ms) commit transaction
5126
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 3.3ms)
5127
+
5128
+
5129
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:18:38 -0500
5130
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5131
+ Parameters: {"auth_token"=>"RJkdYmCi21pIKmtnOR4Bxg", "uid"=>"468037", "auth"=>{"auth_token"=>"RJkdYmCi21pIKmtnOR4Bxg", "uid"=>"468037"}}
5132
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
5133
+ Completed 401 Unauthorized in 2ms (Views: 0.1ms | ActiveRecord: 0.3ms)
5134
+
5135
+
5136
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:18:40 -0500
5137
+
5138
+
5139
+ Started GET "/auth/github/callback?code=0f20af4193fc1f233226&state=f19e4be9f62592b682ca4230a3724f6024e413236784d38e" for 127.0.0.1 at 2014-06-30 16:18:40 -0500
5140
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5141
+ Parameters: {"code"=>"0f20af4193fc1f233226", "state"=>"f19e4be9f62592b682ca4230a3724f6024e413236784d38e", "provider"=>"github"}
5142
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5143
+  (0.0ms) begin transaction
5144
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "E3oI9SZvKpvixR0nrx-MXw"], ["updated_at", "2014-06-30 21:18:41.776272"]]
5145
+  (1.6ms) commit transaction
5146
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5147
+ Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 2.0ms)
5148
+
5149
+
5150
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:18:45 -0500
5151
+ Processing by TestController#members_only as HTML
5152
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5153
+  (0.0ms) begin transaction
5154
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:18:45.384370"], ["last_sign_in_at", "2014-06-30 21:18:01.111968"], ["sign_in_count", 30], ["updated_at", "2014-06-30 21:18:45.384740"]]
5155
+  (1.7ms) commit transaction
5156
+  (0.0ms) begin transaction
5157
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "E3wedm60s4zQfEzGI4wldg"], ["updated_at", "2014-06-30 21:18:45.388171"]]
5158
+  (0.8ms) commit transaction
5159
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 3.2ms)
5160
+
5161
+
5162
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:19:01 -0500
5163
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5164
+ Parameters: {"auth_token"=>"E3oI9SZvKpvixR0nrx-MXw", "uid"=>"468037", "auth"=>{"auth_token"=>"E3oI9SZvKpvixR0nrx-MXw", "uid"=>"468037"}}
5165
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
5166
+ Completed 401 Unauthorized in 2ms (Views: 0.3ms | ActiveRecord: 0.3ms)
5167
+
5168
+
5169
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:19:04 -0500
5170
+
5171
+
5172
+ Started GET "/auth/github/callback?code=067610055a3837da6cce&state=af46165209630e73c26a82d9e4caa77cb655985fe5e3da13" for 127.0.0.1 at 2014-06-30 16:19:05 -0500
5173
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5174
+ Parameters: {"code"=>"067610055a3837da6cce", "state"=>"af46165209630e73c26a82d9e4caa77cb655985fe5e3da13", "provider"=>"github"}
5175
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5176
+  (0.0ms) begin transaction
5177
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "TkZlWEKMj7VBMo7sTVqsCg"], ["updated_at", "2014-06-30 21:19:05.719910"]]
5178
+  (1.9ms) commit transaction
5179
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5180
+ Completed 200 OK in 11ms (Views: 1.5ms | ActiveRecord: 2.5ms)
5181
+
5182
+
5183
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:19:18 -0500
5184
+ Processing by TestController#members_only as HTML
5185
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5186
+  (0.1ms) begin transaction
5187
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:19:18.540377"], ["last_sign_in_at", "2014-06-30 21:18:45.384370"], ["sign_in_count", 31], ["updated_at", "2014-06-30 21:19:18.540847"]]
5188
+  (1.7ms) commit transaction
5189
+  (0.0ms) begin transaction
5190
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "FAuUYPriif3mC8itwIr4qA"], ["updated_at", "2014-06-30 21:19:18.544176"]]
5191
+  (0.5ms) commit transaction
5192
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 2.8ms)
5193
+
5194
+
5195
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:19:21 -0500
5196
+ Processing by TestController#members_only as HTML
5197
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5198
+  (0.1ms) begin transaction
5199
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:19:21.660887"], ["last_sign_in_at", "2014-06-30 21:19:18.540377"], ["sign_in_count", 32], ["updated_at", "2014-06-30 21:19:21.661321"]]
5200
+  (1.8ms) commit transaction
5201
+  (0.0ms) begin transaction
5202
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "0gnY28PadZaIRo93K_BtUg"], ["updated_at", "2014-06-30 21:19:21.664705"]]
5203
+  (0.7ms) commit transaction
5204
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.2ms)
5205
+
5206
+
5207
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:19:24 -0500
5208
+ Processing by TestController#members_only as HTML
5209
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5210
+  (0.0ms) begin transaction
5211
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:19:24.075562"], ["last_sign_in_at", "2014-06-30 21:19:21.660887"], ["sign_in_count", 33], ["updated_at", "2014-06-30 21:19:24.075897"]]
5212
+  (1.8ms) commit transaction
5213
+  (0.0ms) begin transaction
5214
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "TPBcMtUYCSXfkLE4WOKExA"], ["updated_at", "2014-06-30 21:19:24.079245"]]
5215
+  (0.7ms) commit transaction
5216
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.1ms)
5217
+
5218
+
5219
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:23:25 -0500
5220
+
5221
+
5222
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:23:25 -0500
5223
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5224
+ Parameters: {"auth_token"=>"TkZlWEKMj7VBMo7sTVqsCg", "uid"=>"468037", "auth"=>{"auth_token"=>"TkZlWEKMj7VBMo7sTVqsCg", "uid"=>"468037"}}
5225
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' ORDER BY "users"."id" ASC LIMIT 1
5226
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
5227
+
5228
+
5229
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:29:57 -0500
5230
+
5231
+
5232
+ Started GET "/auth/github/callback?code=01a82fdaaac6baed438f&state=91edddaf48c45e0da9bc222d8ea44e2c74a67935e588b6fa" for 127.0.0.1 at 2014-06-30 16:30:03 -0500
5233
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5234
+ Parameters: {"code"=>"01a82fdaaac6baed438f", "state"=>"91edddaf48c45e0da9bc222d8ea44e2c74a67935e588b6fa", "provider"=>"github"}
5235
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5236
+  (0.0ms) begin transaction
5237
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "BNKEVOOKvBqEaup0qr1SjQ"], ["updated_at", "2014-06-30 21:30:06.000607"]]
5238
+  (0.6ms) commit transaction
5239
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5240
+ Completed 200 OK in 14ms (Views: 1.7ms | ActiveRecord: 1.6ms)
5241
+
5242
+
5243
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 16:30:09 -0500
5244
+
5245
+
5246
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:30:09 -0500
5247
+ Processing by TestController#members_only as HTML
5248
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5249
+
5250
+
5251
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:39:43 -0500
5252
+
5253
+
5254
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:40:12 -0500
5255
+
5256
+
5257
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:42:46 -0500
5258
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5259
+
5260
+
5261
+ Started GET "/auth/github/callback?code=832a1d75caa192a9b807&state=a11c13eba4b3975b5b1c63005ed09a3b8fb24f2c8c93a56f" for 127.0.0.1 at 2014-06-30 16:42:47 -0500
5262
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5263
+ Parameters: {"code"=>"832a1d75caa192a9b807", "state"=>"a11c13eba4b3975b5b1c63005ed09a3b8fb24f2c8c93a56f", "provider"=>"github"}
5264
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5265
+  (0.1ms) begin transaction
5266
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "cbZoh6AE5LQp8JbBQNPyDQ"], ["updated_at", "2014-06-30 21:42:48.422819"]]
5267
+  (1.8ms) commit transaction
5268
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.2ms)
5269
+ Completed 200 OK in 28ms (Views: 6.3ms | ActiveRecord: 2.6ms)
5270
+
5271
+
5272
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 16:42:52 -0500
5273
+
5274
+
5275
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:42:52 -0500
5276
+ Processing by TestController#members_only as HTML
5277
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5278
+  (0.0ms) begin transaction
5279
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:42:52.919990"], ["last_sign_in_at", "2014-06-30 21:19:24.075562"], ["sign_in_count", 34], ["updated_at", "2014-06-30 21:42:52.920808"]]
5280
+  (1.7ms) commit transaction
5281
+  (0.0ms) begin transaction
5282
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "9Bj3AJcpkXj6U7lE6fa-bQ"], ["updated_at", "2014-06-30 21:42:52.924303"]]
5283
+  (0.6ms) commit transaction
5284
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 2.9ms)
5285
+
5286
+
5287
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:42:57 -0500
5288
+ Processing by TestController#members_only as HTML
5289
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5290
+  (0.1ms) begin transaction
5291
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:42:57.256025"], ["last_sign_in_at", "2014-06-30 21:42:52.919990"], ["sign_in_count", 35], ["updated_at", "2014-06-30 21:42:57.256473"]]
5292
+  (1.7ms) commit transaction
5293
+  (0.0ms) begin transaction
5294
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "dFgozSF4eoxXCtKY3I2QYQ"], ["updated_at", "2014-06-30 21:42:57.259903"]]
5295
+  (0.6ms) commit transaction
5296
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.0ms)
5297
+
5298
+
5299
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-30 16:43:05 -0500
5300
+
5301
+
5302
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 16:43:05 -0500
5303
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
5304
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5305
+
5306
+
5307
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:43:07 -0500
5308
+ Processing by TestController#members_only as HTML
5309
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5310
+
5311
+
5312
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:43:10 -0500
5313
+ Processing by TestController#members_only as HTML
5314
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5315
+
5316
+
5317
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:43:13 -0500
5318
+
5319
+
5320
+ Started GET "/auth/github/callback?code=37d738427c68b31cd329&state=d5559e74eadb827e975c9f7125922ba4f978ff255d4bd48b" for 127.0.0.1 at 2014-06-30 16:43:13 -0500
5321
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5322
+ Parameters: {"code"=>"37d738427c68b31cd329", "state"=>"d5559e74eadb827e975c9f7125922ba4f978ff255d4bd48b", "provider"=>"github"}
5323
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5324
+  (0.0ms) begin transaction
5325
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "PQz810IAlX45bd51qpvUiw"], ["updated_at", "2014-06-30 21:43:15.054694"]]
5326
+  (1.9ms) commit transaction
5327
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5328
+ Completed 200 OK in 6ms (Views: 1.8ms | ActiveRecord: 2.5ms)
5329
+
5330
+
5331
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:43:19 -0500
5332
+ Processing by TestController#members_only as HTML
5333
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5334
+  (0.1ms) begin transaction
5335
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:43:19.646293"], ["last_sign_in_at", "2014-06-30 21:42:57.256025"], ["sign_in_count", 36], ["updated_at", "2014-06-30 21:43:19.646685"]]
5336
+  (1.8ms) commit transaction
5337
+  (0.0ms) begin transaction
5338
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "ffXipBQ-B6U-wIXI8u0HMw"], ["updated_at", "2014-06-30 21:43:19.650143"]]
5339
+  (0.7ms) commit transaction
5340
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.3ms)
5341
+
5342
+
5343
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:43:22 -0500
5344
+
5345
+
5346
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:43:22 -0500
5347
+
5348
+ ActionController::RoutingError (No route matches [GET] "/auth/validate_token"):
5349
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
5350
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5351
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
5352
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
5353
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5354
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
5355
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
5356
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
5357
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5358
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
5359
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
5360
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
5361
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5362
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
5363
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
5364
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5365
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
5366
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5367
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
5368
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
5369
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
5370
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
5371
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
5372
+
5373
+
5374
+ 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.1ms)
5375
+ 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)
5376
+ 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 (2.2ms)
5377
+ 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 (8.5ms)
5378
+ 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 (40.5ms)
5379
+
5380
+
5381
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:44:00 -0500
5382
+
5383
+
5384
+ Started GET "/auth/github/callback?code=7c130a722a665569a8f9&state=59ffe729edd7d73aef41cddda5499684f2bc6bcb8ecbdd2d" for 127.0.0.1 at 2014-06-30 16:44:01 -0500
5385
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5386
+ Parameters: {"code"=>"7c130a722a665569a8f9", "state"=>"59ffe729edd7d73aef41cddda5499684f2bc6bcb8ecbdd2d", "provider"=>"github"}
5387
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5388
+  (0.0ms) begin transaction
5389
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "omkeDnDxkaH5u0f8JUmfOg"], ["updated_at", "2014-06-30 21:44:03.006901"]]
5390
+  (1.8ms) commit transaction
5391
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5392
+ Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 2.7ms)
5393
+
5394
+
5395
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:44:06 -0500
5396
+ Processing by TestController#members_only as HTML
5397
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5398
+  (0.1ms) begin transaction
5399
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:44:06.255385"], ["last_sign_in_at", "2014-06-30 21:43:19.646293"], ["sign_in_count", 37], ["updated_at", "2014-06-30 21:44:06.255755"]]
5400
+  (1.7ms) commit transaction
5401
+  (0.0ms) begin transaction
5402
+ SQL (0.1ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "xvLkCLbLNd5F699j1-8hcw"], ["updated_at", "2014-06-30 21:44:06.259122"]]
5403
+  (0.7ms) commit transaction
5404
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 3.0ms)
5405
+
5406
+
5407
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:44:09 -0500
5408
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5409
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5410
+
5411
+
5412
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:48:42 -0500
5413
+ Processing by TestController#members_only as HTML
5414
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5415
+
5416
+
5417
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:48:58 -0500
5418
+
5419
+
5420
+ Started GET "/auth/github/callback?code=5488b637cb5592996299&state=1fc722fad32252ad8162ee4b913906e3c26eda53ce3d6a88" for 127.0.0.1 at 2014-06-30 16:48:59 -0500
5421
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5422
+ Parameters: {"code"=>"5488b637cb5592996299", "state"=>"1fc722fad32252ad8162ee4b913906e3c26eda53ce3d6a88", "provider"=>"github"}
5423
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5424
+  (0.0ms) begin transaction
5425
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "dp2afA6H91lhaC0w8QtFCg"], ["updated_at", "2014-06-30 21:49:00.559077"]]
5426
+  (0.7ms) commit transaction
5427
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5428
+ Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 1.2ms)
5429
+
5430
+
5431
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:49:07 -0500
5432
+ Processing by TestController#members_only as HTML
5433
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5434
+  (0.0ms) begin transaction
5435
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:49:07.157494"], ["last_sign_in_at", "2014-06-30 21:44:06.255385"], ["sign_in_count", 38], ["updated_at", "2014-06-30 21:49:07.157855"]]
5436
+  (2.0ms) commit transaction
5437
+  (0.0ms) begin transaction
5438
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "P5B45js-xPTOhVUjqSl6mQ"], ["updated_at", "2014-06-30 21:49:07.161437"]]
5439
+  (0.7ms) commit transaction
5440
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.3ms)
5441
+
5442
+
5443
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:49:09 -0500
5444
+ Processing by TestController#members_only as HTML
5445
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5446
+  (0.0ms) begin transaction
5447
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 21:49:09.531751"], ["last_sign_in_at", "2014-06-30 21:49:07.157494"], ["sign_in_count", 39], ["updated_at", "2014-06-30 21:49:09.532125"]]
5448
+  (2.0ms) commit transaction
5449
+  (0.1ms) begin transaction
5450
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "zaEQO8qfh57LNFUyhcvtxw"], ["updated_at", "2014-06-30 21:49:09.535719"]]
5451
+  (0.8ms) commit transaction
5452
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.4ms)
5453
+
5454
+
5455
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:51:06 -0500
5456
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5457
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5458
+
5459
+
5460
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:53:35 -0500
5461
+
5462
+
5463
+ Started GET "/auth/github/callback?code=d94bbf2fce7b23935c27&state=4908078653a84d98eab3f1236c1f1ad4311acf3e73cb9367" for 127.0.0.1 at 2014-06-30 16:53:35 -0500
5464
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5465
+ Parameters: {"code"=>"d94bbf2fce7b23935c27", "state"=>"4908078653a84d98eab3f1236c1f1ad4311acf3e73cb9367", "provider"=>"github"}
5466
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5467
+  (0.0ms) begin transaction
5468
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "G7hH4J7YFXiEx4OwoIEL1g"], ["updated_at", "2014-06-30 21:53:36.700313"]]
5469
+  (2.0ms) commit transaction
5470
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5471
+ Completed 200 OK in 21ms (Views: 6.1ms | ActiveRecord: 3.0ms)
5472
+
5473
+
5474
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:53:45 -0500
5475
+
5476
+
5477
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:53:45 -0500
5478
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5479
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5480
+
5481
+
5482
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:54:18 -0500
5483
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5484
+
5485
+
5486
+ Started GET "/auth/github/callback?code=599bd9987e0dd250982c&state=967b5fa0f9ba4676bdd3dca2e7d35c1c423aec8eb9dd10c7" for 127.0.0.1 at 2014-06-30 16:54:18 -0500
5487
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5488
+ Parameters: {"code"=>"599bd9987e0dd250982c", "state"=>"967b5fa0f9ba4676bdd3dca2e7d35c1c423aec8eb9dd10c7", "provider"=>"github"}
5489
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5490
+  (0.1ms) begin transaction
5491
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Gk4ZIpVTCjezxl1J7Jp6hw"], ["updated_at", "2014-06-30 21:54:20.959449"]]
5492
+  (1.9ms) commit transaction
5493
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
5494
+ Completed 200 OK in 27ms (Views: 6.1ms | ActiveRecord: 2.8ms)
5495
+
5496
+
5497
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:54:29 -0500
5498
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5499
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5500
+
5501
+
5502
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:54:45 -0500
5503
+
5504
+
5505
+ Started GET "/auth/github/callback?code=51745a0d990abb8ec473&state=8a71afe375f04e6882c4f53931e2b64e9cb812d5b0570ddd" for 127.0.0.1 at 2014-06-30 16:54:46 -0500
5506
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5507
+ Parameters: {"code"=>"51745a0d990abb8ec473", "state"=>"8a71afe375f04e6882c4f53931e2b64e9cb812d5b0570ddd", "provider"=>"github"}
5508
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5509
+  (0.0ms) begin transaction
5510
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "xDwgIepW8P4yXHkDSCZPsw"], ["updated_at", "2014-06-30 21:54:48.136051"]]
5511
+  (2.0ms) commit transaction
5512
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5513
+ Completed 200 OK in 17ms (Views: 2.5ms | ActiveRecord: 3.0ms)
5514
+
5515
+
5516
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:54:52 -0500
5517
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5518
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
5519
+
5520
+
5521
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:55:15 -0500
5522
+
5523
+
5524
+ Started GET "/auth/github/callback?code=beff1869e8eee1a36130&state=21e6ce4a5211bcbcaa0d2bf959d5634cc94c9f9208200505" for 127.0.0.1 at 2014-06-30 16:55:15 -0500
5525
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5526
+ Parameters: {"code"=>"beff1869e8eee1a36130", "state"=>"21e6ce4a5211bcbcaa0d2bf959d5634cc94c9f9208200505", "provider"=>"github"}
5527
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5528
+  (0.0ms) begin transaction
5529
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "WV4C4kv9-2HYos9sFl0arg"], ["updated_at", "2014-06-30 21:55:17.575577"]]
5530
+  (1.7ms) commit transaction
5531
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5532
+ Completed 200 OK in 16ms (Views: 1.6ms | ActiveRecord: 2.7ms)
5533
+
5534
+
5535
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 16:55:22 -0500
5536
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5537
+ Completed 401 Unauthorized in 179933ms (Views: 0.4ms | ActiveRecord: 0.0ms)
5538
+
5539
+
5540
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 16:59:11 -0500
5541
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5542
+
5543
+
5544
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:59:11 -0500
5545
+ Processing by TestController#members_only as HTML
5546
+ Completed 401 Unauthorized in 7497ms (Views: 0.5ms | ActiveRecord: 0.0ms)
5547
+
5548
+
5549
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 16:59:24 -0500
5550
+
5551
+
5552
+ Started GET "/auth/github/callback?code=be6d638acb04876b13ad&state=57febd10ead0047f231e54b403b99e3c6436e1066ae0b064" for 127.0.0.1 at 2014-06-30 16:59:24 -0500
5553
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5554
+ Parameters: {"code"=>"be6d638acb04876b13ad", "state"=>"57febd10ead0047f231e54b403b99e3c6436e1066ae0b064", "provider"=>"github"}
5555
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5556
+  (0.1ms) begin transaction
5557
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "IhrAPq8DWL-VaFzsqrhltA"], ["updated_at", "2014-06-30 21:59:28.215520"]]
5558
+  (1.6ms) commit transaction
5559
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.2ms)
5560
+  (0.0ms) begin transaction
5561
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "5Q5eDvqApnvdstxiR-IKwA"], ["updated_at", "2014-06-30 21:59:28.227510"]]
5562
+  (0.7ms) commit transaction
5563
+ Completed 200 OK in 2176ms (Views: 6.5ms | ActiveRecord: 3.5ms)
5564
+
5565
+
5566
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:59:31 -0500
5567
+ Processing by TestController#members_only as HTML
5568
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5569
+ Completed 401 Unauthorized in 1833ms (Views: 0.2ms | ActiveRecord: 0.2ms)
5570
+
5571
+
5572
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 16:59:45 -0500
5573
+ Processing by TestController#members_only as HTML
5574
+ Completed 401 Unauthorized in 16071ms (Views: 0.2ms | ActiveRecord: 0.0ms)
5575
+
5576
+
5577
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:00:26 -0500
5578
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5579
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5580
+ Completed 500 Internal Server Error in 2ms
5581
+
5582
+ NoMethodError (undefined method `set_user_by_token' for #<DeviseTokenAuth::AuthController:0x007fcc1bc65ef0>):
5583
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
5584
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
5585
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
5586
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
5587
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
5588
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
5589
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
5590
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
5591
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
5592
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
5593
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
5594
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
5595
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
5596
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
5597
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
5598
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
5599
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
5600
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
5601
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
5602
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
5603
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
5604
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
5605
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
5606
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
5607
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
5608
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
5609
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5610
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
5611
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
5612
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
5613
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
5614
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
5615
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
5616
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5617
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5618
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5619
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5620
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5621
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5622
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
5623
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
5624
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
5625
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
5626
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
5627
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
5628
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
5629
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
5630
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
5631
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
5632
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
5633
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
5634
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
5635
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
5636
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
5637
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
5638
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
5639
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
5640
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
5641
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
5642
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
5643
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
5644
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5645
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
5646
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
5647
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5648
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
5649
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
5650
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
5651
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5652
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
5653
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
5654
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
5655
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5656
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
5657
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
5658
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5659
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
5660
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5661
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
5662
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
5663
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
5664
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
5665
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
5666
+
5667
+
5668
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
5669
+ 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.8ms)
5670
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (13.9ms)
5671
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (33.5ms)
5672
+
5673
+
5674
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:00:30 -0500
5675
+
5676
+
5677
+ Started GET "/auth/github/callback?code=8848daedd248e88dc053&state=c6a393a258db9621f7ff58c998b4143a2397e2fe9b020bc2" for 127.0.0.1 at 2014-06-30 17:00:30 -0500
5678
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5679
+ Parameters: {"code"=>"8848daedd248e88dc053", "state"=>"c6a393a258db9621f7ff58c998b4143a2397e2fe9b020bc2", "provider"=>"github"}
5680
+ Completed 500 Internal Server Error in 5ms
5681
+
5682
+ NoMethodError (undefined method `set_user_by_token' for #<DeviseTokenAuth::AuthController:0x007fcc1ef45258>):
5683
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
5684
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
5685
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
5686
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
5687
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
5688
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
5689
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
5690
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
5691
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
5692
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
5693
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
5694
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
5695
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
5696
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
5697
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
5698
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
5699
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
5700
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
5701
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
5702
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
5703
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
5704
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
5705
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
5706
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
5707
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
5708
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
5709
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5710
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
5711
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
5712
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
5713
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
5714
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
5715
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
5716
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5717
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5718
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5719
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5720
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
5721
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
5722
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
5723
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
5724
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
5725
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5726
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
5727
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
5728
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
5729
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
5730
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
5731
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
5732
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
5733
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
5734
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
5735
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
5736
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
5737
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
5738
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
5739
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
5740
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
5741
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
5742
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
5743
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
5744
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
5745
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
5746
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
5747
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
5748
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5749
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
5750
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
5751
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5752
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
5753
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
5754
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
5755
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5756
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
5757
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
5758
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
5759
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5760
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
5761
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
5762
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5763
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
5764
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5765
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
5766
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
5767
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
5768
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
5769
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
5770
+
5771
+
5772
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
5773
+ 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)
5774
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
5775
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
5776
+
5777
+
5778
+ Started GET "/auth/github/callback?code=8848daedd248e88dc053&state=c6a393a258db9621f7ff58c998b4143a2397e2fe9b020bc2" for 127.0.0.1 at 2014-06-30 17:01:13 -0500
5779
+
5780
+ OAuth2::Error (bad_verification_code: The code passed is incorrect or expired.
5781
+ error=bad_verification_code&error_description=The+code+passed+is+incorrect+or+expired.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23bad-verification-code):
5782
+ oauth2 (0.9.4) lib/oauth2/client.rb:140:in `get_token'
5783
+ oauth2 (0.9.4) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
5784
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:93:in `build_access_token'
5785
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
5786
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
5787
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
5788
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5789
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
5790
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
5791
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
5792
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
5793
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
5794
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
5795
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
5796
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
5797
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
5798
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
5799
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
5800
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
5801
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
5802
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
5803
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
5804
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
5805
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
5806
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
5807
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
5808
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
5809
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
5810
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
5811
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5812
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
5813
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
5814
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5815
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
5816
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
5817
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
5818
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5819
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
5820
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
5821
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
5822
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5823
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
5824
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
5825
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5826
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
5827
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5828
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
5829
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
5830
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
5831
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
5832
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
5833
+
5834
+
5835
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
5836
+ 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)
5837
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
5838
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.3ms)
5839
+
5840
+
5841
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:01:20 -0500
5842
+
5843
+
5844
+ Started GET "/auth/github/callback?code=3fab453d87f8ef974e95&state=5b68de4a94f4bff00465226979d83090b5bf8b417e40feed" for 127.0.0.1 at 2014-06-30 17:01:21 -0500
5845
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5846
+ Parameters: {"code"=>"3fab453d87f8ef974e95", "state"=>"5b68de4a94f4bff00465226979d83090b5bf8b417e40feed", "provider"=>"github"}
5847
+ Completed 500 Internal Server Error in 4ms
5848
+
5849
+ NoMethodError (undefined method `set_user_by_token' for #<DeviseTokenAuth::AuthController:0x007fcc210f9598>):
5850
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
5851
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
5852
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
5853
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
5854
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
5855
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
5856
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
5857
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
5858
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
5859
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
5860
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
5861
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
5862
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
5863
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
5864
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
5865
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
5866
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
5867
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
5868
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
5869
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
5870
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
5871
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
5872
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
5873
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
5874
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
5875
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
5876
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5877
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
5878
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
5879
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
5880
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
5881
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
5882
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
5883
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5884
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5885
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
5886
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5887
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
5888
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
5889
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
5890
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
5891
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
5892
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
5893
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
5894
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
5895
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
5896
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
5897
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
5898
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
5899
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
5900
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
5901
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
5902
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
5903
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
5904
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
5905
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
5906
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
5907
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
5908
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
5909
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
5910
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
5911
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
5912
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
5913
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
5914
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
5915
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
5916
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
5917
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
5918
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
5919
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
5920
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
5921
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
5922
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
5923
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
5924
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
5925
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
5926
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5927
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
5928
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
5929
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
5930
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
5931
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
5932
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
5933
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
5934
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
5935
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
5936
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
5937
+
5938
+
5939
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
5940
+ 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)
5941
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
5942
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
5943
+
5944
+
5945
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:02:41 -0500
5946
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5947
+
5948
+
5949
+ Started GET "/auth/github/callback?code=f5cb05724acf4efc4dca&state=42e9254dacc4c36b640371ba456ffb3c61138a3a34906443" for 127.0.0.1 at 2014-06-30 17:02:42 -0500
5950
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5951
+ Parameters: {"code"=>"f5cb05724acf4efc4dca", "state"=>"42e9254dacc4c36b640371ba456ffb3c61138a3a34906443", "provider"=>"github"}
5952
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5953
+  (0.1ms) begin transaction
5954
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "g8w71cpz73-TiXu5OwPnbQ"], ["updated_at", "2014-06-30 22:02:43.671462"]]
5955
+  (0.8ms) commit transaction
5956
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
5957
+  (0.0ms) begin transaction
5958
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "-b0p46wiqnlwdWPtBPPFBw"], ["updated_at", "2014-06-30 22:02:43.681683"]]
5959
+  (0.7ms) commit transaction
5960
+ Completed 200 OK in 28ms (Views: 6.0ms | ActiveRecord: 2.6ms)
5961
+
5962
+
5963
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:02:46 -0500
5964
+ Processing by TestController#members_only as HTML
5965
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5966
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
5967
+
5968
+
5969
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:04:45 -0500
5970
+
5971
+
5972
+ Started GET "/auth/github/callback?code=c98bb0284936e565479a&state=139e43cfbbcbdb071d355762faaffc67849c31a92af91a17" for 127.0.0.1 at 2014-06-30 17:04:45 -0500
5973
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
5974
+ Parameters: {"code"=>"c98bb0284936e565479a", "state"=>"139e43cfbbcbdb071d355762faaffc67849c31a92af91a17", "provider"=>"github"}
5975
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
5976
+  (0.0ms) begin transaction
5977
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "LREoCHpUPFxxqQAGgeaZtg"], ["updated_at", "2014-06-30 22:04:47.241112"]]
5978
+  (1.7ms) commit transaction
5979
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
5980
+  (0.1ms) begin transaction
5981
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "I64mR1XX3nb3yV_2ODpwbg"], ["updated_at", "2014-06-30 22:04:47.245557"]]
5982
+  (0.5ms) commit transaction
5983
+ Completed 200 OK in 7ms (Views: 1.5ms | ActiveRecord: 2.9ms)
5984
+
5985
+
5986
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:04:56 -0500
5987
+ Processing by TestController#members_only as HTML
5988
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5989
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
5990
+
5991
+
5992
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:06:08 -0500
5993
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
5994
+
5995
+
5996
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:06:08 -0500
5997
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
5998
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
5999
+ Completed 401 Unauthorized in 9377ms (Views: 0.6ms | ActiveRecord: 0.5ms)
6000
+
6001
+
6002
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:06:25 -0500
6003
+
6004
+
6005
+ Started GET "/auth/github/callback?code=8e5994680067d574836a&state=55e13f03430377fb5271aa67009e08b68bef0b860cdd84fc" for 127.0.0.1 at 2014-06-30 17:06:26 -0500
6006
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6007
+ Parameters: {"code"=>"8e5994680067d574836a", "state"=>"55e13f03430377fb5271aa67009e08b68bef0b860cdd84fc", "provider"=>"github"}
6008
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6009
+  (0.1ms) begin transaction
6010
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "IN5_1RRI0qAf7KEjUHN88g"], ["updated_at", "2014-06-30 22:06:27.635394"]]
6011
+  (1.7ms) commit transaction
6012
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.3ms)
6013
+ Completed 200 OK in 26ms (Views: 6.5ms | ActiveRecord: 2.9ms)
6014
+
6015
+
6016
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:06:31 -0500
6017
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6018
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6019
+  (0.0ms) begin transaction
6020
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:06:31.519743"], ["last_sign_in_at", "2014-06-30 21:49:09.531751"], ["sign_in_count", 40], ["updated_at", "2014-06-30 22:06:31.520607"]]
6021
+  (0.5ms) commit transaction
6022
+ Completed 500 Internal Server Error in 7ms
6023
+
6024
+ NameError (undefined local variable or method `user' for #<DeviseTokenAuth::AuthController:0x007fd7c89e8b38>):
6025
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:13:in `validate_token'
6026
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6027
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
6028
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
6029
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6030
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6031
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6032
+ activesupport (4.1.2) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
6033
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
6034
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
6035
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
6036
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
6037
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
6038
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
6039
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6040
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
6041
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6042
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
6043
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6044
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6045
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6046
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
6047
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
6048
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
6049
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6050
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
6051
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
6052
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
6053
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
6054
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6055
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6056
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6057
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6058
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6059
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
6060
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
6061
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6062
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6063
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6064
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6065
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6066
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6067
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6068
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6069
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6070
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6071
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
6072
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
6073
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
6074
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
6075
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
6076
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
6077
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
6078
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
6079
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6080
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
6081
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
6082
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
6083
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6084
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
6085
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
6086
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
6087
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6088
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
6089
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6090
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6091
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6092
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6093
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6094
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
6095
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
6096
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6097
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
6098
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
6099
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
6100
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6101
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
6102
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
6103
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
6104
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6105
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
6106
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
6107
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6108
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
6109
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6110
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
6111
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
6112
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
6113
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
6114
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
6115
+
6116
+
6117
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
6118
+ 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.2ms)
6119
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
6120
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.3ms)
6121
+
6122
+
6123
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:07:14 -0500
6124
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6125
+
6126
+
6127
+ Started GET "/auth/github/callback?code=19528d4bad5643ae7e64&state=6408f1fb702f61ca33568c5a44cc51591d3c3bada438a4b5" for 127.0.0.1 at 2014-06-30 17:07:14 -0500
6128
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6129
+ Parameters: {"code"=>"19528d4bad5643ae7e64", "state"=>"6408f1fb702f61ca33568c5a44cc51591d3c3bada438a4b5", "provider"=>"github"}
6130
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6131
+  (0.1ms) begin transaction
6132
+ SQL (0.9ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "2MmTznsc8IkNFMNyrgOiNw"], ["updated_at", "2014-06-30 22:07:16.763465"]]
6133
+  (0.8ms) commit transaction
6134
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
6135
+ Completed 200 OK in 28ms (Views: 6.1ms | ActiveRecord: 2.1ms)
6136
+
6137
+
6138
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:07:21 -0500
6139
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6140
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6141
+  (0.0ms) begin transaction
6142
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:07:21.037082"], ["last_sign_in_at", "2014-06-30 22:06:31.519743"], ["sign_in_count", 41], ["updated_at", "2014-06-30 22:07:21.037902"]]
6143
+  (0.5ms) commit transaction
6144
+ Completed 500 Internal Server Error in 7ms
6145
+
6146
+ NameError (undefined local variable or method `user' for #<DeviseTokenAuth::AuthController:0x007fb349051050>):
6147
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:13:in `validate_token'
6148
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6149
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
6150
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
6151
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6152
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6153
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6154
+ activesupport (4.1.2) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
6155
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
6156
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
6157
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
6158
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
6159
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
6160
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
6161
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6162
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
6163
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6164
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
6165
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6166
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6167
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6168
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
6169
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
6170
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
6171
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6172
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
6173
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
6174
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
6175
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
6176
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6177
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6178
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6179
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6180
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6181
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
6182
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
6183
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6184
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6185
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6186
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6187
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6188
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6189
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6190
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6191
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6192
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6193
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
6194
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
6195
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
6196
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
6197
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
6198
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
6199
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
6200
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
6201
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6202
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
6203
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
6204
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
6205
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6206
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
6207
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
6208
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
6209
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6210
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
6211
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6212
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6213
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6214
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6215
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6216
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
6217
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
6218
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6219
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
6220
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
6221
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
6222
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6223
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
6224
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
6225
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
6226
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6227
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
6228
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
6229
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6230
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
6231
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6232
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
6233
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
6234
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
6235
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
6236
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
6237
+
6238
+
6239
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
6240
+ 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.2ms)
6241
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
6242
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.6ms)
6243
+
6244
+
6245
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:08:25 -0500
6246
+
6247
+
6248
+ Started GET "/auth/github/callback?code=199f7c696156bfe08238&state=443c5dfb677541fb713500568dde20fa5427df02ce05e3e4" for 127.0.0.1 at 2014-06-30 17:08:25 -0500
6249
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6250
+ Parameters: {"code"=>"199f7c696156bfe08238", "state"=>"443c5dfb677541fb713500568dde20fa5427df02ce05e3e4", "provider"=>"github"}
6251
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6252
+  (0.1ms) begin transaction
6253
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "fK6p1Hbug34CkD2BGSjfgQ"], ["updated_at", "2014-06-30 22:08:27.874341"]]
6254
+  (1.7ms) commit transaction
6255
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
6256
+  (0.0ms) begin transaction
6257
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "iXdlOhqMDCucke2JFvo79g"], ["updated_at", "2014-06-30 22:08:27.879193"]]
6258
+  (0.7ms) commit transaction
6259
+ Completed 200 OK in 17ms (Views: 1.7ms | ActiveRecord: 3.5ms)
6260
+
6261
+
6262
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:08:30 -0500
6263
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6264
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6265
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.3ms)
6266
+
6267
+
6268
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:08:54 -0500
6269
+
6270
+
6271
+ Started GET "/auth/github/callback?code=e54548ddfc5529480061&state=4e72876c27b1c152dd85c9e9d18030a8385494f3ee6b5326" for 127.0.0.1 at 2014-06-30 17:08:55 -0500
6272
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6273
+ Parameters: {"code"=>"e54548ddfc5529480061", "state"=>"4e72876c27b1c152dd85c9e9d18030a8385494f3ee6b5326", "provider"=>"github"}
6274
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6275
+  (0.0ms) begin transaction
6276
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "CjZlh-D88xbAXqTkcSLmhg"], ["updated_at", "2014-06-30 22:08:56.874263"]]
6277
+  (1.7ms) commit transaction
6278
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
6279
+  (0.0ms) begin transaction
6280
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "7b5xWd6sWoUJLX6r1wsu0g"], ["updated_at", "2014-06-30 22:08:56.879288"]]
6281
+  (0.7ms) commit transaction
6282
+ Completed 200 OK in 18097ms (Views: 1.9ms | ActiveRecord: 3.5ms)
6283
+
6284
+
6285
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 17:09:26 -0500
6286
+
6287
+
6288
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:09:26 -0500
6289
+ Processing by TestController#members_only as HTML
6290
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6291
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
6292
+
6293
+
6294
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:10:25 -0500
6295
+ Processing by TestController#members_only as HTML
6296
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6297
+ Completed 401 Unauthorized in 318204ms (Views: 0.2ms | ActiveRecord: 0.6ms)
6298
+
6299
+
6300
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:15:44 -0500
6301
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6302
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6303
+ Completed 401 Unauthorized in 980ms (Views: 0.3ms | ActiveRecord: 0.6ms)
6304
+
6305
+
6306
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:15:45 -0500
6307
+
6308
+
6309
+ Started GET "/auth/github/callback?code=d6f59d6ff5f4f54271ac&state=12ae2ddf6fa58da380d08cb21f941d74ad3890cf07e3adeb" for 127.0.0.1 at 2014-06-30 17:15:46 -0500
6310
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6311
+ Parameters: {"code"=>"d6f59d6ff5f4f54271ac", "state"=>"12ae2ddf6fa58da380d08cb21f941d74ad3890cf07e3adeb", "provider"=>"github"}
6312
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6313
+  (0.1ms) begin transaction
6314
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Cl5VCsW28oKsOpI6RK-Ygg"], ["updated_at", "2014-06-30 22:15:47.399193"]]
6315
+  (1.8ms) commit transaction
6316
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
6317
+  (0.0ms) begin transaction
6318
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "cnazuOvW5nzMWRQj3StIEg"], ["updated_at", "2014-06-30 22:15:47.404909"]]
6319
+  (0.6ms) commit transaction
6320
+ Completed 200 OK in 9ms (Views: 2.2ms | ActiveRecord: 3.3ms)
6321
+
6322
+
6323
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:16:02 -0500
6324
+ Processing by TestController#members_only as HTML
6325
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6326
+ Completed 401 Unauthorized in 9714ms (Views: 0.2ms | ActiveRecord: 0.2ms)
6327
+
6328
+
6329
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:17:03 -0500
6330
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6331
+
6332
+
6333
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:17:03 -0500
6334
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6335
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6336
+ Completed 401 Unauthorized in 15ms (Views: 0.2ms | ActiveRecord: 0.4ms)
6337
+
6338
+
6339
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:17:09 -0500
6340
+
6341
+
6342
+ Started GET "/auth/github/callback?code=392f1c981a4f612c4ccd&state=e03150b2191562c602636d33b74cf26ff04b9b27408c2704" for 127.0.0.1 at 2014-06-30 17:17:09 -0500
6343
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6344
+ Parameters: {"code"=>"392f1c981a4f612c4ccd", "state"=>"e03150b2191562c602636d33b74cf26ff04b9b27408c2704", "provider"=>"github"}
6345
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6346
+  (0.1ms) begin transaction
6347
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "cKBGg27qFtXWYMtU9stfUA"], ["updated_at", "2014-06-30 22:17:11.073922"]]
6348
+  (1.7ms) commit transaction
6349
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
6350
+  (0.0ms) begin transaction
6351
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "6Dn0D9EAUNjTNLPIVHS2sQ"], ["updated_at", "2014-06-30 22:17:11.085426"]]
6352
+  (0.7ms) commit transaction
6353
+ Completed 200 OK in 16ms (Views: 6.1ms | ActiveRecord: 3.3ms)
6354
+
6355
+
6356
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:17:14 -0500
6357
+ Processing by TestController#members_only as HTML
6358
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6359
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
6360
+
6361
+
6362
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:19:27 -0500
6363
+
6364
+
6365
+ Started GET "/auth/github/callback?code=a513b31907bb79cb7fe4&state=379b8438feaef3f171ca24fd89634bdaf835a4ce283098df" for 127.0.0.1 at 2014-06-30 17:19:28 -0500
6366
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6367
+ Parameters: {"code"=>"a513b31907bb79cb7fe4", "state"=>"379b8438feaef3f171ca24fd89634bdaf835a4ce283098df", "provider"=>"github"}
6368
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6369
+  (0.1ms) begin transaction
6370
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "rZDb47OSBSqpBvaUkcyBMg"], ["updated_at", "2014-06-30 22:19:29.480018"]]
6371
+  (1.9ms) commit transaction
6372
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
6373
+  (0.0ms) begin transaction
6374
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "hNkr3AoGoNsH8XCDRs6Hkw"], ["updated_at", "2014-06-30 22:19:29.485167"]]
6375
+  (0.5ms) commit transaction
6376
+ Completed 200 OK in 23ms (Views: 1.8ms | ActiveRecord: 3.7ms)
6377
+
6378
+
6379
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 17:19:32 -0500
6380
+
6381
+
6382
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:19:32 -0500
6383
+ Processing by TestController#members_only as HTML
6384
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6385
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
6386
+
6387
+
6388
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:20:04 -0500
6389
+
6390
+
6391
+ Started GET "/auth/github/callback?code=1e64ce3ee8fbb1acceb8&state=cd52e2a82d8d59145f915c3393a716fc13e74095e1999e5f" for 127.0.0.1 at 2014-06-30 17:20:04 -0500
6392
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6393
+ Parameters: {"code"=>"1e64ce3ee8fbb1acceb8", "state"=>"cd52e2a82d8d59145f915c3393a716fc13e74095e1999e5f", "provider"=>"github"}
6394
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6395
+  (0.1ms) begin transaction
6396
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "mSaWvNpU6KSMntUr885m9g"], ["updated_at", "2014-06-30 22:20:06.909133"]]
6397
+  (1.8ms) commit transaction
6398
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
6399
+ Completed 200 OK in 16ms (Views: 1.7ms | ActiveRecord: 2.8ms)
6400
+
6401
+
6402
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:20:09 -0500
6403
+ Processing by TestController#members_only as HTML
6404
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6405
+  (0.0ms) begin transaction
6406
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:20:09.170846"], ["last_sign_in_at", "2014-06-30 22:07:21.037082"], ["sign_in_count", 42], ["updated_at", "2014-06-30 22:20:09.171655"]]
6407
+  (1.8ms) commit transaction
6408
+  (0.0ms) begin transaction
6409
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "J2k6w1_N1pjxh-eZrA-aiQ"], ["updated_at", "2014-06-30 22:20:09.175151"]]
6410
+  (0.6ms) commit transaction
6411
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 3.1ms)
6412
+
6413
+
6414
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:20:11 -0500
6415
+ Processing by TestController#members_only as HTML
6416
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6417
+  (0.0ms) begin transaction
6418
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:20:11.798074"], ["last_sign_in_at", "2014-06-30 22:20:09.170846"], ["sign_in_count", 43], ["updated_at", "2014-06-30 22:20:11.798426"]]
6419
+  (1.5ms) commit transaction
6420
+  (0.0ms) begin transaction
6421
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "O4eFwolBJeq87MzVTQt36w"], ["updated_at", "2014-06-30 22:20:11.801549"]]
6422
+  (0.7ms) commit transaction
6423
+ Completed 200 OK in 6ms (Views: 0.5ms | ActiveRecord: 2.8ms)
6424
+
6425
+
6426
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:20:14 -0500
6427
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6428
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6429
+  (0.0ms) begin transaction
6430
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:20:14.155282"], ["last_sign_in_at", "2014-06-30 22:20:11.798074"], ["sign_in_count", 44], ["updated_at", "2014-06-30 22:20:14.155680"]]
6431
+  (0.6ms) commit transaction
6432
+ Completed 500 Internal Server Error in 6ms
6433
+
6434
+ NameError (undefined local variable or method `user' for #<DeviseTokenAuth::AuthController:0x007ff6e4dc6058>):
6435
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:12:in `validate_token'
6436
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6437
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
6438
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
6439
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6440
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6441
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6442
+ activesupport (4.1.2) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
6443
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
6444
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
6445
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
6446
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
6447
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
6448
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
6449
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6450
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
6451
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6452
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
6453
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6454
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6455
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6456
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
6457
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
6458
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
6459
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6460
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
6461
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
6462
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
6463
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
6464
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6465
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6466
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6467
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6468
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6469
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
6470
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
6471
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6472
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6473
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6474
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6475
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6476
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6477
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6478
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6479
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6480
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6481
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
6482
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
6483
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
6484
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
6485
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
6486
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
6487
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
6488
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
6489
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6490
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
6491
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
6492
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
6493
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6494
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
6495
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
6496
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
6497
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6498
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
6499
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6500
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6501
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6502
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6503
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6504
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
6505
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
6506
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6507
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
6508
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
6509
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
6510
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6511
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
6512
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
6513
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
6514
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6515
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
6516
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
6517
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6518
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
6519
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6520
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
6521
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
6522
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
6523
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
6524
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
6525
+
6526
+
6527
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
6528
+ 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)
6529
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
6530
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (18.9ms)
6531
+
6532
+
6533
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:21:32 -0500
6534
+
6535
+
6536
+ Started GET "/auth/github/callback?code=bc4ac02b9fa3d9afc225&state=558cddf5c44b2d3b6feb5e95b4b570223741a7a5082a14c8" for 127.0.0.1 at 2014-06-30 17:21:32 -0500
6537
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6538
+ Parameters: {"code"=>"bc4ac02b9fa3d9afc225", "state"=>"558cddf5c44b2d3b6feb5e95b4b570223741a7a5082a14c8", "provider"=>"github"}
6539
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6540
+  (0.1ms) begin transaction
6541
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "GqURXqa1z7PkZA-J8Gj5fQ"], ["updated_at", "2014-06-30 22:21:34.205555"]]
6542
+  (1.6ms) commit transaction
6543
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
6544
+ Completed 200 OK in 19ms (Views: 1.7ms | ActiveRecord: 2.6ms)
6545
+
6546
+
6547
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:21:37 -0500
6548
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6549
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6550
+  (0.1ms) begin transaction
6551
+ SQL (0.5ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:21:37.163392"], ["last_sign_in_at", "2014-06-30 22:20:14.155282"], ["sign_in_count", 45], ["updated_at", "2014-06-30 22:21:37.163903"]]
6552
+  (0.5ms) commit transaction
6553
+ Completed 500 Internal Server Error in 7ms
6554
+
6555
+ NameError (undefined local variable or method `user' for #<DeviseTokenAuth::AuthController:0x007ff6e23bf0e8>):
6556
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:13:in `validate_token'
6557
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6558
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
6559
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
6560
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6561
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6562
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
6563
+ activesupport (4.1.2) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
6564
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
6565
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
6566
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
6567
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
6568
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
6569
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
6570
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6571
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
6572
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6573
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
6574
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6575
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6576
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6577
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
6578
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
6579
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
6580
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6581
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
6582
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
6583
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
6584
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
6585
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6586
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6587
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6588
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6589
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6590
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
6591
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
6592
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
6593
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
6594
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
6595
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
6596
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6597
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6598
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6599
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6600
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
6601
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
6602
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
6603
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
6604
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
6605
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
6606
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
6607
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
6608
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
6609
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
6610
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6611
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
6612
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
6613
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
6614
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6615
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
6616
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
6617
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
6618
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6619
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
6620
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6621
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6622
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
6623
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6624
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6625
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
6626
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
6627
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6628
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
6629
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
6630
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
6631
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6632
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
6633
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
6634
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
6635
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6636
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
6637
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
6638
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
6639
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
6640
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
6641
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
6642
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
6643
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
6644
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
6645
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
6646
+
6647
+
6648
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
6649
+ 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.1ms)
6650
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
6651
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.4ms)
6652
+
6653
+
6654
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 17:22:04 -0500
6655
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6656
+
6657
+
6658
+ Started GET "/auth/github/callback?code=4513a088e11e4a9e1348&state=0b420c052f122f75bcdb76dfe749a4b70a826b9a5fb0f192" for 127.0.0.1 at 2014-06-30 17:22:05 -0500
6659
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
6660
+ Parameters: {"code"=>"4513a088e11e4a9e1348", "state"=>"0b420c052f122f75bcdb76dfe749a4b70a826b9a5fb0f192", "provider"=>"github"}
6661
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
6662
+  (0.1ms) begin transaction
6663
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "SJP-4Ksq359GEG2stfPmxg"], ["updated_at", "2014-06-30 22:22:07.505013"]]
6664
+  (1.7ms) commit transaction
6665
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
6666
+ Completed 200 OK in 28ms (Views: 5.9ms | ActiveRecord: 2.6ms)
6667
+
6668
+
6669
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:22:10 -0500
6670
+ Processing by TestController#members_only as HTML
6671
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6672
+  (0.0ms) begin transaction
6673
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:22:10.942325"], ["last_sign_in_at", "2014-06-30 22:21:37.163392"], ["sign_in_count", 46], ["updated_at", "2014-06-30 22:22:10.943118"]]
6674
+  (1.7ms) commit transaction
6675
+  (0.0ms) begin transaction
6676
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "6FMZtUtv62jX2f_8Ne1bgw"], ["updated_at", "2014-06-30 22:22:10.946490"]]
6677
+  (0.6ms) commit transaction
6678
+ Completed 200 OK in 7ms (Views: 0.5ms | ActiveRecord: 3.0ms)
6679
+
6680
+
6681
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:22:13 -0500
6682
+ Processing by TestController#members_only as HTML
6683
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6684
+  (0.0ms) begin transaction
6685
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:22:13.027096"], ["last_sign_in_at", "2014-06-30 22:22:10.942325"], ["sign_in_count", 47], ["updated_at", "2014-06-30 22:22:13.027422"]]
6686
+  (1.6ms) commit transaction
6687
+  (0.0ms) begin transaction
6688
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "uuUatktfJld4MVvVPOzfVw"], ["updated_at", "2014-06-30 22:22:13.030499"]]
6689
+  (0.7ms) commit transaction
6690
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 2.9ms)
6691
+
6692
+
6693
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 17:22:16 -0500
6694
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
6695
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6696
+  (0.0ms) begin transaction
6697
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:22:16.536874"], ["last_sign_in_at", "2014-06-30 22:22:13.027096"], ["sign_in_count", 48], ["updated_at", "2014-06-30 22:22:16.537217"]]
6698
+  (0.5ms) commit transaction
6699
+  (0.0ms) begin transaction
6700
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "4FoBD-ovMND0gN9Uf0Zd8g"], ["updated_at", "2014-06-30 22:22:16.539445"]]
6701
+  (0.6ms) commit transaction
6702
+ Completed 200 OK in 5ms (Views: 0.3ms | ActiveRecord: 1.9ms)
6703
+
6704
+
6705
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:22:18 -0500
6706
+ Processing by TestController#members_only as HTML
6707
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6708
+  (0.1ms) begin transaction
6709
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:22:18.641606"], ["last_sign_in_at", "2014-06-30 22:22:16.536874"], ["sign_in_count", 49], ["updated_at", "2014-06-30 22:22:18.641946"]]
6710
+  (1.7ms) commit transaction
6711
+  (0.0ms) begin transaction
6712
+ SQL (0.1ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "sbFd72UV3nZ5qEm7cZnuPw"], ["updated_at", "2014-06-30 22:22:18.645226"]]
6713
+  (0.6ms) commit transaction
6714
+ Completed 200 OK in 6ms (Views: 0.4ms | ActiveRecord: 3.0ms)
6715
+
6716
+
6717
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-30 17:22:20 -0500
6718
+
6719
+
6720
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 17:22:20 -0500
6721
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
6722
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
6723
+  (0.0ms) begin transaction
6724
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-30 22:22:20.889562"], ["last_sign_in_at", "2014-06-30 22:22:18.641606"], ["sign_in_count", 50], ["updated_at", "2014-06-30 22:22:20.889923"]]
6725
+  (0.7ms) commit transaction
6726
+  (0.0ms) begin transaction
6727
+  (0.0ms) commit transaction
6728
+  (0.0ms) begin transaction
6729
+ SQL (0.2ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Dt9Od8187ro-qonTBhDHtw"], ["updated_at", "2014-06-30 22:22:20.894597"]]
6730
+  (0.5ms) commit transaction
6731
+ Completed 200 OK in 7ms (Views: 0.1ms | ActiveRecord: 2.0ms)
6732
+
6733
+
6734
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:22:22 -0500
6735
+ Processing by TestController#members_only as HTML
6736
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
6737
+
6738
+
6739
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 17:22:28 -0500
6740
+ Processing by TestController#members_only as HTML
6741
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)