devise_token_auth 0.1.28.beta5 → 0.1.28.beta6

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: 2ea3a49367dbbc6cad694833e1c6edededb63833
4
- data.tar.gz: a37d02efd396afb692e12dfdb611919528abe3b6
3
+ metadata.gz: ccede2e6459d83a37149b44ca415539e272f8281
4
+ data.tar.gz: 42832f0c9d06fec5a801692fef0295894990ca7d
5
5
  SHA512:
6
- metadata.gz: 6080163317a7230d4628332d61600092280644df28358684bc82d57ab04bfba4e73852ed0822900d62347b43e16d961dda9eeb6fc74be32af253aaf07a4e84da
7
- data.tar.gz: a6a7315344886ccc9315d84b96ace695a8398fc98f8c7040e7bdb5fe529775d2dca1bcce96acd05fd7337b087f67bde59275e6ff7cd03cfb8654300bc087afff
6
+ metadata.gz: 17fd41de34801ae46b9065f8bff43c3195f7f8d8383eb04a187bbae210f5cedf1a296cadbb0c49ef66bb5a87c498258e0314d86e106d42acdd6b300ff84d365e
7
+ data.tar.gz: 9919f37387990dcd43525a6bdd8436245195c18e51c0deebd60d0e1418370240f70bc9df222f7bd771174d9d0e56da401361306db35553f15175761992fd4437
@@ -121,9 +121,18 @@ module DeviseTokenAuth
121
121
  end
122
122
  end
123
123
 
124
- # ensure that anchor is present BEFORE querystring for angularjs
125
124
  def generate_url(url, params = {})
126
- "#{url}#?#{params.to_query}"
125
+ auth_url = url
126
+
127
+ # ensure that hash-bang is present BEFORE querystring for angularjs
128
+ unless url.match(/#/)
129
+ auth_url += '#'
130
+ end
131
+
132
+ # add query AFTER hash-bang
133
+ auth_url += "?#{params.to_query}"
134
+
135
+ return auth_url
127
136
  end
128
137
  end
129
138
  end
@@ -80,6 +80,8 @@ module DeviseTokenAuth
80
80
  expiry: expiry
81
81
  }
82
82
 
83
+ @user.skip_confirmation! unless @user.confirmed_at
84
+
83
85
  @user.save!
84
86
 
85
87
  redirect_to(@user.build_auth_url(resource_params[:redirect_url], {
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.28.beta5"
2
+ VERSION = "0.1.28.beta6"
3
3
  end
@@ -200,5 +200,34 @@ class DeviseTokenAuth::PasswordsControllerTest < ActionController::TestCase
200
200
  assert_equal user.id, @user.id
201
201
  end
202
202
  end
203
+
204
+ describe 'unconfirmed user' do
205
+ before do
206
+ @user = users(:unconfirmed_email_user)
207
+ @redirect_url = 'http://ng-token-auth.dev'
208
+
209
+ xhr :post, :create, {
210
+ email: @user.email,
211
+ redirect_url: @redirect_url
212
+ }
213
+
214
+ @mail = ActionMailer::Base.deliveries.last
215
+ @user.reload
216
+
217
+ @mail_reset_token = @mail.body.match(/reset_password_token=(.*)\"/)[1]
218
+ @mail_redirect_url = CGI.unescape(@mail.body.match(/redirect_url=(.*)&amp;/)[1])
219
+
220
+ xhr :get, :edit, {
221
+ reset_password_token: @mail_reset_token,
222
+ redirect_url: @mail_redirect_url
223
+ }
224
+
225
+ @user.reload
226
+ end
227
+
228
+ test 'unconfirmed email user should now be confirmed' do
229
+ assert @user.confirmed_at
230
+ end
231
+ end
203
232
  end
204
233
  end
Binary file
Binary file
@@ -16079,3 +16079,2195 @@ Unpermitted parameters: registration
16079
16079
  SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"}}"], ["updated_at", "2014-09-14 06:01:45.737746"]]
16080
16080
   (0.8ms) commit transaction
16081
16081
  Completed 200 OK in 128ms (Views: 0.3ms | ActiveRecord: 2.3ms)
16082
+
16083
+
16084
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-09-15 14:33:19 -0500
16085
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
16086
+
16087
+
16088
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-15 14:33:19 -0500
16089
+
16090
+
16091
+ Started GET "/omniauth/github/callback?code=928caf2318d4ff6c67bf&state=dc6a10c0574f884d9464896447204b868c4778e426a9a99b" for 127.0.0.1 at 2014-09-15 14:33:20 -0500
16092
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16093
+ Parameters: {"code"=>"928caf2318d4ff6c67bf", "state"=>"dc6a10c0574f884d9464896447204b868c4778e426a9a99b", "provider"=>"github"}
16094
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16095
+  (0.1ms) begin transaction
16096
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 19:33:21.151654"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"AFPVMueT0YpsTSxinpTOrg\":{\"token\":\"$2a$10$nWTI.rF79divpKBLzc0lru8ikw5LaJKxF8LVu4MJ/WMglm3XEllgm\",\"expiry\":1412019201}}"], ["updated_at", "2014-09-15 19:33:21.155079"]]
16097
+  (0.5ms) commit transaction
16098
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (2.0ms)
16099
+ Completed 200 OK in 99ms (Views: 10.5ms | ActiveRecord: 2.3ms)
16100
+
16101
+
16102
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-15 14:36:33 -0500
16103
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16104
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16105
+  (0.1ms) begin transaction
16106
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"}}"], ["updated_at", "2014-09-15 19:36:33.609434"]]
16107
+  (0.9ms) commit transaction
16108
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 1.4ms)
16109
+
16110
+
16111
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/&favorite_color=gray" for 127.0.0.1 at 2014-09-15 14:36:43 -0500
16112
+
16113
+
16114
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&favorite_color=gray&resource_class=User" for 127.0.0.1 at 2014-09-15 14:36:43 -0500
16115
+
16116
+
16117
+ Started GET "/omniauth/github/callback?code=3661a413654b0544a74a&state=a160dcb98ea459fcc48d0427d1e01279e863411c59b21c38" for 127.0.0.1 at 2014-09-15 14:36:43 -0500
16118
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16119
+ Parameters: {"code"=>"3661a413654b0544a74a", "state"=>"a160dcb98ea459fcc48d0427d1e01279e863411c59b21c38", "provider"=>"github"}
16120
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16121
+  (0.1ms) begin transaction
16122
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 19:36:44.586612"], ["favorite_color", "gray"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"v2AFlZ1A8Cr_8iIDObeveg\":{\"token\":\"$2a$10$g010XO58qy4Y8vgJIDBJFOpN6X4y/2W5QIpCcpetD9jQUOiijmovO\",\"expiry\":1412019404}}"], ["updated_at", "2014-09-15 19:36:44.587339"]]
16123
+  (1.7ms) commit transaction
16124
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
16125
+ Completed 200 OK in 69ms (Views: 1.7ms | ActiveRecord: 2.4ms)
16126
+
16127
+
16128
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-15 18:10:26 -0500
16129
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
16130
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16131
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16132
+  (0.1ms) begin transaction
16133
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"v2AFlZ1A8Cr_8iIDObeveg\":{\"token\":\"$2a$10$RvOInYoUVENq4pbgArVCku1C5Jtnx40CIP3KWquYGPFRh.TYJPSi.\",\"expiry\":1412032226,\"last_token\":\"$2a$10$g010XO58qy4Y8vgJIDBJFOpN6X4y/2W5QIpCcpetD9jQUOiijmovO\",\"updated_at\":\"2014-09-15T18:10:26.606-05:00\"}}"], ["updated_at", "2014-09-15 23:10:26.607555"]]
16134
+  (0.6ms) commit transaction
16135
+ Completed 200 OK in 161ms (Views: 0.4ms | ActiveRecord: 2.3ms)
16136
+
16137
+
16138
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-15 18:10:29 -0500
16139
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16140
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16141
+  (0.1ms) begin transaction
16142
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"}}"], ["updated_at", "2014-09-15 23:10:29.109439"]]
16143
+  (0.6ms) commit transaction
16144
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 1.2ms)
16145
+
16146
+
16147
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/&favorite_color=green" for 127.0.0.1 at 2014-09-15 18:10:33 -0500
16148
+
16149
+
16150
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&favorite_color=green&resource_class=User" for 127.0.0.1 at 2014-09-15 18:10:33 -0500
16151
+
16152
+
16153
+ Started GET "/omniauth/github/callback?code=85372067da8643be2975&state=6a2528df802548b6fc09e9941ef35c761d4446850e3da94c" for 127.0.0.1 at 2014-09-15 18:10:34 -0500
16154
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16155
+ Parameters: {"code"=>"85372067da8643be2975", "state"=>"6a2528df802548b6fc09e9941ef35c761d4446850e3da94c", "provider"=>"github"}
16156
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16157
+  (0.1ms) begin transaction
16158
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 23:10:36.217857"], ["favorite_color", "green"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"qoaBnhUQQ24PgUWlcjCICA\":{\"token\":\"$2a$10$i/8aRI3G20xzAf2EI.4OC.076bQxcsEg0yhxOqXcoI897lKd2kjbe\",\"expiry\":1412032236}}"], ["updated_at", "2014-09-15 23:10:36.218545"]]
16159
+  (0.6ms) commit transaction
16160
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.6ms)
16161
+ Completed 200 OK in 71ms (Views: 7.9ms | ActiveRecord: 1.2ms)
16162
+
16163
+
16164
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-15 18:11:08 -0500
16165
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16166
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16167
+  (0.1ms) begin transaction
16168
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"qoaBnhUQQ24PgUWlcjCICA\":{\"token\":\"$2a$10$6u7KY.pbzZWRBAQWz2bvw.fN4FkBrm.iJcKIdiPbV.5.os0DtjFHi\",\"expiry\":1412032268,\"last_token\":\"$2a$10$i/8aRI3G20xzAf2EI.4OC.076bQxcsEg0yhxOqXcoI897lKd2kjbe\",\"updated_at\":\"2014-09-15T18:11:08.417-05:00\"}}"], ["updated_at", "2014-09-15 23:11:08.418080"]]
16169
+  (2.0ms) commit transaction
16170
+ Completed 200 OK in 129ms (Views: 0.2ms | ActiveRecord: 2.6ms)
16171
+
16172
+
16173
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-15 18:11:13 -0500
16174
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16175
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16176
+  (0.1ms) begin transaction
16177
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"}}"], ["updated_at", "2014-09-15 23:11:13.437806"]]
16178
+  (1.8ms) commit transaction
16179
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 2.4ms)
16180
+
16181
+
16182
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-09-15 18:11:21 -0500
16183
+
16184
+
16185
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-15 18:11:21 -0500
16186
+
16187
+
16188
+ Started GET "/omniauth/github/callback?code=3de8c8e26e443ee5fd6f&state=afe235071367b44d56560d0b99223ce3c4e381375c569e80" for 127.0.0.1 at 2014-09-15 18:11:21 -0500
16189
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16190
+ Parameters: {"code"=>"3de8c8e26e443ee5fd6f", "state"=>"afe235071367b44d56560d0b99223ce3c4e381375c569e80", "provider"=>"github"}
16191
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16192
+  (0.1ms) begin transaction
16193
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 23:11:24.627935"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284}}"], ["updated_at", "2014-09-15 23:11:24.628644"]]
16194
+  (0.5ms) commit transaction
16195
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
16196
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 1.2ms)
16197
+
16198
+
16199
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=pink" for 127.0.0.1 at 2014-09-15 18:13:46 -0500
16200
+
16201
+
16202
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=pink&resource_class=User" for 127.0.0.1 at 2014-09-15 18:13:46 -0500
16203
+
16204
+
16205
+ Started GET "/omniauth/github/callback?code=ac5312902891c38ee024&state=71c31a4c4beeef89332ff63a9749725ed1870d257c2686a6" for 127.0.0.1 at 2014-09-15 18:13:46 -0500
16206
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16207
+ Parameters: {"code"=>"ac5312902891c38ee024", "state"=>"71c31a4c4beeef89332ff63a9749725ed1870d257c2686a6", "provider"=>"github"}
16208
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16209
+  (0.1ms) begin transaction
16210
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 23:13:47.989874"], ["favorite_color", "pink"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"D8yys5_pZGie4gGV2c1f1A\":{\"token\":\"$2a$10$KZ2yHqLHDW5Ix8TI2sl2y./59XNmZmPISS1r86VHA7LqKapSXaNqu\",\"expiry\":1412032427}}"], ["updated_at", "2014-09-15 23:13:47.990646"]]
16211
+  (2.4ms) commit transaction
16212
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
16213
+ Completed 200 OK in 68ms (Views: 1.6ms | ActiveRecord: 3.0ms)
16214
+
16215
+
16216
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-15 18:15:27 -0500
16217
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16218
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16219
+  (0.1ms) begin transaction
16220
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"D8yys5_pZGie4gGV2c1f1A\":{\"token\":\"$2a$10$iI4YtK2tPy0s5m3/8LICFebAX672ZrBPATh6U.Q09rDSoN5gDmHRW\",\"expiry\":1412032527,\"last_token\":\"$2a$10$KZ2yHqLHDW5Ix8TI2sl2y./59XNmZmPISS1r86VHA7LqKapSXaNqu\",\"updated_at\":\"2014-09-15T18:15:27.756-05:00\"}}"], ["updated_at", "2014-09-15 23:15:27.757147"]]
16221
+  (1.7ms) commit transaction
16222
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 2.3ms)
16223
+
16224
+
16225
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-15 18:15:32 -0500
16226
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16227
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16228
+  (0.1ms) begin transaction
16229
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284}}"], ["updated_at", "2014-09-15 23:15:32.723419"]]
16230
+  (1.7ms) commit transaction
16231
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 2.3ms)
16232
+
16233
+
16234
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=chong" for 127.0.0.1 at 2014-09-15 18:15:43 -0500
16235
+
16236
+
16237
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=chong&resource_class=User" for 127.0.0.1 at 2014-09-15 18:15:43 -0500
16238
+
16239
+
16240
+ Started GET "/omniauth/github/callback?code=b3d974fd0f62b4f3d464&state=01accf1dc03784d8932a35d5e83d15f4acf574441234de75" for 127.0.0.1 at 2014-09-15 18:15:43 -0500
16241
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16242
+ Parameters: {"code"=>"b3d974fd0f62b4f3d464", "state"=>"01accf1dc03784d8932a35d5e83d15f4acf574441234de75", "provider"=>"github"}
16243
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16244
+  (0.1ms) begin transaction
16245
+  (0.1ms) rollback transaction
16246
+ Completed 422 Unprocessable Entity in 375ms
16247
+
16248
+ ActiveRecord::RecordInvalid (Validation failed: Favorite color We've never heard of the color "chong". Did you mean "Artichoke"? Or perhaps "Peach-orange"?):
16249
+ activerecord (4.1.6) lib/active_record/validations.rb:57:in `save!'
16250
+ activerecord (4.1.6) lib/active_record/attribute_methods/dirty.rb:29:in `save!'
16251
+ activerecord (4.1.6) lib/active_record/transactions.rb:273:in `block in save!'
16252
+ activerecord (4.1.6) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
16253
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
16254
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
16255
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
16256
+ activerecord (4.1.6) lib/active_record/transactions.rb:208:in `transaction'
16257
+ activerecord (4.1.6) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
16258
+ activerecord (4.1.6) lib/active_record/transactions.rb:273:in `save!'
16259
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:70:in `omniauth_success'
16260
+ actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
16261
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
16262
+ actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
16263
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
16264
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
16265
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
16266
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
16267
+ activesupport (4.1.6) lib/active_support/callbacks.rb:215:in `call'
16268
+ activesupport (4.1.6) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
16269
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
16270
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
16271
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
16272
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
16273
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
16274
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
16275
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
16276
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
16277
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
16278
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
16279
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
16280
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
16281
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
16282
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
16283
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
16284
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
16285
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
16286
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
16287
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
16288
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
16289
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
16290
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
16291
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
16292
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
16293
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
16294
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
16295
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
16296
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
16297
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
16298
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
16299
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
16300
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
16301
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
16302
+ omniauth (1.2.2) lib/omniauth/strategy.rb:404:in `call_app!'
16303
+ omniauth (1.2.2) lib/omniauth/strategy.rb:362:in `callback_phase'
16304
+ omniauth-oauth2 (1.2.0) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
16305
+ omniauth (1.2.2) lib/omniauth/strategy.rb:227:in `callback_call'
16306
+ omniauth (1.2.2) lib/omniauth/strategy.rb:184:in `call!'
16307
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
16308
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
16309
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
16310
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
16311
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
16312
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
16313
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
16314
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
16315
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
16316
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
16317
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
16318
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
16319
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
16320
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
16321
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
16322
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
16323
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
16324
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
16325
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
16326
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
16327
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
16328
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
16329
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
16330
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
16331
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
16332
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
16333
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
16334
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
16335
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
16336
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
16337
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
16338
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
16339
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
16340
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
16341
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
16342
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
16343
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
16344
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
16345
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
16346
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
16347
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
16348
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
16349
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
16350
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
16351
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
16352
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
16353
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
16354
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
16355
+
16356
+
16357
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
16358
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
16359
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
16360
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.9ms)
16361
+
16362
+
16363
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=purple" for 127.0.0.1 at 2014-09-15 18:17:20 -0500
16364
+
16365
+
16366
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=purple&resource_class=User" for 127.0.0.1 at 2014-09-15 18:17:20 -0500
16367
+
16368
+
16369
+ Started GET "/omniauth/github/callback?code=e83164092e0a3030484d&state=00c851d8935a2b8be5e61f721154c71018f29b90563054a3" for 127.0.0.1 at 2014-09-15 18:17:21 -0500
16370
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16371
+ Parameters: {"code"=>"e83164092e0a3030484d", "state"=>"00c851d8935a2b8be5e61f721154c71018f29b90563054a3", "provider"=>"github"}
16372
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16373
+  (0.1ms) begin transaction
16374
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 23:17:23.022876"], ["favorite_color", "purple"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"MslJ3-5CDn6Es6FjKi_HQA\":{\"token\":\"$2a$10$RhhV6HhwvxIyuQ1mifmQqe39yRfKq8PciH8u.YX/TY1qrOAw.TRG2\",\"expiry\":1412032643}}"], ["updated_at", "2014-09-15 23:17:23.023693"]]
16375
+  (0.8ms) commit transaction
16376
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.4ms)
16377
+ Completed 200 OK in 68ms (Views: 2.5ms | ActiveRecord: 1.4ms)
16378
+
16379
+
16380
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-15 18:17:26 -0500
16381
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16382
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16383
+  (0.1ms) begin transaction
16384
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284}}"], ["updated_at", "2014-09-15 23:17:27.047482"]]
16385
+  (2.0ms) commit transaction
16386
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 2.6ms)
16387
+
16388
+
16389
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=brown" for 127.0.0.1 at 2014-09-15 18:17:33 -0500
16390
+
16391
+
16392
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=brown&resource_class=User" for 127.0.0.1 at 2014-09-15 18:17:33 -0500
16393
+
16394
+
16395
+ Started GET "/omniauth/github/callback?code=fdbf869377b9e55766c3&state=87055453bdc59d750c411d500449aa2fed5285d91d9b3e1f" for 127.0.0.1 at 2014-09-15 18:17:33 -0500
16396
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16397
+ Parameters: {"code"=>"fdbf869377b9e55766c3", "state"=>"87055453bdc59d750c411d500449aa2fed5285d91d9b3e1f", "provider"=>"github"}
16398
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16399
+  (0.1ms) begin transaction
16400
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-15 23:17:34.636752"], ["favorite_color", "brown"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"aSRubkO9RJJKogvOlEr8mA\":{\"token\":\"$2a$10$QtwuueqPYzYx6AlaPgdh6uw5DJ.r9NNJDE1P7NKf9LhtVToq19rUe\",\"expiry\":1412032654}}"], ["updated_at", "2014-09-15 23:17:34.637417"]]
16401
+  (1.6ms) commit transaction
16402
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
16403
+ Completed 200 OK in 68ms (Views: 1.7ms | ActiveRecord: 2.2ms)
16404
+
16405
+
16406
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 13:58:37 -0500
16407
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
16408
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16409
+ User Load (0.9ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16410
+  (0.1ms) begin transaction
16411
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"aSRubkO9RJJKogvOlEr8mA\":{\"token\":\"$2a$10$he3iyD53ytR1uJs40SfRzuiD6RKg3.miY1vrzwvvkMo9AM.wllMpq\",\"expiry\":1412103518,\"last_token\":\"$2a$10$QtwuueqPYzYx6AlaPgdh6uw5DJ.r9NNJDE1P7NKf9LhtVToq19rUe\",\"updated_at\":\"2014-09-16T13:58:38.000-05:00\"}}"], ["updated_at", "2014-09-16 18:58:38.001473"]]
16412
+  (0.7ms) commit transaction
16413
+ Completed 200 OK in 157ms (Views: 0.3ms | ActiveRecord: 2.4ms)
16414
+
16415
+
16416
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 13:58:40 -0500
16417
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16418
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16419
+  (0.1ms) begin transaction
16420
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284}}"], ["updated_at", "2014-09-16 18:58:40.519389"]]
16421
+  (0.6ms) commit transaction
16422
+ Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 1.1ms)
16423
+
16424
+
16425
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 13:58:48 -0500
16426
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
16427
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
16428
+ Unpermitted parameters: session
16429
+ User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
16430
+ Unpermitted parameters: session
16431
+ Unpermitted parameters: session
16432
+ Unpermitted parameters: session
16433
+ Completed 401 Unauthorized in 65ms (Views: 0.2ms | ActiveRecord: 1.1ms)
16434
+
16435
+
16436
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 13:58:56 -0500
16437
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
16438
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
16439
+ Unpermitted parameters: session
16440
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
16441
+ Unpermitted parameters: session
16442
+ Unpermitted parameters: session
16443
+ Unpermitted parameters: session
16444
+  (0.1ms) begin transaction
16445
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 19 [["tokens", "{\"Gi9UicVlISSnDSh3gvQ2Qw\":{\"token\":\"$2a$10$TDUacqI6fLyKTJNjdM9DdeHV46hio2RN/C7EvNZI1MxLHuNRlClUq\",\"expiry\":1411872152,\"last_token\":\"$2a$10$7ZUuJ34r5gt6iMuUKkyt4eTjdFVL0Oihh483nHuKnCCdbq1Rf.cfO\",\"updated_at\":\"2014-09-13T21:42:32.298-05:00\"},\"xTWz7j4ncXCt-aKy-vVe5Q\":{\"token\":\"$2a$10$tt/nuhRjFvKTuq09jUhGpOhUddc1nkbyqK7W7kvhasPET9.SBoARa\",\"expiry\":1412103536}}"], ["updated_at", "2014-09-16 18:58:56.415073"]]
16446
+  (2.4ms) commit transaction
16447
+  (0.1ms) begin transaction
16448
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 19 [["tokens", "{\"Gi9UicVlISSnDSh3gvQ2Qw\":{\"token\":\"$2a$10$TDUacqI6fLyKTJNjdM9DdeHV46hio2RN/C7EvNZI1MxLHuNRlClUq\",\"expiry\":1411872152,\"last_token\":\"$2a$10$7ZUuJ34r5gt6iMuUKkyt4eTjdFVL0Oihh483nHuKnCCdbq1Rf.cfO\",\"updated_at\":\"2014-09-13T21:42:32.298-05:00\"},\"xTWz7j4ncXCt-aKy-vVe5Q\":{\"token\":\"$2a$10$20tAdFJ2Tcbd3Du0V.Drt.HYmgcwLTs9oUbkx/7kpShEk.NaY5NP6\",\"expiry\":1412103536,\"last_token\":\"$2a$10$tt/nuhRjFvKTuq09jUhGpOhUddc1nkbyqK7W7kvhasPET9.SBoARa\",\"updated_at\":\"2014-09-16T13:58:56.479-05:00\"}}"], ["updated_at", "2014-09-16 18:58:56.480460"]]
16449
+  (0.8ms) commit transaction
16450
+ Completed 200 OK in 193ms (Views: 0.2ms | ActiveRecord: 4.2ms)
16451
+
16452
+
16453
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 14:19:39 -0500
16454
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16455
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16456
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16457
+  (0.1ms) begin transaction
16458
+ SQL (0.6ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 19 [["tokens", "{\"Gi9UicVlISSnDSh3gvQ2Qw\":{\"token\":\"$2a$10$TDUacqI6fLyKTJNjdM9DdeHV46hio2RN/C7EvNZI1MxLHuNRlClUq\",\"expiry\":1411872152,\"last_token\":\"$2a$10$7ZUuJ34r5gt6iMuUKkyt4eTjdFVL0Oihh483nHuKnCCdbq1Rf.cfO\",\"updated_at\":\"2014-09-13T21:42:32.298-05:00\"},\"xTWz7j4ncXCt-aKy-vVe5Q\":{\"token\":\"$2a$10$V8R2GnDXZkrrc1gAvcHD2OAZ1TsGFMziSCHb6hIdU3sGBu/MMEK2u\",\"expiry\":1412104779,\"last_token\":\"$2a$10$20tAdFJ2Tcbd3Du0V.Drt.HYmgcwLTs9oUbkx/7kpShEk.NaY5NP6\",\"updated_at\":\"2014-09-16T14:19:39.565-05:00\"}}"], ["updated_at", "2014-09-16 19:19:39.566463"]]
16459
+  (16.5ms) commit transaction
16460
+ Completed 200 OK in 174ms (Views: 0.2ms | ActiveRecord: 17.7ms)
16461
+
16462
+
16463
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 14:19:41 -0500
16464
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16465
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16466
+  (0.1ms) begin transaction
16467
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 19 [["tokens", "{\"Gi9UicVlISSnDSh3gvQ2Qw\":{\"token\":\"$2a$10$TDUacqI6fLyKTJNjdM9DdeHV46hio2RN/C7EvNZI1MxLHuNRlClUq\",\"expiry\":1411872152,\"last_token\":\"$2a$10$7ZUuJ34r5gt6iMuUKkyt4eTjdFVL0Oihh483nHuKnCCdbq1Rf.cfO\",\"updated_at\":\"2014-09-13T21:42:32.298-05:00\"}}"], ["updated_at", "2014-09-16 19:19:41.678130"]]
16468
+  (2.0ms) commit transaction
16469
+ Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 2.6ms)
16470
+
16471
+
16472
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2014-09-16 14:19:43 -0500
16473
+
16474
+
16475
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 14:19:43 -0500
16476
+
16477
+
16478
+ Started GET "/omniauth/github/callback?code=778346a8f125f19df4ff&state=cb76e2ba2f27a681babf820b41e27469cdb4c4282250ad1c" for 127.0.0.1 at 2014-09-16 14:19:44 -0500
16479
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16480
+ Parameters: {"code"=>"778346a8f125f19df4ff", "state"=>"cb76e2ba2f27a681babf820b41e27469cdb4c4282250ad1c", "provider"=>"github"}
16481
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16482
+  (0.1ms) begin transaction
16483
+ SQL (17.6ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 19:19:44.804828"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"qQwgqzwBcawwWABby5fY5Q\":{\"token\":\"$2a$10$jq7ks6jz14uDX1JfrvpWpuEZwDHA.lnoxpAoOFe6qHfp4td.gvKfO\",\"expiry\":1412104784}}"], ["updated_at", "2014-09-16 19:19:44.805476"]]
16484
+  (76.6ms) commit transaction
16485
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (28.3ms)
16486
+ Completed 200 OK in 366ms (Views: 207.9ms | ActiveRecord: 94.5ms)
16487
+
16488
+
16489
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:19:50 -0500
16490
+ Processing by DemoController#members_only as HTML
16491
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16492
+  (0.1ms) begin transaction
16493
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"qQwgqzwBcawwWABby5fY5Q\":{\"token\":\"$2a$10$CHhcvHBiDa8iG/QhrNopfe/OYvgUPXi6sF0sVV.u38ykpAw5dprd6\",\"expiry\":1412104790,\"last_token\":\"$2a$10$jq7ks6jz14uDX1JfrvpWpuEZwDHA.lnoxpAoOFe6qHfp4td.gvKfO\",\"updated_at\":\"2014-09-16T14:19:50.152-05:00\"}}"], ["updated_at", "2014-09-16 19:19:50.152513"]]
16494
+  (2.0ms) commit transaction
16495
+ Completed 200 OK in 124ms (Views: 0.6ms | ActiveRecord: 2.5ms)
16496
+
16497
+
16498
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:19:52 -0500
16499
+ Processing by DemoController#members_only as HTML
16500
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16501
+  (0.1ms) begin transaction
16502
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"qQwgqzwBcawwWABby5fY5Q\":{\"token\":\"$2a$10$CHhcvHBiDa8iG/QhrNopfe/OYvgUPXi6sF0sVV.u38ykpAw5dprd6\",\"expiry\":1412104790,\"last_token\":\"$2a$10$jq7ks6jz14uDX1JfrvpWpuEZwDHA.lnoxpAoOFe6qHfp4td.gvKfO\",\"updated_at\":\"2014-09-16T14:19:52.406-05:00\"}}"], ["updated_at", "2014-09-16 19:19:52.406833"]]
16503
+  (1.8ms) commit transaction
16504
+ Completed 200 OK in 66ms (Views: 0.5ms | ActiveRecord: 2.5ms)
16505
+
16506
+
16507
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:19:54 -0500
16508
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16509
+ Processing by DemoController#members_only as HTML
16510
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16511
+  (0.1ms) begin transaction
16512
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"qQwgqzwBcawwWABby5fY5Q\":{\"token\":\"$2a$10$CHhcvHBiDa8iG/QhrNopfe/OYvgUPXi6sF0sVV.u38ykpAw5dprd6\",\"expiry\":1412104790,\"last_token\":\"$2a$10$jq7ks6jz14uDX1JfrvpWpuEZwDHA.lnoxpAoOFe6qHfp4td.gvKfO\",\"updated_at\":\"2014-09-16T14:19:54.541-05:00\"}}"], ["updated_at", "2014-09-16 19:19:54.541637"]]
16513
+  (2.1ms) commit transaction
16514
+ Completed 200 OK in 94ms (Views: 0.7ms | ActiveRecord: 2.9ms)
16515
+
16516
+
16517
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 14:19:59 -0500
16518
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16519
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16520
+  (0.1ms) begin transaction
16521
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284}}"], ["updated_at", "2014-09-16 19:19:59.247942"]]
16522
+  (2.0ms) commit transaction
16523
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 2.4ms)
16524
+
16525
+
16526
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 14:20:07 -0500
16527
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
16528
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
16529
+ Unpermitted parameters: session
16530
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
16531
+ Unpermitted parameters: session
16532
+ Unpermitted parameters: session
16533
+ Unpermitted parameters: session
16534
+  (0.1ms) begin transaction
16535
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 19 [["tokens", "{\"Gi9UicVlISSnDSh3gvQ2Qw\":{\"token\":\"$2a$10$TDUacqI6fLyKTJNjdM9DdeHV46hio2RN/C7EvNZI1MxLHuNRlClUq\",\"expiry\":1411872152,\"last_token\":\"$2a$10$7ZUuJ34r5gt6iMuUKkyt4eTjdFVL0Oihh483nHuKnCCdbq1Rf.cfO\",\"updated_at\":\"2014-09-13T21:42:32.298-05:00\"},\"b0whIJJuAzBoVGMbkjB5KQ\":{\"token\":\"$2a$10$9ZZ4bC44/MyGiFC0LaRjUOqDWCfoNKGIIPQVUeHnwQFKfWwB12Kpy\",\"expiry\":1412104807}}"], ["updated_at", "2014-09-16 19:20:07.868951"]]
16536
+  (0.9ms) commit transaction
16537
+  (0.1ms) begin transaction
16538
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 19 [["tokens", "{\"Gi9UicVlISSnDSh3gvQ2Qw\":{\"token\":\"$2a$10$TDUacqI6fLyKTJNjdM9DdeHV46hio2RN/C7EvNZI1MxLHuNRlClUq\",\"expiry\":1411872152,\"last_token\":\"$2a$10$7ZUuJ34r5gt6iMuUKkyt4eTjdFVL0Oihh483nHuKnCCdbq1Rf.cfO\",\"updated_at\":\"2014-09-13T21:42:32.298-05:00\"},\"b0whIJJuAzBoVGMbkjB5KQ\":{\"token\":\"$2a$10$TXuli/zu6MuDVe9KeVWV7eec0oNXU4JwPqe4/UVisDA4/o6Dxg.l.\",\"expiry\":1412104807,\"last_token\":\"$2a$10$9ZZ4bC44/MyGiFC0LaRjUOqDWCfoNKGIIPQVUeHnwQFKfWwB12Kpy\",\"updated_at\":\"2014-09-16T14:20:07.931-05:00\"}}"], ["updated_at", "2014-09-16 19:20:07.932261"]]
16539
+  (0.9ms) commit transaction
16540
+ Completed 200 OK in 197ms (Views: 0.2ms | ActiveRecord: 2.7ms)
16541
+
16542
+
16543
+ Started DELETE "/auth" for 127.0.0.1 at 2014-09-16 14:20:10 -0500
16544
+ Processing by DeviseTokenAuth::RegistrationsController#destroy as HTML
16545
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16546
+  (0.1ms) begin transaction
16547
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 19]]
16548
+  (1.1ms) commit transaction
16549
+ Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 1.6ms)
16550
+
16551
+
16552
+ Started POST "/auth" for 127.0.0.1 at 2014-09-16 14:20:48 -0500
16553
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
16554
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"blue", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"blue", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
16555
+ Unpermitted parameters: config_name, registration
16556
+ Unpermitted parameters: config_name, registration
16557
+  (0.1ms) begin transaction
16558
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test@test.com'
16559
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'e77e3d337dd6b4c8b40011b0e2b7ee4342cdc67f78efb4cfa39464c79f9942df' ORDER BY "users"."id" ASC LIMIT 1
16560
+ Binary data inserted for `string` type on column `confirmation_token`
16561
+ Binary data inserted for `string` type on column `encrypted_password`
16562
+ SQL (0.4ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "favorite_color", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-09-16 19:20:48.966059"], ["confirmation_token", "e77e3d337dd6b4c8b40011b0e2b7ee4342cdc67f78efb4cfa39464c79f9942df"], ["created_at", "2014-09-16 19:20:48.758387"], ["email", "test@test.com"], ["encrypted_password", "$2a$10$YuMDm4S9QvaVMbHN1EAd/e2K4kdE86RpJg4fE8MdrWtiwF1Sgv81e"], ["favorite_color", "blue"], ["provider", "email"], ["tokens", "{}"], ["uid", "test@test.com"], ["updated_at", "2014-09-16 19:20:48.758387"]]
16563
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (1.6ms)
16564
+
16565
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 285.4ms
16566
+
16567
+ Sent mail to test@test.com (17.4ms)
16568
+ Date: Tue, 16 Sep 2014 14:20:49 -0500
16569
+ From: please-change-me-at-config-initializers-devise@example.com
16570
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16571
+ To: test@test.com
16572
+ Message-ID: <54188d913f511_c2fd3ff110465be0940e3@tests-MacBook-Pro-2.local.mail>
16573
+ Subject: Confirmation instructions
16574
+ Mime-Version: 1.0
16575
+ Content-Type: text/html;
16576
+ charset=UTF-8
16577
+ Content-Transfer-Encoding: 7bit
16578
+
16579
+ <p>Welcome test@test.com!</p>
16580
+
16581
+ <p>You can confirm your account email through the link below:</p>
16582
+
16583
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=yf7zy3xGMKN6L3Uz5tst">Confirm my account</a></p>
16584
+
16585
+  (0.7ms) commit transaction
16586
+ Completed 200 OK in 580ms (Views: 0.5ms | ActiveRecord: 1.5ms)
16587
+
16588
+
16589
+ Started GET "/auth/confirmation?confirmation_token=yf7zy3xGMKN6L3Uz5tst" for 127.0.0.1 at 2014-09-16 14:21:04 -0500
16590
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
16591
+ Parameters: {"confirmation_token"=>"yf7zy3xGMKN6L3Uz5tst"}
16592
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'e77e3d337dd6b4c8b40011b0e2b7ee4342cdc67f78efb4cfa39464c79f9942df' ORDER BY "users"."id" ASC LIMIT 1
16593
+  (0.1ms) begin transaction
16594
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["confirmation_token", nil], ["confirmed_at", "2014-09-16 19:21:04.922686"], ["tokens", "{}"], ["updated_at", "2014-09-16 19:21:04.923032"]]
16595
+  (1.9ms) commit transaction
16596
+  (0.1ms) begin transaction
16597
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["confirmation_token", "yf7zy3xGMKN6L3Uz5tst"], ["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$3BslAxESeyT/rLgwJLDe/ubG4vYVEn7MYSZ///s4aQaI6glZBt0fq\",\"expiry\":1412104864}}"], ["updated_at", "2014-09-16 19:21:04.987061"]]
16598
+  (0.8ms) commit transaction
16599
+ Redirected to http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=MM994mrdpcoC4l2PmIqx2A&expiry=1412104864&token=2wlEqnsxFraqxbFkACDgUA&uid=test%40test.com
16600
+ Completed 302 Found in 69ms (ActiveRecord: 3.5ms)
16601
+
16602
+
16603
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 14:21:05 -0500
16604
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16605
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16606
+  (0.1ms) begin transaction
16607
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$x2iGtypDGTQOT4xXJnzAl.QSiwD7rR6N6Xv8ozj5zQfAhImt4XnY6\",\"expiry\":1412104866,\"last_token\":\"$2a$10$3BslAxESeyT/rLgwJLDe/ubG4vYVEn7MYSZ///s4aQaI6glZBt0fq\",\"updated_at\":\"2014-09-16T14:21:06.004-05:00\"}}"], ["updated_at", "2014-09-16 19:21:06.005302"]]
16608
+  (0.5ms) commit transaction
16609
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 1.1ms)
16610
+
16611
+
16612
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 14:21:35 -0500
16613
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16614
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16615
+  (0.1ms) begin transaction
16616
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$BiqvAEQwIa/RyxgzSBsxTexDk5sDxZD3MvcSL9tUHe6.qWLIOvwD2\",\"expiry\":1412104895,\"last_token\":\"$2a$10$x2iGtypDGTQOT4xXJnzAl.QSiwD7rR6N6Xv8ozj5zQfAhImt4XnY6\",\"updated_at\":\"2014-09-16T14:21:35.598-05:00\"}}"], ["updated_at", "2014-09-16 19:21:35.599250"]]
16617
+  (1.8ms) commit transaction
16618
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 2.3ms)
16619
+
16620
+
16621
+ Started PUT "/auth" for 127.0.0.1 at 2014-09-16 14:21:38 -0500
16622
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
16623
+ Parameters: {"favorite_color"=>"green", "registration"=>{"favorite_color"=>"green"}}
16624
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16625
+ Unpermitted parameters: registration
16626
+  (0.1ms) begin transaction
16627
+ SQL (0.3ms) UPDATE "users" SET "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["favorite_color", "green"], ["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$BiqvAEQwIa/RyxgzSBsxTexDk5sDxZD3MvcSL9tUHe6.qWLIOvwD2\",\"expiry\":1412104895,\"last_token\":\"$2a$10$x2iGtypDGTQOT4xXJnzAl.QSiwD7rR6N6Xv8ozj5zQfAhImt4XnY6\",\"updated_at\":\"2014-09-16T14:21:35.598-05:00\"}}"], ["updated_at", "2014-09-16 19:21:38.731386"]]
16628
+  (1.6ms) commit transaction
16629
+  (0.1ms) begin transaction
16630
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$BiqvAEQwIa/RyxgzSBsxTexDk5sDxZD3MvcSL9tUHe6.qWLIOvwD2\",\"expiry\":1412104895,\"last_token\":\"$2a$10$x2iGtypDGTQOT4xXJnzAl.QSiwD7rR6N6Xv8ozj5zQfAhImt4XnY6\",\"updated_at\":\"2014-09-16T14:21:38.735-05:00\"}}"], ["updated_at", "2014-09-16 19:21:38.736277"]]
16631
+  (0.6ms) commit transaction
16632
+ Completed 200 OK in 70ms (Views: 0.5ms | ActiveRecord: 3.2ms)
16633
+
16634
+
16635
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 14:21:41 -0500
16636
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16637
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16638
+  (0.1ms) begin transaction
16639
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$BiqvAEQwIa/RyxgzSBsxTexDk5sDxZD3MvcSL9tUHe6.qWLIOvwD2\",\"expiry\":1412104895,\"last_token\":\"$2a$10$x2iGtypDGTQOT4xXJnzAl.QSiwD7rR6N6Xv8ozj5zQfAhImt4XnY6\",\"updated_at\":\"2014-09-16T14:21:41.597-05:00\"}}"], ["updated_at", "2014-09-16 19:21:41.598291"]]
16640
+  (1.9ms) commit transaction
16641
+ Completed 200 OK in 71ms (Views: 0.3ms | ActiveRecord: 2.6ms)
16642
+
16643
+
16644
+ Started PUT "/auth/password" for 127.0.0.1 at 2014-09-16 14:21:52 -0500
16645
+ Processing by DeviseTokenAuth::PasswordsController#update as HTML
16646
+ Parameters: {"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}
16647
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16648
+  (0.1ms) begin transaction
16649
+ Binary data inserted for `string` type on column `encrypted_password`
16650
+ SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["encrypted_password", "$2a$10$iORRlfyW7CS2lTHMcsiBVOE./HtQhAD2n6gKaVhgoTi/Fq9r6/JVa"], ["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$BiqvAEQwIa/RyxgzSBsxTexDk5sDxZD3MvcSL9tUHe6.qWLIOvwD2\",\"expiry\":1412104895,\"last_token\":\"$2a$10$x2iGtypDGTQOT4xXJnzAl.QSiwD7rR6N6Xv8ozj5zQfAhImt4XnY6\",\"updated_at\":\"2014-09-16T14:21:41.597-05:00\"}}"], ["updated_at", "2014-09-16 19:21:52.540615"]]
16651
+  (1.8ms) commit transaction
16652
+  (0.1ms) begin transaction
16653
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"MM994mrdpcoC4l2PmIqx2A\":{\"token\":\"$2a$10$5eTMDZeAwZ2kKzDoCt4u7uBdGEShPAFxcL.ctpRVyZhSD8FxZTHrC\",\"expiry\":1412104912,\"last_token\":\"$2a$10$BiqvAEQwIa/RyxgzSBsxTexDk5sDxZD3MvcSL9tUHe6.qWLIOvwD2\",\"updated_at\":\"2014-09-16T14:21:52.604-05:00\"}}"], ["updated_at", "2014-09-16 19:21:52.605617"]]
16654
+  (0.8ms) commit transaction
16655
+ Completed 200 OK in 193ms (Views: 0.4ms | ActiveRecord: 3.5ms)
16656
+
16657
+
16658
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 14:21:58 -0500
16659
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16660
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16661
+  (0.1ms) begin transaction
16662
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{}"], ["updated_at", "2014-09-16 19:21:58.296082"]]
16663
+  (0.8ms) commit transaction
16664
+ Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 1.3ms)
16665
+
16666
+
16667
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 14:22:04 -0500
16668
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
16669
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
16670
+ Unpermitted parameters: session
16671
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
16672
+ Unpermitted parameters: session
16673
+ Unpermitted parameters: session
16674
+ Unpermitted parameters: session
16675
+  (0.1ms) begin transaction
16676
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"nm7O_6B7A6uozgMxi3M-bA\":{\"token\":\"$2a$10$hUmou5MDRf6RKG1XazSj9uYzTt7NWuYlcQjRiGadX6QxUN77JA9J6\",\"expiry\":1412104924}}"], ["updated_at", "2014-09-16 19:22:04.766762"]]
16677
+  (2.3ms) commit transaction
16678
+  (0.1ms) begin transaction
16679
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"nm7O_6B7A6uozgMxi3M-bA\":{\"token\":\"$2a$10$Jh5jeSVqyqPXUX2QGMSou.pFGOqHs4wEoQ/vFU3E0lp0I.nfa/hy6\",\"expiry\":1412104924,\"last_token\":\"$2a$10$hUmou5MDRf6RKG1XazSj9uYzTt7NWuYlcQjRiGadX6QxUN77JA9J6\",\"updated_at\":\"2014-09-16T14:22:04.831-05:00\"}}"], ["updated_at", "2014-09-16 19:22:04.831619"]]
16680
+  (0.8ms) commit transaction
16681
+ Completed 200 OK in 190ms (Views: 0.2ms | ActiveRecord: 4.0ms)
16682
+
16683
+
16684
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:22:07 -0500
16685
+ Processing by DemoController#members_only as HTML
16686
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16687
+  (0.1ms) begin transaction
16688
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"nm7O_6B7A6uozgMxi3M-bA\":{\"token\":\"$2a$10$Jh5jeSVqyqPXUX2QGMSou.pFGOqHs4wEoQ/vFU3E0lp0I.nfa/hy6\",\"expiry\":1412104924,\"last_token\":\"$2a$10$hUmou5MDRf6RKG1XazSj9uYzTt7NWuYlcQjRiGadX6QxUN77JA9J6\",\"updated_at\":\"2014-09-16T14:22:07.437-05:00\"}}"], ["updated_at", "2014-09-16 19:22:07.437894"]]
16689
+  (2.3ms) commit transaction
16690
+ Completed 200 OK in 66ms (Views: 0.5ms | ActiveRecord: 2.9ms)
16691
+
16692
+
16693
+
16694
+
16695
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:22:09 -0500
16696
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:22:09 -0500
16697
+ Processing by DemoController#members_only as HTML
16698
+ Processing by DemoController#members_only as HTML
16699
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16700
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16701
+  (0.1ms) begin transaction
16702
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"nm7O_6B7A6uozgMxi3M-bA\":{\"token\":\"$2a$10$Jh5jeSVqyqPXUX2QGMSou.pFGOqHs4wEoQ/vFU3E0lp0I.nfa/hy6\",\"expiry\":1412104924,\"last_token\":\"$2a$10$hUmou5MDRf6RKG1XazSj9uYzTt7NWuYlcQjRiGadX6QxUN77JA9J6\",\"updated_at\":\"2014-09-16T14:22:09.486-05:00\"}}"], ["updated_at", "2014-09-16 19:22:09.487198"]]
16703
+  (0.1ms) begin transaction
16704
+  (2.0ms) commit transaction
16705
+ SQL (1.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"nm7O_6B7A6uozgMxi3M-bA\":{\"token\":\"$2a$10$Jh5jeSVqyqPXUX2QGMSou.pFGOqHs4wEoQ/vFU3E0lp0I.nfa/hy6\",\"expiry\":1412104924,\"last_token\":\"$2a$10$hUmou5MDRf6RKG1XazSj9uYzTt7NWuYlcQjRiGadX6QxUN77JA9J6\",\"updated_at\":\"2014-09-16T14:22:09.488-05:00\"}}"], ["updated_at", "2014-09-16 19:22:09.488621"]]
16706
+ Completed 200 OK in 67ms (Views: 0.5ms | ActiveRecord: 2.6ms)
16707
+  (0.5ms) commit transaction
16708
+ Completed 200 OK in 67ms (Views: 0.7ms | ActiveRecord: 2.0ms)
16709
+
16710
+
16711
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 14:22:16 -0500
16712
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16713
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16714
+  (0.1ms) begin transaction
16715
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{}"], ["updated_at", "2014-09-16 19:22:16.635693"]]
16716
+  (1.6ms) commit transaction
16717
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 2.1ms)
16718
+
16719
+
16720
+ Started POST "/auth/password" for 127.0.0.1 at 2014-09-16 14:22:23 -0500
16721
+ Processing by DeviseTokenAuth::PasswordsController#create as HTML
16722
+ Parameters: {"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/#/", "password"=>{"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/#/"}}
16723
+ Unpermitted parameters: password
16724
+ Unpermitted parameters: password
16725
+ Unpermitted parameters: password
16726
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' AND "users"."provider" = 'email' ORDER BY "users"."id" ASC LIMIT 1
16727
+ Unpermitted parameters: password
16728
+  (0.0ms) begin transaction
16729
+ SQL (0.4ms) UPDATE "users" SET "reset_password_redirect_url" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["reset_password_redirect_url", "http://ng-token-auth.dev/#/"], ["tokens", "{}"], ["updated_at", "2014-09-16 19:22:23.437881"]]
16730
+  (1.8ms) commit transaction
16731
+ Unpermitted parameters: password
16732
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' ORDER BY "users"."id" ASC LIMIT 1
16733
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'd112b13147e6a5238151c8f0de28f4d8dc89ff7823e18344929e0d1dec8232aa' ORDER BY "users"."id" ASC LIMIT 1
16734
+  (0.0ms) begin transaction
16735
+ Binary data inserted for `string` type on column `reset_password_token`
16736
+ SQL (0.3ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["reset_password_sent_at", "2014-09-16 19:22:23.637040"], ["reset_password_token", "d112b13147e6a5238151c8f0de28f4d8dc89ff7823e18344929e0d1dec8232aa"], ["tokens", "{}"], ["updated_at", "2014-09-16 19:22:23.637317"]]
16737
+  (1.8ms) commit transaction
16738
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/reset_password_instructions.html.erb (0.7ms)
16739
+
16740
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 7.4ms
16741
+
16742
+ Sent mail to test@test.com (9.5ms)
16743
+ Date: Tue, 16 Sep 2014 14:22:23 -0500
16744
+ From: please-change-me-at-config-initializers-devise@example.com
16745
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
16746
+ To: test@test.com
16747
+ Message-ID: <54188def9e8df_c2fd3ff110465be09415b@tests-MacBook-Pro-2.local.mail>
16748
+ Subject: Reset password instructions
16749
+ Mime-Version: 1.0
16750
+ Content-Type: text/html;
16751
+ charset=UTF-8
16752
+ Content-Transfer-Encoding: 7bit
16753
+
16754
+ <p>Hello test@test.com!</p>
16755
+
16756
+ <p>Someone has requested a link to change your password. You can do this through the link below.</p>
16757
+
16758
+ <p><a href="http://devise-token-auth.dev/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&amp;reset_password_token=_GwDAe8QsuNiKXwMYHx6">Change my password</a></p>
16759
+
16760
+ <p>If you didn't request this, please ignore this email.</p>
16761
+ <p>Your password won't change until you access the link above and create a new one.</p>
16762
+
16763
+ Completed 200 OK in 223ms (Views: 0.2ms | ActiveRecord: 5.0ms)
16764
+
16765
+
16766
+ Started GET "/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&reset_password_token=[FILTERED]" for 127.0.0.1 at 2014-09-16 14:22:33 -0500
16767
+ Processing by DeviseTokenAuth::PasswordsController#edit as HTML
16768
+ Parameters: {"redirect_url"=>"http://ng-token-auth.dev/#/", "reset_password_token"=>"[FILTERED]"}
16769
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'd112b13147e6a5238151c8f0de28f4d8dc89ff7823e18344929e0d1dec8232aa' ORDER BY "users"."id" ASC LIMIT 1
16770
+  (0.1ms) begin transaction
16771
+ SQL (0.3ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["reset_password_sent_at", nil], ["reset_password_token", nil], ["tokens", "{}"], ["updated_at", "2014-09-16 19:22:33.518575"]]
16772
+  (1.9ms) commit transaction
16773
+  (0.1ms) begin transaction
16774
+ SQL (0.3ms) UPDATE "users" SET "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["reset_password_token", "_GwDAe8QsuNiKXwMYHx6"], ["tokens", "{\"1YxoqxrKhyz5BzoXswXJQg\":{\"token\":\"$2a$10$JOLk6IBqNmsD9fQ70LrO/OWjmYf.qE3emWTk7dcL7ZUjkz8kMYBC.\",\"expiry\":1412104953}}"], ["updated_at", "2014-09-16 19:22:33.582691"]]
16775
+  (0.8ms) commit transaction
16776
+ Redirected to http://ng-token-auth.dev/#/?client_id=1YxoqxrKhyz5BzoXswXJQg&expiry=1412104953&reset_password=true&token=rkYWBIVrBjMEkWFlry32HA&uid=test%40test.com
16777
+ Completed 302 Found in 69ms (ActiveRecord: 3.8ms)
16778
+
16779
+
16780
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 14:22:33 -0500
16781
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16782
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16783
+  (0.1ms) begin transaction
16784
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"1YxoqxrKhyz5BzoXswXJQg\":{\"token\":\"$2a$10$89rfwgJxlMcMVUrQqjR86.LYTmiyv/./gCgqW6v8kDfRpJrGt.5Ua\",\"expiry\":1412104953,\"last_token\":\"$2a$10$JOLk6IBqNmsD9fQ70LrO/OWjmYf.qE3emWTk7dcL7ZUjkz8kMYBC.\",\"updated_at\":\"2014-09-16T14:22:33.996-05:00\"}}"], ["updated_at", "2014-09-16 19:22:33.997885"]]
16785
+  (1.9ms) commit transaction
16786
+ Completed 200 OK in 128ms (Views: 0.2ms | ActiveRecord: 2.5ms)
16787
+
16788
+
16789
+ Started PUT "/auth/password" for 127.0.0.1 at 2014-09-16 14:22:41 -0500
16790
+ Processing by DeviseTokenAuth::PasswordsController#update as HTML
16791
+ Parameters: {"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}
16792
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16793
+  (0.1ms) begin transaction
16794
+ Binary data inserted for `string` type on column `encrypted_password`
16795
+ SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["encrypted_password", "$2a$10$2WphAmpzyTgvR8tcbdPilO3GA4s0nN48TUUVT/HUBLEFJZC94EsrO"], ["tokens", "{\"1YxoqxrKhyz5BzoXswXJQg\":{\"token\":\"$2a$10$89rfwgJxlMcMVUrQqjR86.LYTmiyv/./gCgqW6v8kDfRpJrGt.5Ua\",\"expiry\":1412104953,\"last_token\":\"$2a$10$JOLk6IBqNmsD9fQ70LrO/OWjmYf.qE3emWTk7dcL7ZUjkz8kMYBC.\",\"updated_at\":\"2014-09-16T14:22:33.996-05:00\"}}"], ["updated_at", "2014-09-16 19:22:41.485978"]]
16796
+  (1.8ms) commit transaction
16797
+  (0.1ms) begin transaction
16798
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"1YxoqxrKhyz5BzoXswXJQg\":{\"token\":\"$2a$10$WhZNo6yC7Yzs2bKg6sqMIuxDbR/2MCAfcEYHII1kocaPsUZJo1YM6\",\"expiry\":1412104961,\"last_token\":\"$2a$10$89rfwgJxlMcMVUrQqjR86.LYTmiyv/./gCgqW6v8kDfRpJrGt.5Ua\",\"updated_at\":\"2014-09-16T14:22:41.550-05:00\"}}"], ["updated_at", "2014-09-16 19:22:41.550639"]]
16799
+  (0.9ms) commit transaction
16800
+ Completed 200 OK in 190ms (Views: 0.3ms | ActiveRecord: 3.6ms)
16801
+
16802
+
16803
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 14:22:49 -0500
16804
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16805
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16806
+  (0.1ms) begin transaction
16807
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{}"], ["updated_at", "2014-09-16 19:22:49.308191"]]
16808
+  (1.6ms) commit transaction
16809
+ Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 2.1ms)
16810
+
16811
+
16812
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 14:22:51 -0500
16813
+
16814
+
16815
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 14:22:51 -0500
16816
+
16817
+
16818
+ Started GET "/omniauth/github/callback?code=727dcdbbac82f9aa31a1&state=30db02da36222a85ee60463cd313cff34c50105f78c9f4a0" for 127.0.0.1 at 2014-09-16 14:22:51 -0500
16819
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16820
+ Parameters: {"code"=>"727dcdbbac82f9aa31a1", "state"=>"30db02da36222a85ee60463cd313cff34c50105f78c9f4a0", "provider"=>"github"}
16821
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16822
+  (0.1ms) begin transaction
16823
+ SQL (0.4ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 19:22:52.565066"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"expiry\":1412104972}}"], ["updated_at", "2014-09-16 19:22:52.565735"]]
16824
+  (1.8ms) commit transaction
16825
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.7ms)
16826
+ Completed 200 OK in 69ms (Views: 2.6ms | ActiveRecord: 2.5ms)
16827
+
16828
+
16829
+ Started PUT "/auth" for 127.0.0.1 at 2014-09-16 14:22:59 -0500
16830
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
16831
+ Parameters: {"favorite_color"=>"purple", "registration"=>{"favorite_color"=>"purple"}}
16832
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16833
+ Unpermitted parameters: registration
16834
+  (0.1ms) begin transaction
16835
+ SQL (0.4ms) UPDATE "users" SET "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["favorite_color", "purple"], ["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"expiry\":1412104972}}"], ["updated_at", "2014-09-16 19:22:59.290757"]]
16836
+  (2.4ms) commit transaction
16837
+  (0.1ms) begin transaction
16838
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:22:59.355-05:00\"}}"], ["updated_at", "2014-09-16 19:22:59.356557"]]
16839
+  (0.5ms) commit transaction
16840
+ Completed 200 OK in 130ms (Views: 0.3ms | ActiveRecord: 3.9ms)
16841
+
16842
+
16843
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 14:23:02 -0500
16844
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16845
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16846
+  (0.1ms) begin transaction
16847
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:23:03.052-05:00\"}}"], ["updated_at", "2014-09-16 19:23:03.052752"]]
16848
+  (1.9ms) commit transaction
16849
+ Completed 200 OK in 66ms (Views: 0.2ms | ActiveRecord: 2.4ms)
16850
+
16851
+
16852
+
16853
+
16854
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:23:04 -0500
16855
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:23:04 -0500
16856
+ Processing by DemoController#members_only as HTML
16857
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16858
+ Processing by DemoController#members_only as HTML
16859
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16860
+  (0.1ms) begin transaction
16861
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:23:04.519-05:00\"}}"], ["updated_at", "2014-09-16 19:23:04.520398"]]
16862
+  (0.1ms) begin transaction
16863
+  (1.8ms) commit transaction
16864
+ Completed 200 OK in 69ms (Views: 0.5ms | ActiveRecord: 2.3ms)
16865
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:23:04.521-05:00\"}}"], ["updated_at", "2014-09-16 19:23:04.522413"]]
16866
+  (0.5ms) commit transaction
16867
+ Completed 200 OK in 69ms (Views: 0.7ms | ActiveRecord: 1.0ms)
16868
+
16869
+
16870
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:23:06 -0500
16871
+ Processing by DemoController#members_only as HTML
16872
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16873
+  (0.1ms) begin transaction
16874
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:23:06.522-05:00\"}}"], ["updated_at", "2014-09-16 19:23:06.523068"]]
16875
+  (2.0ms) commit transaction
16876
+ Completed 200 OK in 66ms (Views: 0.5ms | ActiveRecord: 2.6ms)
16877
+
16878
+
16879
+
16880
+
16881
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:23:10 -0500
16882
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 14:23:10 -0500
16883
+ Processing by DemoController#members_only as HTML
16884
+ Processing by DemoController#members_only as HTML
16885
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16886
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16887
+  (0.1ms) begin transaction
16888
+  (0.1ms) begin transaction
16889
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:23:10.736-05:00\"}}"], ["updated_at", "2014-09-16 19:23:10.737931"]]
16890
+  (1.9ms) commit transaction
16891
+ Completed 200 OK in 70ms (Views: 0.7ms | ActiveRecord: 2.5ms)
16892
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"expiry\":1412104979,\"last_token\":\"$2a$10$MtFW9yYJKHVm9O1MvIWtiOgkKpTMqt0NPkapn.dMpj.VeUCtPFXxK\",\"updated_at\":\"2014-09-16T14:23:10.738-05:00\"}}"], ["updated_at", "2014-09-16 19:23:10.740398"]]
16893
+  (0.5ms) commit transaction
16894
+ Completed 200 OK in 71ms (Views: 0.7ms | ActiveRecord: 1.1ms)
16895
+
16896
+
16897
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:54:06 -0500
16898
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
16899
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16900
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16901
+  (0.1ms) begin transaction
16902
+ SQL (0.5ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"expiry\":1412110446,\"last_token\":\"$2a$10$gD1U6X7vyLoZIs29laJnquKGZCGs59AWfxnBZIGAnQ5Apjozw/lGO\",\"updated_at\":\"2014-09-16T15:54:06.370-05:00\"}}"], ["updated_at", "2014-09-16 20:54:06.371221"]]
16903
+  (0.6ms) commit transaction
16904
+ Completed 200 OK in 160ms (Views: 0.3ms | ActiveRecord: 2.5ms)
16905
+
16906
+
16907
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:54:46 -0500
16908
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16909
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16910
+  (0.1ms) begin transaction
16911
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"expiry\":1411884105,\"last_token\":\"$2a$10$qrpO1hQrnB6UQETTliHElOBgwD375c5/7DegMS7WJx8OTm2IeeGEC\",\"updated_at\":\"2014-09-14T01:01:45.737-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"}}"], ["updated_at", "2014-09-16 20:54:46.676083"]]
16912
+  (2.0ms) commit transaction
16913
+ Completed 200 OK in 127ms (Views: 0.3ms | ActiveRecord: 2.6ms)
16914
+
16915
+
16916
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:55:09 -0500
16917
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
16918
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16919
+  (0.1ms) begin transaction
16920
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"L6ebSEe9BpdaUWhegTRGrw\":{\"token\":\"$2a$10$bBcWG7truKqxwEM/xruRb.EWezw0Ft3gkNqgBsKwDVOBzUuySDSMm\",\"expiry\":1412110509,\"last_token\":\"$2a$10$yZzA7p71L197QwZxIxVbVeZOUBZA5FNfDogIwMlvA//veA3itwy3G\",\"updated_at\":\"2014-09-16T15:55:09.478-05:00\"},\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"}}"], ["updated_at", "2014-09-16 20:55:09.478993"]]
16921
+  (17.4ms) commit transaction
16922
+ Completed 200 OK in 143ms (Views: 0.2ms | ActiveRecord: 17.9ms)
16923
+
16924
+
16925
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 15:55:11 -0500
16926
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
16927
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
16928
+  (0.1ms) begin transaction
16929
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"}}"], ["updated_at", "2014-09-16 20:55:11.469150"]]
16930
+  (0.8ms) commit transaction
16931
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 1.3ms)
16932
+
16933
+
16934
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 15:55:20 -0500
16935
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
16936
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
16937
+ Unpermitted parameters: session
16938
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
16939
+ Unpermitted parameters: session
16940
+ Unpermitted parameters: session
16941
+ Unpermitted parameters: session
16942
+  (0.1ms) begin transaction
16943
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"VQHBTRVWrgiwqu3MjwsPSg\":{\"token\":\"$2a$10$FVIVXOI0t.kIjZdWLDYA0OW7ZmLJuEBGt3zGALHrtr6VEJ4fL0g3K\",\"expiry\":1412110520}}"], ["updated_at", "2014-09-16 20:55:20.871617"]]
16944
+  (0.9ms) commit transaction
16945
+  (0.1ms) begin transaction
16946
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"VQHBTRVWrgiwqu3MjwsPSg\":{\"token\":\"$2a$10$VujZUeaenCIWMZufP3lfPe7j33p1XlExbgc8hHt2EcLJMPFAidjXK\",\"expiry\":1412110520,\"last_token\":\"$2a$10$FVIVXOI0t.kIjZdWLDYA0OW7ZmLJuEBGt3zGALHrtr6VEJ4fL0g3K\",\"updated_at\":\"2014-09-16T15:55:20.937-05:00\"}}"], ["updated_at", "2014-09-16 20:55:20.938407"]]
16947
+  (0.5ms) commit transaction
16948
+ Completed 200 OK in 192ms (Views: 0.2ms | ActiveRecord: 2.6ms)
16949
+
16950
+
16951
+ Started PUT "/auth" for 127.0.0.1 at 2014-09-16 15:55:26 -0500
16952
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
16953
+ Parameters: {"favorite_color"=>"purple", "registration"=>{"favorite_color"=>"purple"}}
16954
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16955
+ Unpermitted parameters: registration
16956
+  (0.1ms) begin transaction
16957
+ SQL (0.3ms) UPDATE "users" SET "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["favorite_color", "purple"], ["tokens", "{\"VQHBTRVWrgiwqu3MjwsPSg\":{\"token\":\"$2a$10$VujZUeaenCIWMZufP3lfPe7j33p1XlExbgc8hHt2EcLJMPFAidjXK\",\"expiry\":1412110520,\"last_token\":\"$2a$10$FVIVXOI0t.kIjZdWLDYA0OW7ZmLJuEBGt3zGALHrtr6VEJ4fL0g3K\",\"updated_at\":\"2014-09-16T15:55:20.937-05:00\"}}"], ["updated_at", "2014-09-16 20:55:26.738233"]]
16958
+  (1.0ms) commit transaction
16959
+  (0.1ms) begin transaction
16960
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 22 [["tokens", "{\"VQHBTRVWrgiwqu3MjwsPSg\":{\"token\":\"$2a$10$iengD0J793R2NAoD7Yd1..dz2Hu0OuG75DLvjgyFI2567SDdmPGhK\",\"expiry\":1412110526,\"last_token\":\"$2a$10$VujZUeaenCIWMZufP3lfPe7j33p1XlExbgc8hHt2EcLJMPFAidjXK\",\"updated_at\":\"2014-09-16T15:55:26.800-05:00\"}}"], ["updated_at", "2014-09-16 20:55:26.801734"]]
16961
+  (1.0ms) commit transaction
16962
+ Completed 200 OK in 129ms (Views: 0.3ms | ActiveRecord: 2.8ms)
16963
+
16964
+
16965
+ Started DELETE "/auth" for 127.0.0.1 at 2014-09-16 15:55:35 -0500
16966
+ Processing by DeviseTokenAuth::RegistrationsController#destroy as HTML
16967
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16968
+  (0.1ms) begin transaction
16969
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 22]]
16970
+  (1.9ms) commit transaction
16971
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 2.5ms)
16972
+
16973
+
16974
+ Started DELETE "/auth" for 127.0.0.1 at 2014-09-16 15:55:37 -0500
16975
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
16976
+ Processing by DeviseTokenAuth::RegistrationsController#destroy as HTML
16977
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
16978
+ Completed 404 Not Found in 6ms (Views: 0.2ms | ActiveRecord: 0.4ms)
16979
+
16980
+
16981
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2014-09-16 15:55:42 -0500
16982
+
16983
+
16984
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 15:55:42 -0500
16985
+
16986
+
16987
+ Started GET "/omniauth/github/callback?code=095855fd1f7d4eebc3a4&state=990bb03f9704eb2bc2efdafa69ec019883fb55c7f2e2e72e" for 127.0.0.1 at 2014-09-16 15:55:42 -0500
16988
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
16989
+ Parameters: {"code"=>"095855fd1f7d4eebc3a4", "state"=>"990bb03f9704eb2bc2efdafa69ec019883fb55c7f2e2e72e", "provider"=>"github"}
16990
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
16991
+  (0.1ms) begin transaction
16992
+ SQL (0.4ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:55:43.306714"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$SRyFfAiO524RMJ24AwysROElELQWAgtQsgM9hoWc0Nk/iBwKa.UU6\",\"expiry\":1412110543}}"], ["updated_at", "2014-09-16 20:55:43.309548"]]
16993
+  (0.9ms) commit transaction
16994
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.9ms)
16995
+ Completed 200 OK in 91ms (Views: 10.0ms | ActiveRecord: 1.6ms)
16996
+
16997
+
16998
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:55:44 -0500
16999
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17000
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17001
+  (0.1ms) begin transaction
17002
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$SRWNSH2lXqr3xdlcivXOjuSmEY3uFE8vJaR8Pk6J6sYtPUkY4w3Ja\",\"expiry\":1412110544,\"last_token\":\"$2a$10$SRyFfAiO524RMJ24AwysROElELQWAgtQsgM9hoWc0Nk/iBwKa.UU6\",\"updated_at\":\"2014-09-16T15:55:44.752-05:00\"}}"], ["updated_at", "2014-09-16 20:55:44.753314"]]
17003
+  (16.8ms) commit transaction
17004
+ Completed 200 OK in 142ms (Views: 0.2ms | ActiveRecord: 17.4ms)
17005
+
17006
+
17007
+ Started PUT "/auth" for 127.0.0.1 at 2014-09-16 15:55:52 -0500
17008
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
17009
+ Parameters: {"favorite_color"=>"pink", "registration"=>{"favorite_color"=>"pink"}}
17010
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17011
+ Unpermitted parameters: registration
17012
+  (0.1ms) begin transaction
17013
+ SQL (0.3ms) UPDATE "users" SET "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["favorite_color", "pink"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$SRWNSH2lXqr3xdlcivXOjuSmEY3uFE8vJaR8Pk6J6sYtPUkY4w3Ja\",\"expiry\":1412110544,\"last_token\":\"$2a$10$SRyFfAiO524RMJ24AwysROElELQWAgtQsgM9hoWc0Nk/iBwKa.UU6\",\"updated_at\":\"2014-09-16T15:55:44.752-05:00\"}}"], ["updated_at", "2014-09-16 20:55:52.560034"]]
17014
+  (1.8ms) commit transaction
17015
+  (0.1ms) begin transaction
17016
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"expiry\":1412110552,\"last_token\":\"$2a$10$SRWNSH2lXqr3xdlcivXOjuSmEY3uFE8vJaR8Pk6J6sYtPUkY4w3Ja\",\"updated_at\":\"2014-09-16T15:55:52.623-05:00\"}}"], ["updated_at", "2014-09-16 20:55:52.624630"]]
17017
+  (0.9ms) commit transaction
17018
+ Completed 200 OK in 130ms (Views: 0.3ms | ActiveRecord: 3.7ms)
17019
+
17020
+
17021
+ Started PUT "/auth/password" for 127.0.0.1 at 2014-09-16 15:56:15 -0500
17022
+ Processing by DeviseTokenAuth::PasswordsController#update as HTML
17023
+ Parameters: {"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}
17024
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17025
+  (0.1ms) begin transaction
17026
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"}}"], ["updated_at", "2014-09-16 20:56:15.266851"]]
17027
+  (1.8ms) commit transaction
17028
+ Completed 422 Unprocessable Entity in 127ms (Views: 0.2ms | ActiveRecord: 2.4ms)
17029
+
17030
+
17031
+
17032
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 15:56:28 -0500
17033
+
17034
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 15:56:28 -0500
17035
+ Processing by DemoController#members_only as HTML
17036
+ Processing by DemoController#members_only as HTML
17037
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17038
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17039
+ Completed 401 Unauthorized in 61ms (Views: 0.2ms | ActiveRecord: 0.2ms)
17040
+ Completed 401 Unauthorized in 61ms (Views: 0.2ms | ActiveRecord: 0.2ms)
17041
+
17042
+
17043
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-09-16 15:56:31 -0500
17044
+ Processing by DemoController#members_only as HTML
17045
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17046
+ Completed 401 Unauthorized in 61ms (Views: 0.1ms | ActiveRecord: 0.2ms)
17047
+
17048
+
17049
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:56:36 -0500
17050
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17051
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17052
+ Completed 401 Unauthorized in 62ms (Views: 0.2ms | ActiveRecord: 0.2ms)
17053
+
17054
+
17055
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 15:56:38 -0500
17056
+
17057
+
17058
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 15:56:38 -0500
17059
+
17060
+
17061
+ Started GET "/omniauth/github/callback?code=758d70f63788db310d65&state=c79f6b49958c2e10fe2cfaaaf227ebbb5a4ab10c483e0759" for 127.0.0.1 at 2014-09-16 15:56:38 -0500
17062
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17063
+ Parameters: {"code"=>"758d70f63788db310d65", "state"=>"c79f6b49958c2e10fe2cfaaaf227ebbb5a4ab10c483e0759", "provider"=>"github"}
17064
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17065
+  (0.1ms) begin transaction
17066
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:56:40.279763"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600}}"], ["updated_at", "2014-09-16 20:56:40.280652"]]
17067
+  (2.0ms) commit transaction
17068
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17069
+ Completed 200 OK in 68ms (Views: 1.7ms | ActiveRecord: 2.5ms)
17070
+
17071
+
17072
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F%23%253Fclient_id%3DnN_OsXtDS0no67hSKol3-g%26token%3DyeJjOQCANDGzBZsZRI2wNg%26uid%3D468037" for 127.0.0.1 at 2014-09-16 15:57:01 -0500
17073
+
17074
+
17075
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F%23%253Fclient_id%3DnN_OsXtDS0no67hSKol3-g%26token%3DyeJjOQCANDGzBZsZRI2wNg%26uid%3D468037&resource_class=User" for 127.0.0.1 at 2014-09-16 15:57:01 -0500
17076
+
17077
+
17078
+ Started GET "/omniauth/github/callback?code=e63cbfde5fe072d6d69b&state=9555a4ee477255ca8d6b0b95ec5378aaa401307491b08a65" for 127.0.0.1 at 2014-09-16 15:57:02 -0500
17079
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17080
+ Parameters: {"code"=>"e63cbfde5fe072d6d69b", "state"=>"9555a4ee477255ca8d6b0b95ec5378aaa401307491b08a65", "provider"=>"github"}
17081
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17082
+  (0.1ms) begin transaction
17083
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:57:02.646577"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622}}"], ["updated_at", "2014-09-16 20:57:02.647377"]]
17084
+  (1.7ms) commit transaction
17085
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17086
+ Completed 200 OK in 67ms (Views: 1.6ms | ActiveRecord: 2.2ms)
17087
+
17088
+
17089
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2014-09-16 15:57:21 -0500
17090
+
17091
+
17092
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 15:57:21 -0500
17093
+
17094
+
17095
+ Started GET "/omniauth/github/callback?code=d82cb68a77d702bfb6d7&state=8b8b9d27dafb704793c376774bbe18522a40c46eac199d07" for 127.0.0.1 at 2014-09-16 15:57:21 -0500
17096
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17097
+ Parameters: {"code"=>"d82cb68a77d702bfb6d7", "state"=>"8b8b9d27dafb704793c376774bbe18522a40c46eac199d07", "provider"=>"github"}
17098
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17099
+  (0.1ms) begin transaction
17100
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:57:22.266560"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"Ovz8FEOmDaQS7GKxf6yUMQ\":{\"token\":\"$2a$10$73JFQr18199WTjqNpMzrc.iE504M34KzCYqeDYlWcu3AgmgddF8lS\",\"expiry\":1412110642}}"], ["updated_at", "2014-09-16 20:57:22.267349"]]
17101
+  (1.9ms) commit transaction
17102
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17103
+ Completed 200 OK in 67ms (Views: 1.6ms | ActiveRecord: 2.5ms)
17104
+
17105
+
17106
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:57:23 -0500
17107
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17108
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17109
+  (0.1ms) begin transaction
17110
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"Ovz8FEOmDaQS7GKxf6yUMQ\":{\"token\":\"$2a$10$1fq7kjwnAAe/Nn3dPYMSq.lRBma0vSc5dhuwDJfFax4EREltbseKm\",\"expiry\":1412110644,\"last_token\":\"$2a$10$73JFQr18199WTjqNpMzrc.iE504M34KzCYqeDYlWcu3AgmgddF8lS\",\"updated_at\":\"2014-09-16T15:57:24.063-05:00\"}}"], ["updated_at", "2014-09-16 20:57:24.064668"]]
17111
+  (4.8ms) commit transaction
17112
+ Completed 200 OK in 130ms (Views: 0.2ms | ActiveRecord: 5.3ms)
17113
+
17114
+
17115
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 15:57:29 -0500
17116
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17117
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17118
+  (0.1ms) begin transaction
17119
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622}}"], ["updated_at", "2014-09-16 20:57:29.819985"]]
17120
+  (0.6ms) commit transaction
17121
+ Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 1.1ms)
17122
+
17123
+
17124
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 15:57:32 -0500
17125
+
17126
+
17127
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 15:57:32 -0500
17128
+
17129
+
17130
+ Started GET "/omniauth/github/callback?code=f23146e028762705b78d&state=a4259fd6b9f0641df2047ef3ad6d27b59ee811673da9d23b" for 127.0.0.1 at 2014-09-16 15:57:32 -0500
17131
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17132
+ Parameters: {"code"=>"f23146e028762705b78d", "state"=>"a4259fd6b9f0641df2047ef3ad6d27b59ee811673da9d23b", "provider"=>"github"}
17133
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17134
+  (0.1ms) begin transaction
17135
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:57:34.327652"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654}}"], ["updated_at", "2014-09-16 20:57:34.328462"]]
17136
+  (1.6ms) commit transaction
17137
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17138
+ Completed 200 OK in 67ms (Views: 1.6ms | ActiveRecord: 2.1ms)
17139
+
17140
+
17141
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2014-09-16 15:57:51 -0500
17142
+
17143
+
17144
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 15:57:51 -0500
17145
+
17146
+
17147
+ Started GET "/omniauth/github/callback?code=e52427c5263e018cf727&state=e473d23a544d81b1912862291f05a9b108d6f89dedd8b1cd" for 127.0.0.1 at 2014-09-16 15:57:52 -0500
17148
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17149
+ Parameters: {"code"=>"e52427c5263e018cf727", "state"=>"e473d23a544d81b1912862291f05a9b108d6f89dedd8b1cd", "provider"=>"github"}
17150
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17151
+  (0.1ms) begin transaction
17152
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:57:53.753003"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"4kbDKdB05VGGb7hOn2L0BA\":{\"token\":\"$2a$10$iRTXRbXSnuv/2l7N.DouBuRx6OVjPF94RfQJJ6Q1HRV4Me2JYmOlu\",\"expiry\":1412110673}}"], ["updated_at", "2014-09-16 20:57:53.753768"]]
17153
+  (1.8ms) commit transaction
17154
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17155
+ Completed 200 OK in 68ms (Views: 1.6ms | ActiveRecord: 2.4ms)
17156
+
17157
+
17158
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 15:57:55 -0500
17159
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17160
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17161
+  (0.1ms) begin transaction
17162
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"4kbDKdB05VGGb7hOn2L0BA\":{\"token\":\"$2a$10$2EeODEKwFrVN4DwTEDPQ8O6/bQNYVSlLKvDrtbO1oYs7asLdce332\",\"expiry\":1412110675,\"last_token\":\"$2a$10$iRTXRbXSnuv/2l7N.DouBuRx6OVjPF94RfQJJ6Q1HRV4Me2JYmOlu\",\"updated_at\":\"2014-09-16T15:57:55.948-05:00\"}}"], ["updated_at", "2014-09-16 20:57:55.949507"]]
17163
+  (4.7ms) commit transaction
17164
+ Completed 200 OK in 129ms (Views: 0.2ms | ActiveRecord: 5.3ms)
17165
+
17166
+
17167
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 15:57:58 -0500
17168
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17169
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17170
+  (0.1ms) begin transaction
17171
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654}}"], ["updated_at", "2014-09-16 20:57:58.722471"]]
17172
+  (0.7ms) commit transaction
17173
+ Completed 200 OK in 64ms (Views: 0.1ms | ActiveRecord: 1.3ms)
17174
+
17175
+
17176
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 15:58:10 -0500
17177
+
17178
+
17179
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 15:58:10 -0500
17180
+
17181
+
17182
+ Started GET "/omniauth/github/callback?code=001a5cd5790cda34f9e0&state=20e3d88a39ecf2fdbd78e4417b2d6751d3a3b2c014a9b447" for 127.0.0.1 at 2014-09-16 15:58:11 -0500
17183
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17184
+ Parameters: {"code"=>"001a5cd5790cda34f9e0", "state"=>"20e3d88a39ecf2fdbd78e4417b2d6751d3a3b2c014a9b447", "provider"=>"github"}
17185
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17186
+  (0.1ms) begin transaction
17187
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 20:58:12.117945"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692}}"], ["updated_at", "2014-09-16 20:58:12.118766"]]
17188
+  (1.9ms) commit transaction
17189
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17190
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 2.4ms)
17191
+
17192
+
17193
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F%23%253Fclient_id%3DEDQEBIPBbzrR1krGBXkaCw%26token%3DYhv6nC3kqDMJ_i8gpMLLwg%26uid%3D468037" for 127.0.0.1 at 2014-09-16 16:00:55 -0500
17194
+
17195
+
17196
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F%23%253Fclient_id%3DEDQEBIPBbzrR1krGBXkaCw%26token%3DYhv6nC3kqDMJ_i8gpMLLwg%26uid%3D468037&resource_class=User" for 127.0.0.1 at 2014-09-16 16:00:55 -0500
17197
+
17198
+
17199
+ Started GET "/omniauth/github/callback?code=505702172148d2037b82&state=47df81ec94608e99275838538fd93b0b017ed5a760dd478f" for 127.0.0.1 at 2014-09-16 16:00:55 -0500
17200
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17201
+ Parameters: {"code"=>"505702172148d2037b82", "state"=>"47df81ec94608e99275838538fd93b0b017ed5a760dd478f", "provider"=>"github"}
17202
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17203
+  (0.1ms) begin transaction
17204
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:00:56.326711"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856}}"], ["updated_at", "2014-09-16 21:00:56.327658"]]
17205
+  (1.9ms) commit transaction
17206
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17207
+ Completed 200 OK in 78ms (Views: 1.9ms | ActiveRecord: 3.0ms)
17208
+
17209
+
17210
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2014-09-16 16:01:09 -0500
17211
+
17212
+
17213
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:01:09 -0500
17214
+
17215
+
17216
+ Started GET "/omniauth/github/callback?code=75be096614998c72dccd&state=416627381047bc479dae519a2773b476d92bc668afc5a0ea" for 127.0.0.1 at 2014-09-16 16:01:11 -0500
17217
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17218
+ Parameters: {"code"=>"75be096614998c72dccd", "state"=>"416627381047bc479dae519a2773b476d92bc668afc5a0ea", "provider"=>"github"}
17219
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17220
+  (0.1ms) begin transaction
17221
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:01:11.673625"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"expiry\":1412110486,\"last_token\":\"$2a$10$Bsy0w26kaswQY7dJ3RyS5OweGOdPk7jXGsWK/Af9K8vq0D0AJGlMu\",\"updated_at\":\"2014-09-16T15:54:46.675-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871}}"], ["updated_at", "2014-09-16 21:01:11.674620"]]
17222
+  (1.9ms) commit transaction
17223
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17224
+ Completed 200 OK in 67ms (Views: 1.6ms | ActiveRecord: 2.5ms)
17225
+
17226
+
17227
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:01:35 -0500
17228
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17229
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17230
+  (0.1ms) begin transaction
17231
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"c_glkMCbC9QOli9IXSvikA\":{\"token\":\"$2a$10$3UzCB.6Pbl548hNd318S1.KRlwuzUYH8AyxuOJlbhTdG3L9U2RAwq\",\"expiry\":1412110896,\"last_token\":\"$2a$10$aRp3msNPoleKqRxblGCmhOM75AO8EB5Kl8hhGiDAc01KXKfEwkx9q\",\"updated_at\":\"2014-09-16T16:01:36.107-05:00\"},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871}}"], ["updated_at", "2014-09-16 21:01:36.108089"]]
17232
+  (1.5ms) commit transaction
17233
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 2.1ms)
17234
+
17235
+
17236
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:01:39 -0500
17237
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17238
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17239
+  (0.1ms) begin transaction
17240
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871}}"], ["updated_at", "2014-09-16 21:01:39.111698"]]
17241
+  (1.8ms) commit transaction
17242
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 2.3ms)
17243
+
17244
+
17245
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:01:44 -0500
17246
+
17247
+
17248
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:01:44 -0500
17249
+
17250
+
17251
+ Started GET "/omniauth/github/callback?code=4d345688b85e8fc24d66&state=c909992411a359b5fb235d3b6245355623104f39955465ca" for 127.0.0.1 at 2014-09-16 16:01:44 -0500
17252
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17253
+ Parameters: {"code"=>"4d345688b85e8fc24d66", "state"=>"c909992411a359b5fb235d3b6245355623104f39955465ca", "provider"=>"github"}
17254
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17255
+  (0.1ms) begin transaction
17256
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:01:45.156416"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"M4UiDVH2RxpE0CfnaF8LRQ\":{\"token\":\"$2a$10$K24KgnAOAzwNpjg8Lw2fzuQEd7bfqIcl7wrbtDnes8oihuT1BgCNu\",\"expiry\":1412110905}}"], ["updated_at", "2014-09-16 21:01:45.157278"]]
17257
+  (1.6ms) commit transaction
17258
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17259
+ Completed 200 OK in 68ms (Views: 1.8ms | ActiveRecord: 2.1ms)
17260
+
17261
+
17262
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:02:29 -0500
17263
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17264
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17265
+  (0.1ms) begin transaction
17266
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"M4UiDVH2RxpE0CfnaF8LRQ\":{\"token\":\"$2a$10$qOJwSmCa1lxnymy2Z5ObVecM6Wi9lkhIuG6zzhYcnZleAEU3n7GIq\",\"expiry\":1412110949,\"last_token\":\"$2a$10$K24KgnAOAzwNpjg8Lw2fzuQEd7bfqIcl7wrbtDnes8oihuT1BgCNu\",\"updated_at\":\"2014-09-16T16:02:29.375-05:00\"}}"], ["updated_at", "2014-09-16 21:02:29.376976"]]
17267
+  (1.6ms) commit transaction
17268
+ Completed 200 OK in 130ms (Views: 0.3ms | ActiveRecord: 2.2ms)
17269
+
17270
+
17271
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:02:31 -0500
17272
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17273
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17274
+  (0.1ms) begin transaction
17275
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"M4UiDVH2RxpE0CfnaF8LRQ\":{\"token\":\"$2a$10$qOJwSmCa1lxnymy2Z5ObVecM6Wi9lkhIuG6zzhYcnZleAEU3n7GIq\",\"expiry\":1412110949,\"last_token\":\"$2a$10$K24KgnAOAzwNpjg8Lw2fzuQEd7bfqIcl7wrbtDnes8oihuT1BgCNu\",\"updated_at\":\"2014-09-16T16:02:31.066-05:00\"}}"], ["updated_at", "2014-09-16 21:02:31.067030"]]
17276
+  (1.6ms) commit transaction
17277
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 2.1ms)
17278
+
17279
+
17280
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:02:33 -0500
17281
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17282
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17283
+  (0.1ms) begin transaction
17284
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871}}"], ["updated_at", "2014-09-16 21:02:33.551286"]]
17285
+  (1.7ms) commit transaction
17286
+ Completed 200 OK in 67ms (Views: 0.1ms | ActiveRecord: 2.3ms)
17287
+
17288
+
17289
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:02:35 -0500
17290
+
17291
+
17292
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:02:35 -0500
17293
+
17294
+
17295
+ Started GET "/omniauth/github/callback?code=00e44f238e7608b1e8c4&state=69e8ea1069eb7081ae6f568ebf03d2c7e2e0988ef8cb6206" for 127.0.0.1 at 2014-09-16 16:02:35 -0500
17296
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17297
+ Parameters: {"code"=>"00e44f238e7608b1e8c4", "state"=>"69e8ea1069eb7081ae6f568ebf03d2c7e2e0988ef8cb6206", "provider"=>"github"}
17298
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17299
+  (0.1ms) begin transaction
17300
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:02:36.101295"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"sjNzk4QrDaTVoTNmBZM8iw\":{\"token\":\"$2a$10$t.DhNuZtGVgkU/DuaQngJu0.V/J.Eh6xkIkCkZP.Hk6fAzxgRZgdm\",\"expiry\":1412110956}}"], ["updated_at", "2014-09-16 21:02:36.102077"]]
17301
+  (2.2ms) commit transaction
17302
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.5ms)
17303
+ Completed 200 OK in 69ms (Views: 2.4ms | ActiveRecord: 2.8ms)
17304
+
17305
+
17306
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:03:02 -0500
17307
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17308
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17309
+  (0.1ms) begin transaction
17310
+ SQL (0.8ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871}}"], ["updated_at", "2014-09-16 21:03:02.800319"]]
17311
+  (1.7ms) commit transaction
17312
+ Completed 200 OK in 66ms (Views: 0.3ms | ActiveRecord: 2.7ms)
17313
+
17314
+
17315
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:03:07 -0500
17316
+
17317
+
17318
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:03:07 -0500
17319
+
17320
+
17321
+ Started GET "/omniauth/github/callback?code=26c0224631bc760b91f8&state=4160e3bca2c86190d7e77ef4dcc07d0dba57d2e408442146" for 127.0.0.1 at 2014-09-16 16:03:07 -0500
17322
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17323
+ Parameters: {"code"=>"26c0224631bc760b91f8", "state"=>"4160e3bca2c86190d7e77ef4dcc07d0dba57d2e408442146", "provider"=>"github"}
17324
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17325
+  (0.1ms) begin transaction
17326
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:03:08.258723"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"tUQw_WR7kaMTEuCuWpb6Xw\":{\"token\":\"$2a$10$ui/xs4lmmNkGrhiTe.O2kO6kV5NczYtQa3LfPCx6a4JzgIZY7XcMO\",\"expiry\":1412110988}}"], ["updated_at", "2014-09-16 21:03:08.259707"]]
17327
+  (1.8ms) commit transaction
17328
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17329
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 2.4ms)
17330
+
17331
+
17332
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:03:30 -0500
17333
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17334
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17335
+  (0.1ms) begin transaction
17336
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"tUQw_WR7kaMTEuCuWpb6Xw\":{\"token\":\"$2a$10$/mkwII7h5TTw0rsOJyScYecN3xvNuNrW8YMuA/ESWDhBdqIpt1JTm\",\"expiry\":1412111010,\"last_token\":\"$2a$10$ui/xs4lmmNkGrhiTe.O2kO6kV5NczYtQa3LfPCx6a4JzgIZY7XcMO\",\"updated_at\":\"2014-09-16T16:03:30.685-05:00\"}}"], ["updated_at", "2014-09-16 21:03:30.687095"]]
17337
+  (1.7ms) commit transaction
17338
+ Completed 200 OK in 133ms (Views: 0.2ms | ActiveRecord: 2.3ms)
17339
+
17340
+
17341
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:03:32 -0500
17342
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17343
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17344
+  (0.1ms) begin transaction
17345
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871}}"], ["updated_at", "2014-09-16 21:03:32.973628"]]
17346
+  (2.0ms) commit transaction
17347
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 2.5ms)
17348
+
17349
+
17350
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:03:34 -0500
17351
+
17352
+
17353
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:03:34 -0500
17354
+
17355
+
17356
+ Started GET "/omniauth/github/callback?code=e9f2a5b7193181c9772e&state=84ed35ee2b00e8ccfea03d8ae1eb4818687d5df2331599a6" for 127.0.0.1 at 2014-09-16 16:03:34 -0500
17357
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17358
+ Parameters: {"code"=>"e9f2a5b7193181c9772e", "state"=>"84ed35ee2b00e8ccfea03d8ae1eb4818687d5df2331599a6", "provider"=>"github"}
17359
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17360
+  (0.1ms) begin transaction
17361
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:03:36.270109"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016}}"], ["updated_at", "2014-09-16 21:03:36.270954"]]
17362
+  (2.1ms) commit transaction
17363
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17364
+ Completed 200 OK in 68ms (Views: 1.6ms | ActiveRecord: 2.7ms)
17365
+
17366
+
17367
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:04:55 -0500
17368
+
17369
+
17370
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:04:55 -0500
17371
+
17372
+
17373
+ Started GET "/omniauth/github/callback?code=d088f963c3d96217b2f3&state=ac392c0740684b864af8e115b037c95cd864686eb0ae94d1" for 127.0.0.1 at 2014-09-16 16:04:55 -0500
17374
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17375
+ Parameters: {"code"=>"d088f963c3d96217b2f3", "state"=>"ac392c0740684b864af8e115b037c95cd864686eb0ae94d1", "provider"=>"github"}
17376
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17377
+  (0.1ms) begin transaction
17378
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:04:56.324635"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096}}"], ["updated_at", "2014-09-16 21:04:56.325441"]]
17379
+  (2.4ms) commit transaction
17380
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17381
+ Completed 200 OK in 68ms (Views: 1.7ms | ActiveRecord: 2.9ms)
17382
+
17383
+
17384
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:05:16 -0500
17385
+
17386
+
17387
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:05:16 -0500
17388
+
17389
+
17390
+ Started GET "/omniauth/github/callback?code=206c42ed3a4ecfe356a0&state=473bba0a8e2a331273986468bbb3c808a4feadedfbfa478d" for 127.0.0.1 at 2014-09-16 16:05:17 -0500
17391
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17392
+ Parameters: {"code"=>"206c42ed3a4ecfe356a0", "state"=>"473bba0a8e2a331273986468bbb3c808a4feadedfbfa478d", "provider"=>"github"}
17393
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17394
+  (0.1ms) begin transaction
17395
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:05:17.527292"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117}}"], ["updated_at", "2014-09-16 21:05:17.528105"]]
17396
+  (2.0ms) commit transaction
17397
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17398
+ Completed 200 OK in 69ms (Views: 1.8ms | ActiveRecord: 2.6ms)
17399
+
17400
+
17401
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:05:46 -0500
17402
+
17403
+
17404
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:05:46 -0500
17405
+
17406
+
17407
+ Started GET "/omniauth/github/callback?code=4ba33ed4fe0df4cdeb73&state=cd6a9d96e85c06f40c676f18d0f5607df9b5959922e2058e" for 127.0.0.1 at 2014-09-16 16:05:46 -0500
17408
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17409
+ Parameters: {"code"=>"4ba33ed4fe0df4cdeb73", "state"=>"cd6a9d96e85c06f40c676f18d0f5607df9b5959922e2058e", "provider"=>"github"}
17410
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17411
+  (0.1ms) begin transaction
17412
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:05:47.922247"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147}}"], ["updated_at", "2014-09-16 21:05:47.923092"]]
17413
+  (1.7ms) commit transaction
17414
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17415
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 2.2ms)
17416
+
17417
+
17418
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:07:07 -0500
17419
+
17420
+
17421
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:07:07 -0500
17422
+
17423
+
17424
+ Started GET "/omniauth/github/callback?code=55a43710c0b44fc8b872&state=32d5bb7fc271e17a0d951bb3bee2db5174cb3d14653187fe" for 127.0.0.1 at 2014-09-16 16:07:08 -0500
17425
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17426
+ Parameters: {"code"=>"55a43710c0b44fc8b872", "state"=>"32d5bb7fc271e17a0d951bb3bee2db5174cb3d14653187fe", "provider"=>"github"}
17427
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17428
+  (0.1ms) begin transaction
17429
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:07:08.809470"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:07:08.810294"]]
17430
+  (0.5ms) commit transaction
17431
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17432
+ Completed 200 OK in 66ms (Views: 1.6ms | ActiveRecord: 1.0ms)
17433
+
17434
+
17435
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2014-09-16 16:07:38 -0500
17436
+
17437
+
17438
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:07:38 -0500
17439
+
17440
+
17441
+ Started GET "/omniauth/github/callback?code=5efac8e030756d3fcfe7&state=be46ac63c3bc904bbab977d710bef4322cadbe8e6324115e" for 127.0.0.1 at 2014-09-16 16:07:38 -0500
17442
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17443
+ Parameters: {"code"=>"5efac8e030756d3fcfe7", "state"=>"be46ac63c3bc904bbab977d710bef4322cadbe8e6324115e", "provider"=>"github"}
17444
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17445
+  (0.1ms) begin transaction
17446
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:07:39.948659"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"bWtB2IMVgx9s6xVI-j8TSA\":{\"token\":\"$2a$10$w..GVMRksDgjjI74ukXJ..kEURvRbKBMWslwfOTqTWWPkeKfTxJym\",\"expiry\":1412111259}}"], ["updated_at", "2014-09-16 21:07:39.949592"]]
17447
+  (1.8ms) commit transaction
17448
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.4ms)
17449
+ Completed 200 OK in 78ms (Views: 2.2ms | ActiveRecord: 2.8ms)
17450
+
17451
+
17452
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:07:41 -0500
17453
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17454
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17455
+  (0.1ms) begin transaction
17456
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"bWtB2IMVgx9s6xVI-j8TSA\":{\"token\":\"$2a$10$96gcj4w2uUJFXBydNBP0g.rpyfL3A8XnsmSNereYFogMSuwFy8OVq\",\"expiry\":1412111261,\"last_token\":\"$2a$10$w..GVMRksDgjjI74ukXJ..kEURvRbKBMWslwfOTqTWWPkeKfTxJym\",\"updated_at\":\"2014-09-16T16:07:41.989-05:00\"}}"], ["updated_at", "2014-09-16 21:07:41.990259"]]
17457
+  (0.6ms) commit transaction
17458
+ Completed 200 OK in 126ms (Views: 0.2ms | ActiveRecord: 1.2ms)
17459
+
17460
+
17461
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:07:44 -0500
17462
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17463
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17464
+  (0.1ms) begin transaction
17465
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:07:44.523882"]]
17466
+  (2.0ms) commit transaction
17467
+ Completed 200 OK in 66ms (Views: 0.2ms | ActiveRecord: 2.5ms)
17468
+
17469
+
17470
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:07:46 -0500
17471
+
17472
+
17473
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:07:46 -0500
17474
+
17475
+
17476
+ Started GET "/omniauth/github/callback?code=fa1625cf6071f961e84c&state=3bc489a8190395a6e026801fa8b550e3ea95413de4789dde" for 127.0.0.1 at 2014-09-16 16:07:46 -0500
17477
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17478
+ Parameters: {"code"=>"fa1625cf6071f961e84c", "state"=>"3bc489a8190395a6e026801fa8b550e3ea95413de4789dde", "provider"=>"github"}
17479
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17480
+  (0.1ms) begin transaction
17481
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:07:47.078755"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"NvNFIX68wVBciQc1EIRwLA\":{\"token\":\"$2a$10$DzefM5isx3aRqCGZb3D3Wuf4lEfXoM49umNjm0/rBurkD0uNvu8NC\",\"expiry\":1412111267}}"], ["updated_at", "2014-09-16 21:07:47.079577"]]
17482
+  (1.8ms) commit transaction
17483
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17484
+ Completed 200 OK in 68ms (Views: 1.8ms | ActiveRecord: 2.4ms)
17485
+
17486
+
17487
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:07:48 -0500
17488
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17489
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17490
+  (0.1ms) begin transaction
17491
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"NvNFIX68wVBciQc1EIRwLA\":{\"token\":\"$2a$10$TudLMGTw/b8U0ug1SjKlQerU8OitRTnQb0Mq2q5ZtyAUtEG4YDJpi\",\"expiry\":1412111268,\"last_token\":\"$2a$10$DzefM5isx3aRqCGZb3D3Wuf4lEfXoM49umNjm0/rBurkD0uNvu8NC\",\"updated_at\":\"2014-09-16T16:07:48.741-05:00\"}}"], ["updated_at", "2014-09-16 21:07:48.742257"]]
17492
+  (4.9ms) commit transaction
17493
+ Completed 200 OK in 130ms (Views: 0.2ms | ActiveRecord: 5.5ms)
17494
+
17495
+
17496
+ Started PUT "/auth" for 127.0.0.1 at 2014-09-16 16:07:56 -0500
17497
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
17498
+ Parameters: {"favorite_color"=>"purple", "registration"=>{"favorite_color"=>"purple"}}
17499
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17500
+ Unpermitted parameters: registration
17501
+  (0.1ms) begin transaction
17502
+ SQL (0.3ms) UPDATE "users" SET "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["favorite_color", "purple"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"NvNFIX68wVBciQc1EIRwLA\":{\"token\":\"$2a$10$TudLMGTw/b8U0ug1SjKlQerU8OitRTnQb0Mq2q5ZtyAUtEG4YDJpi\",\"expiry\":1412111268,\"last_token\":\"$2a$10$DzefM5isx3aRqCGZb3D3Wuf4lEfXoM49umNjm0/rBurkD0uNvu8NC\",\"updated_at\":\"2014-09-16T16:07:48.741-05:00\"}}"], ["updated_at", "2014-09-16 21:07:56.563493"]]
17503
+  (1.8ms) commit transaction
17504
+  (0.1ms) begin transaction
17505
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"NvNFIX68wVBciQc1EIRwLA\":{\"token\":\"$2a$10$yBH8FUCVJB.Doun.1CEDjebzDDVJ5wqiT8RusVYA24E9EeAr0VJC2\",\"expiry\":1412111276,\"last_token\":\"$2a$10$TudLMGTw/b8U0ug1SjKlQerU8OitRTnQb0Mq2q5ZtyAUtEG4YDJpi\",\"updated_at\":\"2014-09-16T16:07:56.627-05:00\"}}"], ["updated_at", "2014-09-16 21:07:56.628246"]]
17506
+  (0.5ms) commit transaction
17507
+ Completed 200 OK in 130ms (Views: 0.3ms | ActiveRecord: 3.1ms)
17508
+
17509
+
17510
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:08:01 -0500
17511
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17512
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17513
+  (0.1ms) begin transaction
17514
+ SQL (0.8ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:08:01.339927"]]
17515
+  (1.7ms) commit transaction
17516
+ Completed 200 OK in 65ms (Views: 0.2ms | ActiveRecord: 2.7ms)
17517
+
17518
+
17519
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:08:12 -0500
17520
+
17521
+
17522
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:08:12 -0500
17523
+
17524
+
17525
+ Started GET "/omniauth/github/callback?code=9c90e99ad141bb27ada9&state=b76dbea749ae448551e1c2997ff3adcf73ddc16bcfc4928e" for 127.0.0.1 at 2014-09-16 16:08:12 -0500
17526
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17527
+ Parameters: {"code"=>"9c90e99ad141bb27ada9", "state"=>"b76dbea749ae448551e1c2997ff3adcf73ddc16bcfc4928e", "provider"=>"github"}
17528
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17529
+  (0.1ms) begin transaction
17530
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:08:14.322292"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"UW_oHjyoFCulz-BcCIR9hQ\":{\"token\":\"$2a$10$6Ba8lAoKOe9t8w7HxVpepOWP8KHmydEq3XvIpI3glPPW3uXjqv4Iy\",\"expiry\":1412111294}}"], ["updated_at", "2014-09-16 21:08:14.323122"]]
17531
+  (1.8ms) commit transaction
17532
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17533
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 2.3ms)
17534
+
17535
+
17536
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:08:16 -0500
17537
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17538
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17539
+  (0.1ms) begin transaction
17540
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"UW_oHjyoFCulz-BcCIR9hQ\":{\"token\":\"$2a$10$26vQMW/CnshyttwykHKY5.RaAE4F.pPG6ASDwrzG2n/fr3/MvjDMe\",\"expiry\":1412111297,\"last_token\":\"$2a$10$6Ba8lAoKOe9t8w7HxVpepOWP8KHmydEq3XvIpI3glPPW3uXjqv4Iy\",\"updated_at\":\"2014-09-16T16:08:17.010-05:00\"}}"], ["updated_at", "2014-09-16 21:08:17.011191"]]
17541
+  (0.6ms) commit transaction
17542
+ Completed 200 OK in 126ms (Views: 0.2ms | ActiveRecord: 1.1ms)
17543
+
17544
+
17545
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:08:19 -0500
17546
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17547
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17548
+  (0.1ms) begin transaction
17549
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:08:19.354968"]]
17550
+  (2.2ms) commit transaction
17551
+ Completed 200 OK in 66ms (Views: 0.2ms | ActiveRecord: 2.6ms)
17552
+
17553
+
17554
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:08:20 -0500
17555
+
17556
+
17557
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:08:20 -0500
17558
+
17559
+
17560
+ Started GET "/omniauth/github/callback?code=1fc2323dcc5c60322797&state=f52f64823068ded63383712736be5fa6e7dc6f2d213ac7d6" for 127.0.0.1 at 2014-09-16 16:08:20 -0500
17561
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17562
+ Parameters: {"code"=>"1fc2323dcc5c60322797", "state"=>"f52f64823068ded63383712736be5fa6e7dc6f2d213ac7d6", "provider"=>"github"}
17563
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17564
+  (0.1ms) begin transaction
17565
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:08:21.007136"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"-3RS3zLNLoSBrVAjESbCqg\":{\"token\":\"$2a$10$R87y50qXITIkmMDz3RLzmeVGApGZnTSQdw1LA0FHfMp6U5hPJvGOy\",\"expiry\":1412111301}}"], ["updated_at", "2014-09-16 21:08:21.007955"]]
17566
+  (1.9ms) commit transaction
17567
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17568
+ Completed 200 OK in 70ms (Views: 1.7ms | ActiveRecord: 2.5ms)
17569
+
17570
+
17571
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:08:23 -0500
17572
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17573
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17574
+  (0.1ms) begin transaction
17575
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"-3RS3zLNLoSBrVAjESbCqg\":{\"token\":\"$2a$10$5k/RTgOQol/s.YiXVBnLoeIojxZ7GYy./oLsQKWBrLT8aJmdlVr2K\",\"expiry\":1412111303,\"last_token\":\"$2a$10$R87y50qXITIkmMDz3RLzmeVGApGZnTSQdw1LA0FHfMp6U5hPJvGOy\",\"updated_at\":\"2014-09-16T16:08:23.610-05:00\"}}"], ["updated_at", "2014-09-16 21:08:23.611352"]]
17576
+  (1.8ms) commit transaction
17577
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 2.4ms)
17578
+
17579
+
17580
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:16:38 -0500
17581
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17582
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17583
+  (0.1ms) begin transaction
17584
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"-3RS3zLNLoSBrVAjESbCqg\":{\"token\":\"$2a$10$BOn2yBr/5lznuG44Qg0BleJTCph8vYTJc8n5yX0NhJIof2uNo04Im\",\"expiry\":1412111798,\"last_token\":\"$2a$10$5k/RTgOQol/s.YiXVBnLoeIojxZ7GYy./oLsQKWBrLT8aJmdlVr2K\",\"updated_at\":\"2014-09-16T16:16:38.674-05:00\"}}"], ["updated_at", "2014-09-16 21:16:38.675108"]]
17585
+  (1.8ms) commit transaction
17586
+ Completed 200 OK in 127ms (Views: 0.2ms | ActiveRecord: 2.4ms)
17587
+
17588
+
17589
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:16:42 -0500
17590
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17591
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17592
+  (0.1ms) begin transaction
17593
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:16:42.309884"]]
17594
+  (1.9ms) commit transaction
17595
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 2.4ms)
17596
+
17597
+
17598
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 16:16:51 -0500
17599
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
17600
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
17601
+ Unpermitted parameters: session
17602
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
17603
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
17604
+
17605
+
17606
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 16:17:28 -0500
17607
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
17608
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
17609
+ Unpermitted parameters: session
17610
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
17611
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
17612
+
17613
+
17614
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 16:18:16 -0500
17615
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
17616
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
17617
+ Unpermitted parameters: session
17618
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
17619
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.1ms)
17620
+
17621
+
17622
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 16:20:17 -0500
17623
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
17624
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
17625
+ Unpermitted parameters: session
17626
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
17627
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.1ms)
17628
+
17629
+
17630
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2014-09-16 16:20:25 -0500
17631
+
17632
+
17633
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2014-09-16 16:20:25 -0500
17634
+
17635
+
17636
+ Started GET "/omniauth/github/callback?code=4c5488619a4572ea7937&state=0660962abc06fdc662980baa923fd81ef1e598a09345fc90" for 127.0.0.1 at 2014-09-16 16:20:25 -0500
17637
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17638
+ Parameters: {"code"=>"4c5488619a4572ea7937", "state"=>"0660962abc06fdc662980baa923fd81ef1e598a09345fc90", "provider"=>"github"}
17639
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17640
+  (0.1ms) begin transaction
17641
+ SQL (0.5ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:20:27.122328"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"SSn-epv6nUINEC3bANPpJw\":{\"token\":\"$2a$10$N4EWTpYr/hwItJqwW1N8IOgj9uyEETpDtHgENRMh2foMgOMgRNEK6\",\"expiry\":1412112027}}"], ["updated_at", "2014-09-16 21:20:27.123199"]]
17642
+  (2.0ms) commit transaction
17643
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17644
+ Completed 200 OK in 69ms (Views: 1.7ms | ActiveRecord: 2.7ms)
17645
+
17646
+
17647
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:20:30 -0500
17648
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17649
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17650
+  (0.1ms) begin transaction
17651
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"SSn-epv6nUINEC3bANPpJw\":{\"token\":\"$2a$10$1v6hv39VPURc76MdkRac3.P1gsMQBCncm3yFKSr24lyhwy4KbL.Dm\",\"expiry\":1412112030,\"last_token\":\"$2a$10$N4EWTpYr/hwItJqwW1N8IOgj9uyEETpDtHgENRMh2foMgOMgRNEK6\",\"updated_at\":\"2014-09-16T16:20:30.155-05:00\"}}"], ["updated_at", "2014-09-16 21:20:30.156806"]]
17652
+  (0.9ms) commit transaction
17653
+ Completed 200 OK in 126ms (Views: 0.2ms | ActiveRecord: 1.5ms)
17654
+
17655
+
17656
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:20:34 -0500
17657
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17658
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17659
+  (0.1ms) begin transaction
17660
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:20:34.942449"]]
17661
+  (0.5ms) commit transaction
17662
+ Completed 200 OK in 65ms (Views: 0.1ms | ActiveRecord: 1.0ms)
17663
+
17664
+
17665
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=purple" for 127.0.0.1 at 2014-09-16 16:20:41 -0500
17666
+
17667
+
17668
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&favorite_color=purple&resource_class=User" for 127.0.0.1 at 2014-09-16 16:20:41 -0500
17669
+
17670
+
17671
+ Started GET "/omniauth/github/callback?code=d2fedd925a0aaad60fd9&state=3f2b28a55cd9c2dff18488e6af0e98cc358ce1003dfc88cc" for 127.0.0.1 at 2014-09-16 16:20:42 -0500
17672
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17673
+ Parameters: {"code"=>"d2fedd925a0aaad60fd9", "state"=>"3f2b28a55cd9c2dff18488e6af0e98cc358ce1003dfc88cc", "provider"=>"github"}
17674
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17675
+  (0.1ms) begin transaction
17676
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["confirmed_at", "2014-09-16 21:20:42.715556"], ["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"S2iulLxmM6LDMwwnLXfMMA\":{\"token\":\"$2a$10$eEvLv9JlYaHqnzgYga9OPes.LHFbH1OEZz7On/6A9mEyLmZZ6BjH6\",\"expiry\":1412112042}}"], ["updated_at", "2014-09-16 21:20:42.716358"]]
17677
+  (2.0ms) commit transaction
17678
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.3ms)
17679
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 2.5ms)
17680
+
17681
+
17682
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:20:45 -0500
17683
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17684
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17685
+  (0.1ms) begin transaction
17686
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228},\"S2iulLxmM6LDMwwnLXfMMA\":{\"token\":\"$2a$10$.pHeT3pxqxU4GRT78gMT2eyJlnBLszwMAP5irsmmHGdAWaALVk6w6\",\"expiry\":1412112045,\"last_token\":\"$2a$10$eEvLv9JlYaHqnzgYga9OPes.LHFbH1OEZz7On/6A9mEyLmZZ6BjH6\",\"updated_at\":\"2014-09-16T16:20:45.751-05:00\"}}"], ["updated_at", "2014-09-16 21:20:45.752565"]]
17687
+  (0.7ms) commit transaction
17688
+ Completed 200 OK in 128ms (Views: 0.2ms | ActiveRecord: 1.3ms)
17689
+
17690
+
17691
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:20:47 -0500
17692
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17693
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17694
+  (0.1ms) begin transaction
17695
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 21 [["tokens", "{\"uUOVaUbPeuxnYyM_ObaH4A\":{\"token\":\"$2a$10$VNryBu6L0yjadoBdQztzMOzQD1KLum9aOgZgSmfQgENzwKEXRfrQq\",\"expiry\":1412032284},\"efJ0QekWCcH1EOYbfS9P0A\":{\"token\":\"$2a$10$ZOhEBvy90aaAeGz1oTAH.uFr6eEmpbQlbhHVj8kJoDOju2ZhF2Rfy\",\"expiry\":1412110575,\"last_token\":\"$2a$10$LNd6RLp6dK86a4pEhRbDEe/slYr/ilfUJW.WOMYy2ccurVqfJjU5i\",\"updated_at\":\"2014-09-16T15:56:15.265-05:00\"},\"nN_OsXtDS0no67hSKol3-g\":{\"token\":\"$2a$10$hlYCnTi2gzT4PDzFcNu1eesQvaDXb6b9Xy68hguKroJ68jMtrgmru\",\"expiry\":1412110600},\"89ODMOhJ3yciLXrzJGZzsA\":{\"token\":\"$2a$10$dtS/xWoWZbOhppTZ9RLYHOvIg36Qht.nOC1XMauzCB01AFTWPKKUi\",\"expiry\":1412110622},\"pjyZpmpNfDzvatBhfW8mMg\":{\"token\":\"$2a$10$WOu1V46OyJhHupDz7NoS6.cKlngx7Xfr/yUqa59FNDpVcNnHyL9Xi\",\"expiry\":1412110654},\"EDQEBIPBbzrR1krGBXkaCw\":{\"token\":\"$2a$10$vsOvS./PB9m3zSpYPd4drOKLTdZRYEb923Klr3Txey3hzjmcEe0He\",\"expiry\":1412110692},\"jUFIUwb8N1YAx9AWc_bWLA\":{\"token\":\"$2a$10$O2fJZmB/vcQHlAahaUehOOpmagYbe8U/NcJbZnWwSNenJz4RjfEMu\",\"expiry\":1412110856},\"LGMhb9DE-e_-NjwVzeLdBg\":{\"token\":\"$2a$10$.8m1WSrdjsP.BroYq/L2fuRU8N5MyQEgJAwNoiU2n0ZAwhuauOLL2\",\"expiry\":1412110871},\"IZ9nVGZyVJRnB6SlY2osgw\":{\"token\":\"$2a$10$/mqueCBJUqAwRJ3/DK77z.KcuLfF9H2EB8scPChU1ubcm49EHxive\",\"expiry\":1412111016},\"HDbA1MY6CQkVPtZ7Ilqt5Q\":{\"token\":\"$2a$10$UY6q4kBK2JeiK8.zBMiWDeKxSFtCUu9ci4dgIAKWyfPIcEvHsaYyy\",\"expiry\":1412111096},\"wtxWLGu0gWuT8CICc_IMAw\":{\"token\":\"$2a$10$yA3aq79t3ENcnlyoQ.AnTeuAlNOYYaQQ8lhS/JCk2rzplZlsSIfqu\",\"expiry\":1412111117},\"DCvOewYG_dtSbxHLSNiuoA\":{\"token\":\"$2a$10$Gy7I9Flt4GPSPE7x0Gx9tuSVosAQpRA6CQQRD/GC3VHzgBsnQyCom\",\"expiry\":1412111147},\"kjuPAOkxPGyhygz9ryrLmw\":{\"token\":\"$2a$10$Hwi4/XS.N1GO/VLxmqNo8ecSDhm7yNQU96ypA4qhmmd4NEDwG7bG.\",\"expiry\":1412111228}}"], ["updated_at", "2014-09-16 21:20:47.710954"]]
17696
+  (1.9ms) commit transaction
17697
+ Completed 200 OK in 66ms (Views: 0.1ms | ActiveRecord: 2.3ms)
17698
+
17699
+
17700
+ Started POST "/auth" for 127.0.0.1 at 2014-09-16 16:21:01 -0500
17701
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17702
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"beige blood", "confirm_success_url"=>"http://ng-token-auth.dev/#/?client_id=S2iulLxmM6LDMwwnLXfMMA&token=A_q9UinOQiP3NwGD79xGtA&uid=468037", "config_name"=>"default", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"beige blood", "confirm_success_url"=>"http://ng-token-auth.dev/#/?client_id=S2iulLxmM6LDMwwnLXfMMA&token=A_q9UinOQiP3NwGD79xGtA&uid=468037", "config_name"=>"default"}}
17703
+ Unpermitted parameters: config_name, registration
17704
+ Unpermitted parameters: config_name, registration
17705
+  (0.1ms) begin transaction
17706
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test@test.com'
17707
+  (0.0ms) rollback transaction
17708
+ Completed 403 Forbidden in 65ms (Views: 0.4ms | ActiveRecord: 0.2ms)
17709
+
17710
+
17711
+ Started POST "/auth" for 127.0.0.1 at 2014-09-16 16:21:09 -0500
17712
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17713
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"purple", "confirm_success_url"=>"http://ng-token-auth.dev/#/?client_id=S2iulLxmM6LDMwwnLXfMMA&token=A_q9UinOQiP3NwGD79xGtA&uid=468037", "config_name"=>"default", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"purple", "confirm_success_url"=>"http://ng-token-auth.dev/#/?client_id=S2iulLxmM6LDMwwnLXfMMA&token=A_q9UinOQiP3NwGD79xGtA&uid=468037", "config_name"=>"default"}}
17714
+ Unpermitted parameters: config_name, registration
17715
+ Unpermitted parameters: config_name, registration
17716
+  (0.1ms) begin transaction
17717
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test@test.com'
17718
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '1fcc730fc13bd53e7e262f5012e4ed2d2affa862bfc5a2daed25fd79dfe4007e' ORDER BY "users"."id" ASC LIMIT 1
17719
+ Binary data inserted for `string` type on column `confirmation_token`
17720
+ Binary data inserted for `string` type on column `encrypted_password`
17721
+ SQL (0.3ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "favorite_color", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/#/?client_id=S2iulLxmM6LDMwwnLXfMMA&token=A_q9UinOQiP3NwGD79xGtA&uid=468037"], ["confirmation_sent_at", "2014-09-16 21:21:09.277575"], ["confirmation_token", "1fcc730fc13bd53e7e262f5012e4ed2d2affa862bfc5a2daed25fd79dfe4007e"], ["created_at", "2014-09-16 21:21:09.087745"], ["email", "test@test.com"], ["encrypted_password", "$2a$10$JwcztqnJXwLFFcFaD7rIjeW.8PzegQYJs935J/46xDJAwOHWYodmC"], ["favorite_color", "purple"], ["provider", "email"], ["tokens", "{}"], ["uid", "test@test.com"], ["updated_at", "2014-09-16 21:21:09.087745"]]
17722
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (1.0ms)
17723
+
17724
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 249.8ms
17725
+
17726
+ Sent mail to test@test.com (15.2ms)
17727
+ Date: Tue, 16 Sep 2014 16:21:09 -0500
17728
+ From: please-change-me-at-config-initializers-devise@example.com
17729
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17730
+ To: test@test.com
17731
+ Message-ID: <5418a9c583d73_4b373fe0fc465bf02591b@tests-MacBook-Pro-2.local.mail>
17732
+ Subject: Confirmation instructions
17733
+ Mime-Version: 1.0
17734
+ Content-Type: text/html;
17735
+ charset=UTF-8
17736
+ Content-Transfer-Encoding: 7bit
17737
+
17738
+ <p>Welcome test@test.com!</p>
17739
+
17740
+ <p>You can confirm your account email through the link below:</p>
17741
+
17742
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=AxmTUngJ32ci7V2U2uRi">Confirm my account</a></p>
17743
+
17744
+  (0.7ms) commit transaction
17745
+ Completed 200 OK in 527ms (Views: 0.3ms | ActiveRecord: 1.3ms)
17746
+
17747
+
17748
+ Started GET "/auth/confirmation?confirmation_token=2hBcpfFRGLa1MfTaHWMy" for 127.0.0.1 at 2014-09-16 16:48:19 -0500
17749
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
17750
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
17751
+ Parameters: {"confirmation_token"=>"2hBcpfFRGLa1MfTaHWMy"}
17752
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'eab884aeadaae21355d6b0f0234470eca02cb8f7e704adcd8c13b2bfb4e70d0a' ORDER BY "users"."id" ASC LIMIT 1
17753
+ Completed 404 Not Found in 551ms
17754
+
17755
+ ActionController::RoutingError (Not Found):
17756
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/confirmations_controller.rb:28:in `show'
17757
+ actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
17758
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
17759
+ actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
17760
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
17761
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
17762
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
17763
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17764
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `call'
17765
+ activesupport (4.1.6) lib/active_support/callbacks.rb:229:in `block in halting'
17766
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
17767
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
17768
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
17769
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
17770
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
17771
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
17772
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
17773
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
17774
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
17775
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
17776
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17777
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
17778
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
17779
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
17780
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
17781
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
17782
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
17783
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
17784
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
17785
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
17786
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
17787
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
17788
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
17789
+ actionpack (4.1.6) lib/action_dispatch/routing/mapper.rb:45:in `call'
17790
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
17791
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
17792
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
17793
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
17794
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
17795
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
17796
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
17797
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
17798
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
17799
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
17800
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
17801
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
17802
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
17803
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
17804
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
17805
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
17806
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
17807
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
17808
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
17809
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
17810
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
17811
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
17812
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
17813
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
17814
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
17815
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
17816
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
17817
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
17818
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
17819
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17820
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
17821
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
17822
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
17823
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
17824
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
17825
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
17826
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17827
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
17828
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
17829
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
17830
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
17831
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17832
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
17833
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
17834
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
17835
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
17836
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
17837
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
17838
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
17839
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
17840
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
17841
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
17842
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
17843
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
17844
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
17845
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
17846
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
17847
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
17848
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
17849
+
17850
+
17851
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
17852
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.0ms)
17853
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
17854
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (70.8ms)
17855
+
17856
+
17857
+ Started POST "/auth" for 127.0.0.1 at 2014-09-16 16:49:19 -0500
17858
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17859
+ Parameters: {"email"=>"t2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"argyle", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"t2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"argyle", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
17860
+ Unpermitted parameters: config_name, registration
17861
+ Unpermitted parameters: config_name, registration
17862
+  (0.1ms) begin transaction
17863
+  (0.7ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 't2@test.com'
17864
+  (0.1ms) rollback transaction
17865
+ Completed 403 Forbidden in 67ms (Views: 0.5ms | ActiveRecord: 0.9ms)
17866
+
17867
+
17868
+ Started POST "/auth" for 127.0.0.1 at 2014-09-16 16:49:29 -0500
17869
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17870
+ Parameters: {"email"=>"t2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"pearl", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"t2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"pearl", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
17871
+ Unpermitted parameters: config_name, registration
17872
+ Unpermitted parameters: config_name, registration
17873
+  (0.1ms) begin transaction
17874
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 't2@test.com'
17875
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '234c862091b649f188c4960b555c37cbc86a7f3bcccb33510f00cf7406f2eae4' ORDER BY "users"."id" ASC LIMIT 1
17876
+ Binary data inserted for `string` type on column `confirmation_token`
17877
+ Binary data inserted for `string` type on column `encrypted_password`
17878
+ SQL (1.4ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "favorite_color", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-09-16 21:49:29.350986"], ["confirmation_token", "234c862091b649f188c4960b555c37cbc86a7f3bcccb33510f00cf7406f2eae4"], ["created_at", "2014-09-16 21:49:29.350287"], ["email", "t2@test.com"], ["encrypted_password", "$2a$10$MsMhbGjqeB/VkOQYyPU3q.cVC3LO7O90uk6591J8kEVanvdZpKvAe"], ["favorite_color", "pearl"], ["provider", "email"], ["tokens", "{}"], ["uid", "t2@test.com"], ["updated_at", "2014-09-16 21:49:29.350287"]]
17879
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (0.7ms)
17880
+
17881
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 8.2ms
17882
+
17883
+ Sent mail to t2@test.com (15.0ms)
17884
+ Date: Tue, 16 Sep 2014 16:49:29 -0500
17885
+ From: please-change-me-at-config-initializers-devise@example.com
17886
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17887
+ To: t2@test.com
17888
+ Message-ID: <5418b0695c738_ed243fc00d465bec1066d@tests-MacBook-Pro-2.local.mail>
17889
+ Subject: Confirmation instructions
17890
+ Mime-Version: 1.0
17891
+ Content-Type: text/html;
17892
+ charset=UTF-8
17893
+ Content-Transfer-Encoding: 7bit
17894
+
17895
+ <p>Welcome t2@test.com!</p>
17896
+
17897
+ <p>You can confirm your account email through the link below:</p>
17898
+
17899
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?confirmation_token=aPVzQh86FxR1zMYh_ZNg">Confirm my account</a></p>
17900
+
17901
+  (0.6ms) commit transaction
17902
+ Completed 200 OK in 103ms (Views: 0.3ms | ActiveRecord: 2.3ms)
17903
+
17904
+
17905
+ Started GET "/auth/confirmation?confirmation_token=aPVzQh86FxR1zMYh_ZNg" for 127.0.0.1 at 2014-09-16 16:49:43 -0500
17906
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
17907
+ Parameters: {"confirmation_token"=>"aPVzQh86FxR1zMYh_ZNg"}
17908
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '234c862091b649f188c4960b555c37cbc86a7f3bcccb33510f00cf7406f2eae4' ORDER BY "users"."id" ASC LIMIT 1
17909
+  (0.0ms) begin transaction
17910
+ SQL (0.2ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 24 [["confirmation_token", nil], ["confirmed_at", "2014-09-16 21:49:43.309083"], ["tokens", "{}"], ["updated_at", "2014-09-16 21:49:43.309331"]]
17911
+  (5.4ms) commit transaction
17912
+  (0.1ms) begin transaction
17913
+ SQL (0.3ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 24 [["confirmation_token", "aPVzQh86FxR1zMYh_ZNg"], ["tokens", "{\"zADCgyHhk-t_wNJP1dbBIQ\":{\"token\":\"$2a$10$LztI8XAgCVuRRgTWAzd3Q.GkT1HNR/8IviSB8WH3iEsFZVx/Mm.M.\",\"expiry\":1412113783}}"], ["updated_at", "2014-09-16 21:49:43.377369"]]
17914
+  (0.7ms) commit transaction
17915
+ Redirected to http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com
17916
+ Completed 302 Found in 72ms (ActiveRecord: 6.9ms)
17917
+
17918
+
17919
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:49:43 -0500
17920
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17921
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 't2@test.com' LIMIT 1
17922
+  (0.1ms) begin transaction
17923
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 24 [["tokens", "{\"zADCgyHhk-t_wNJP1dbBIQ\":{\"token\":\"$2a$10$98bVpQ0BRY.vKZdIV2VyPeCPq3lKnM3NTpjO8jJnxQtAseKpVJk86\",\"expiry\":1412113784,\"last_token\":\"$2a$10$LztI8XAgCVuRRgTWAzd3Q.GkT1HNR/8IviSB8WH3iEsFZVx/Mm.M.\",\"updated_at\":\"2014-09-16T16:49:44.035-05:00\"}}"], ["updated_at", "2014-09-16 21:49:44.036063"]]
17924
+  (0.5ms) commit transaction
17925
+ Completed 200 OK in 134ms (Views: 0.2ms | ActiveRecord: 1.1ms)
17926
+
17927
+
17928
+ Started PUT "/auth" for 127.0.0.1 at 2014-09-16 16:50:01 -0500
17929
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
17930
+ Parameters: {"favorite_color"=>"purple", "registration"=>{"favorite_color"=>"purple"}}
17931
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 't2@test.com' LIMIT 1
17932
+ Unpermitted parameters: registration
17933
+  (0.1ms) begin transaction
17934
+ SQL (0.3ms) UPDATE "users" SET "favorite_color" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 24 [["favorite_color", "purple"], ["tokens", "{\"zADCgyHhk-t_wNJP1dbBIQ\":{\"token\":\"$2a$10$98bVpQ0BRY.vKZdIV2VyPeCPq3lKnM3NTpjO8jJnxQtAseKpVJk86\",\"expiry\":1412113784,\"last_token\":\"$2a$10$LztI8XAgCVuRRgTWAzd3Q.GkT1HNR/8IviSB8WH3iEsFZVx/Mm.M.\",\"updated_at\":\"2014-09-16T16:49:44.035-05:00\"}}"], ["updated_at", "2014-09-16 21:50:01.841672"]]
17935
+  (2.5ms) commit transaction
17936
+  (0.1ms) begin transaction
17937
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 24 [["tokens", "{\"zADCgyHhk-t_wNJP1dbBIQ\":{\"token\":\"$2a$10$qNMf5VdCjttzHBz8xEVzt.r0FVKvMMXMujAGA9bxCrpM5g4SHLEk2\",\"expiry\":1412113801,\"last_token\":\"$2a$10$98bVpQ0BRY.vKZdIV2VyPeCPq3lKnM3NTpjO8jJnxQtAseKpVJk86\",\"updated_at\":\"2014-09-16T16:50:01.905-05:00\"}}"], ["updated_at", "2014-09-16 21:50:01.906556"]]
17938
+  (0.7ms) commit transaction
17939
+ Completed 200 OK in 130ms (Views: 0.3ms | ActiveRecord: 4.1ms)
17940
+
17941
+
17942
+ Started DELETE "/auth" for 127.0.0.1 at 2014-09-16 16:50:07 -0500
17943
+ Processing by DeviseTokenAuth::RegistrationsController#destroy as HTML
17944
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 't2@test.com' LIMIT 1
17945
+  (0.1ms) begin transaction
17946
+ SQL (0.4ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 24]]
17947
+  (0.6ms) commit transaction
17948
+ Completed 200 OK in 63ms (Views: 0.2ms | ActiveRecord: 1.2ms)
17949
+
17950
+
17951
+ Started POST "/auth/password" for 127.0.0.1 at 2014-09-16 16:50:15 -0500
17952
+ Processing by DeviseTokenAuth::PasswordsController#create as HTML
17953
+ Parameters: {"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com", "password"=>{"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com"}}
17954
+ Unpermitted parameters: password
17955
+ Unpermitted parameters: password
17956
+ Unpermitted parameters: password
17957
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' AND "users"."provider" = 'email' ORDER BY "users"."id" ASC LIMIT 1
17958
+ Unpermitted parameters: password
17959
+  (0.0ms) begin transaction
17960
+ SQL (0.3ms) UPDATE "users" SET "reset_password_redirect_url" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_redirect_url", "http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com"], ["tokens", "{}"], ["updated_at", "2014-09-16 21:50:15.423929"]]
17961
+  (0.6ms) commit transaction
17962
+ Unpermitted parameters: password
17963
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' ORDER BY "users"."id" ASC LIMIT 1
17964
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'cc0264fd30164c0906cfb795b3174fc6c86bb0989f90c74df1d92ee0c1c369c4' ORDER BY "users"."id" ASC LIMIT 1
17965
+  (0.0ms) begin transaction
17966
+ Binary data inserted for `string` type on column `reset_password_token`
17967
+ SQL (0.3ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_sent_at", "2014-09-16 21:50:15.621132"], ["reset_password_token", "cc0264fd30164c0906cfb795b3174fc6c86bb0989f90c74df1d92ee0c1c369c4"], ["tokens", "{}"], ["updated_at", "2014-09-16 21:50:15.621405"]]
17968
+  (1.7ms) commit transaction
17969
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/reset_password_instructions.html.erb (0.8ms)
17970
+
17971
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 7.7ms
17972
+
17973
+ Sent mail to test@test.com (9.5ms)
17974
+ Date: Tue, 16 Sep 2014 16:50:15 -0500
17975
+ From: please-change-me-at-config-initializers-devise@example.com
17976
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17977
+ To: test@test.com
17978
+ Message-ID: <5418b0979a932_ed243fc00d465bec1078d@tests-MacBook-Pro-2.local.mail>
17979
+ Subject: Reset password instructions
17980
+ Mime-Version: 1.0
17981
+ Content-Type: text/html;
17982
+ charset=UTF-8
17983
+ Content-Transfer-Encoding: 7bit
17984
+
17985
+ <p>Hello test@test.com!</p>
17986
+
17987
+ <p>Someone has requested a link to change your password. You can do this through the link below.</p>
17988
+
17989
+ <p><a href="http://devise-token-auth.dev/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%3Faccount_confirmation_success%3Dtrue%26client_id%3DzADCgyHhk-t_wNJP1dbBIQ%26expiry%3D1412113783%26token%3DM-sPhc7kzFcYn1VnL9dOYg%26uid%3Dt2%2540test.com&amp;reset_password_token=CZyzhH2Fu3q1xvzPN3yr">Change my password</a></p>
17990
+
17991
+ <p>If you didn't request this, please ignore this email.</p>
17992
+ <p>Your password won't change until you access the link above and create a new one.</p>
17993
+
17994
+ Completed 200 OK in 221ms (Views: 0.3ms | ActiveRecord: 3.6ms)
17995
+
17996
+
17997
+ Started GET "/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%3Faccount_confirmation_success%3Dtrue%26client_id%3DzADCgyHhk-t_wNJP1dbBIQ%26expiry%3D1412113783%26token%3DM-sPhc7kzFcYn1VnL9dOYg%26uid%3Dt2%2540test.com&reset_password_token=[FILTERED]" for 127.0.0.1 at 2014-09-16 16:50:31 -0500
17998
+ Processing by DeviseTokenAuth::PasswordsController#edit as HTML
17999
+ Parameters: {"redirect_url"=>"http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com", "reset_password_token"=>"[FILTERED]"}
18000
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'cc0264fd30164c0906cfb795b3174fc6c86bb0989f90c74df1d92ee0c1c369c4' ORDER BY "users"."id" ASC LIMIT 1
18001
+  (0.0ms) begin transaction
18002
+ SQL (0.2ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_sent_at", nil], ["reset_password_token", nil], ["tokens", "{}"], ["updated_at", "2014-09-16 21:50:31.564177"]]
18003
+  (4.8ms) commit transaction
18004
+  (0.1ms) begin transaction
18005
+ SQL (0.3ms) UPDATE "users" SET "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_token", "CZyzhH2Fu3q1xvzPN3yr"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:50:31.631193"]]
18006
+  (0.9ms) commit transaction
18007
+ Redirected to http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com?client_id=rQBYW4oeta6IXM6_ey_zmg&expiry=1412113831&reset_password=true&token=oFCooyinUoLmNJE4l3XHiQ&uid=test%40test.com
18008
+ Completed 302 Found in 72ms (ActiveRecord: 6.6ms)
18009
+
18010
+
18011
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:50:31 -0500
18012
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
18013
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '["t2@test.com?client_id","test@test.com"]' LIMIT 1
18014
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
18015
+
18016
+
18017
+ Started GET "/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%3Faccount_confirmation_success%3Dtrue%26client_id%3DzADCgyHhk-t_wNJP1dbBIQ%26expiry%3D1412113783%26token%3DM-sPhc7kzFcYn1VnL9dOYg%26uid%3Dt2%2540test.com&reset_password_token=[FILTERED]" for 127.0.0.1 at 2014-09-16 16:50:53 -0500
18018
+ Processing by DeviseTokenAuth::PasswordsController#edit as HTML
18019
+ Parameters: {"redirect_url"=>"http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=zADCgyHhk-t_wNJP1dbBIQ&expiry=1412113783&token=M-sPhc7kzFcYn1VnL9dOYg&uid=t2%40test.com", "reset_password_token"=>"[FILTERED]"}
18020
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'cc0264fd30164c0906cfb795b3174fc6c86bb0989f90c74df1d92ee0c1c369c4' ORDER BY "users"."id" ASC LIMIT 1
18021
+ Completed 404 Not Found in 2ms
18022
+
18023
+ ActionController::RoutingError (Not Found):
18024
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/passwords_controller.rb:91:in `edit'
18025
+ actionpack (4.1.6) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
18026
+ actionpack (4.1.6) lib/abstract_controller/base.rb:189:in `process_action'
18027
+ actionpack (4.1.6) lib/action_controller/metal/rendering.rb:10:in `process_action'
18028
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
18029
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
18030
+ activesupport (4.1.6) lib/active_support/callbacks.rb:113:in `call'
18031
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
18032
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
18033
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
18034
+ activesupport (4.1.6) lib/active_support/callbacks.rb:215:in `call'
18035
+ activesupport (4.1.6) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
18036
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `call'
18037
+ activesupport (4.1.6) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
18038
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `call'
18039
+ activesupport (4.1.6) lib/active_support/callbacks.rb:166:in `block in halting'
18040
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `call'
18041
+ activesupport (4.1.6) lib/active_support/callbacks.rb:86:in `run_callbacks'
18042
+ actionpack (4.1.6) lib/abstract_controller/callbacks.rb:19:in `process_action'
18043
+ actionpack (4.1.6) lib/action_controller/metal/rescue.rb:29:in `process_action'
18044
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
18045
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `block in instrument'
18046
+ activesupport (4.1.6) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
18047
+ activesupport (4.1.6) lib/active_support/notifications.rb:159:in `instrument'
18048
+ actionpack (4.1.6) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
18049
+ actionpack (4.1.6) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
18050
+ activerecord (4.1.6) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
18051
+ actionpack (4.1.6) lib/abstract_controller/base.rb:136:in `process'
18052
+ actionview (4.1.6) lib/action_view/rendering.rb:30:in `process'
18053
+ actionpack (4.1.6) lib/action_controller/metal.rb:196:in `dispatch'
18054
+ actionpack (4.1.6) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
18055
+ actionpack (4.1.6) lib/action_controller/metal.rb:232:in `block in action'
18056
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `call'
18057
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
18058
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:50:in `call'
18059
+ actionpack (4.1.6) lib/action_dispatch/routing/mapper.rb:45:in `call'
18060
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:73:in `block in call'
18061
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `each'
18062
+ actionpack (4.1.6) lib/action_dispatch/journey/router.rb:59:in `call'
18063
+ actionpack (4.1.6) lib/action_dispatch/routing/route_set.rb:678:in `call'
18064
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
18065
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
18066
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
18067
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
18068
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
18069
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
18070
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
18071
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
18072
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
18073
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
18074
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
18075
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
18076
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
18077
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
18078
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
18079
+ actionpack (4.1.6) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
18080
+ actionpack (4.1.6) lib/action_dispatch/middleware/flash.rb:254:in `call'
18081
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
18082
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
18083
+ actionpack (4.1.6) lib/action_dispatch/middleware/cookies.rb:560:in `call'
18084
+ activerecord (4.1.6) lib/active_record/query_cache.rb:36:in `call'
18085
+ activerecord (4.1.6) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
18086
+ activerecord (4.1.6) lib/active_record/migration.rb:380:in `call'
18087
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
18088
+ activesupport (4.1.6) lib/active_support/callbacks.rb:82:in `run_callbacks'
18089
+ actionpack (4.1.6) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
18090
+ actionpack (4.1.6) lib/action_dispatch/middleware/reloader.rb:73:in `call'
18091
+ actionpack (4.1.6) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
18092
+ actionpack (4.1.6) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
18093
+ actionpack (4.1.6) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
18094
+ railties (4.1.6) lib/rails/rack/logger.rb:38:in `call_app'
18095
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `block in call'
18096
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `block in tagged'
18097
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:26:in `tagged'
18098
+ activesupport (4.1.6) lib/active_support/tagged_logging.rb:68:in `tagged'
18099
+ railties (4.1.6) lib/rails/rack/logger.rb:20:in `call'
18100
+ actionpack (4.1.6) lib/action_dispatch/middleware/request_id.rb:21:in `call'
18101
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
18102
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
18103
+ activesupport (4.1.6) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
18104
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
18105
+ actionpack (4.1.6) lib/action_dispatch/middleware/static.rb:64:in `call'
18106
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
18107
+ railties (4.1.6) lib/rails/engine.rb:514:in `call'
18108
+ railties (4.1.6) lib/rails/application.rb:144:in `call'
18109
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
18110
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
18111
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
18112
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
18113
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
18114
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
18115
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
18116
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
18117
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
18118
+ /Users/lynn/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
18119
+
18120
+
18121
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
18122
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_route.html.erb (3.2ms)
18123
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
18124
+ Rendered /opt/rubies/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.1.6/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (57.9ms)
18125
+
18126
+
18127
+ Started POST "/auth/password" for 127.0.0.1 at 2014-09-16 16:51:12 -0500
18128
+ Processing by DeviseTokenAuth::PasswordsController#create as HTML
18129
+ Parameters: {"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/", "password"=>{"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/"}}
18130
+ Unpermitted parameters: password
18131
+ Unpermitted parameters: password
18132
+ Unpermitted parameters: password
18133
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' AND "users"."provider" = 'email' ORDER BY "users"."id" ASC LIMIT 1
18134
+ Unpermitted parameters: password
18135
+  (0.0ms) begin transaction
18136
+ SQL (0.6ms) UPDATE "users" SET "reset_password_redirect_url" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_redirect_url", "http://ng-token-auth.dev/"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:51:12.881356"]]
18137
+  (6.2ms) commit transaction
18138
+ Unpermitted parameters: password
18139
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' ORDER BY "users"."id" ASC LIMIT 1
18140
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'c623a95f389966bf01ca5b9945346b55b4f591eca05b883fccc15cab30aa7292' ORDER BY "users"."id" ASC LIMIT 1
18141
+  (0.0ms) begin transaction
18142
+ Binary data inserted for `string` type on column `reset_password_token`
18143
+ SQL (0.2ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_sent_at", "2014-09-16 21:51:12.890346"], ["reset_password_token", "c623a95f389966bf01ca5b9945346b55b4f591eca05b883fccc15cab30aa7292"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:51:12.890580"]]
18144
+  (0.5ms) commit transaction
18145
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/reset_password_instructions.html.erb (0.3ms)
18146
+
18147
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 6.3ms
18148
+
18149
+ Sent mail to test@test.com (9.0ms)
18150
+ Date: Tue, 16 Sep 2014 16:51:12 -0500
18151
+ From: please-change-me-at-config-initializers-devise@example.com
18152
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
18153
+ To: test@test.com
18154
+ Message-ID: <5418b0d0db9cb_ed243fc00d465bec10892@tests-MacBook-Pro-2.local.mail>
18155
+ Subject: Reset password instructions
18156
+ Mime-Version: 1.0
18157
+ Content-Type: text/html;
18158
+ charset=UTF-8
18159
+ Content-Transfer-Encoding: 7bit
18160
+
18161
+ <p>Hello test@test.com!</p>
18162
+
18163
+ <p>Someone has requested a link to change your password. You can do this through the link below.</p>
18164
+
18165
+ <p><a href="http://devise-token-auth.dev/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F&amp;reset_password_token=jyfFG9b72v-sc9E_SvqK">Change my password</a></p>
18166
+
18167
+ <p>If you didn't request this, please ignore this email.</p>
18168
+ <p>Your password won't change until you access the link above and create a new one.</p>
18169
+
18170
+ Completed 200 OK in 29ms (Views: 0.3ms | ActiveRecord: 8.0ms)
18171
+
18172
+
18173
+ Started GET "/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F&reset_password_token=[FILTERED]" for 127.0.0.1 at 2014-09-16 16:51:32 -0500
18174
+ Processing by DeviseTokenAuth::PasswordsController#edit as HTML
18175
+ Parameters: {"redirect_url"=>"http://ng-token-auth.dev/", "reset_password_token"=>"[FILTERED]"}
18176
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'c623a95f389966bf01ca5b9945346b55b4f591eca05b883fccc15cab30aa7292' ORDER BY "users"."id" ASC LIMIT 1
18177
+  (0.0ms) begin transaction
18178
+ SQL (0.2ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_sent_at", nil], ["reset_password_token", nil], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:51:32.055136"]]
18179
+  (10.5ms) commit transaction
18180
+  (0.1ms) begin transaction
18181
+ SQL (0.3ms) UPDATE "users" SET "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_token", "jyfFG9b72v-sc9E_SvqK"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831},\"Y_VKtJ-HRVPRihFuwPyOug\":{\"token\":\"$2a$10$OpOuMKIwBDf8bl2g3SA0I./M1/cdHGw6PKLZfP35y5Lh0AZ1Ho0uO\",\"expiry\":1412113892}}"], ["updated_at", "2014-09-16 21:51:32.126795"]]
18182
+  (0.5ms) commit transaction
18183
+ Redirected to http://ng-token-auth.dev/#?client_id=Y_VKtJ-HRVPRihFuwPyOug&expiry=1412113892&reset_password=true&token=xNAcJqoTGgoKAMrRJDMOhA&uid=test%40test.com
18184
+ Completed 302 Found in 76ms (ActiveRecord: 11.8ms)
18185
+
18186
+
18187
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-09-16 16:51:32 -0500
18188
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
18189
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
18190
+  (0.1ms) begin transaction
18191
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831},\"Y_VKtJ-HRVPRihFuwPyOug\":{\"token\":\"$2a$10$c2Js7RJhYM5hcIefnwrw0.1jnv7MIMqzKeB4aui.QOuUmzk45RQGC\",\"expiry\":1412113892,\"last_token\":\"$2a$10$OpOuMKIwBDf8bl2g3SA0I./M1/cdHGw6PKLZfP35y5Lh0AZ1Ho0uO\",\"updated_at\":\"2014-09-16T16:51:32.635-05:00\"}}"], ["updated_at", "2014-09-16 21:51:32.636544"]]
18192
+  (15.9ms) commit transaction
18193
+ Completed 200 OK in 139ms (Views: 0.2ms | ActiveRecord: 16.4ms)
18194
+
18195
+
18196
+ Started PUT "/auth/password" for 127.0.0.1 at 2014-09-16 16:51:38 -0500
18197
+ Processing by DeviseTokenAuth::PasswordsController#update as HTML
18198
+ Parameters: {"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}
18199
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
18200
+  (0.1ms) begin transaction
18201
+ Binary data inserted for `string` type on column `encrypted_password`
18202
+ SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["encrypted_password", "$2a$10$SXAeDjE6wktGzGVL2hIMku0P3v5AsBYBW5qzIupxxZsadTrt83SPO"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831},\"Y_VKtJ-HRVPRihFuwPyOug\":{\"token\":\"$2a$10$c2Js7RJhYM5hcIefnwrw0.1jnv7MIMqzKeB4aui.QOuUmzk45RQGC\",\"expiry\":1412113892,\"last_token\":\"$2a$10$OpOuMKIwBDf8bl2g3SA0I./M1/cdHGw6PKLZfP35y5Lh0AZ1Ho0uO\",\"updated_at\":\"2014-09-16T16:51:32.635-05:00\"}}"], ["updated_at", "2014-09-16 21:51:39.028821"]]
18203
+  (1.7ms) commit transaction
18204
+  (0.1ms) begin transaction
18205
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831},\"Y_VKtJ-HRVPRihFuwPyOug\":{\"token\":\"$2a$10$rYel67/gL/BPeb.lb3olzeg.Kiq.A4qw3p5XcOImJ1KWYZmbTwmD6\",\"expiry\":1412113899,\"last_token\":\"$2a$10$c2Js7RJhYM5hcIefnwrw0.1jnv7MIMqzKeB4aui.QOuUmzk45RQGC\",\"updated_at\":\"2014-09-16T16:51:39.092-05:00\"}}"], ["updated_at", "2014-09-16 21:51:39.093469"]]
18206
+  (0.7ms) commit transaction
18207
+ Completed 200 OK in 189ms (Views: 0.4ms | ActiveRecord: 3.3ms)
18208
+
18209
+
18210
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-09-16 16:51:41 -0500
18211
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
18212
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
18213
+  (0.1ms) begin transaction
18214
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:51:41.738451"]]
18215
+  (0.5ms) commit transaction
18216
+ Completed 200 OK in 64ms (Views: 0.2ms | ActiveRecord: 1.0ms)
18217
+
18218
+
18219
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-09-16 16:51:48 -0500
18220
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
18221
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
18222
+ Unpermitted parameters: session
18223
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
18224
+ Unpermitted parameters: session
18225
+ Unpermitted parameters: session
18226
+ Unpermitted parameters: session
18227
+ Completed 401 Unauthorized in 63ms (Views: 0.2ms | ActiveRecord: 0.2ms)
18228
+
18229
+
18230
+ Started POST "/auth/password" for 127.0.0.1 at 2014-09-16 16:53:41 -0500
18231
+ Processing by DeviseTokenAuth::PasswordsController#create as HTML
18232
+ Parameters: {"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/#?client_id=Y_VKtJ-HRVPRihFuwPyOug&expiry=1412113892&reset_password=true&token=xNAcJqoTGgoKAMrRJDMOhA&uid=test%40test.com", "password"=>{"email"=>"test@test.com", "redirect_url"=>"http://ng-token-auth.dev/#?client_id=Y_VKtJ-HRVPRihFuwPyOug&expiry=1412113892&reset_password=true&token=xNAcJqoTGgoKAMrRJDMOhA&uid=test%40test.com"}}
18233
+ Unpermitted parameters: password
18234
+ Unpermitted parameters: password
18235
+ Unpermitted parameters: password
18236
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' AND "users"."provider" = 'email' ORDER BY "users"."id" ASC LIMIT 1
18237
+ Unpermitted parameters: password
18238
+  (0.0ms) begin transaction
18239
+ SQL (0.2ms) UPDATE "users" SET "reset_password_redirect_url" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_redirect_url", "http://ng-token-auth.dev/#?client_id=Y_VKtJ-HRVPRihFuwPyOug&expiry=1412113892&reset_password=true&token=xNAcJqoTGgoKAMrRJDMOhA&uid=test%40test.com"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:53:41.158924"]]
18240
+  (0.5ms) commit transaction
18241
+ Unpermitted parameters: password
18242
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' ORDER BY "users"."id" ASC LIMIT 1
18243
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."reset_password_token" = 'fe2190660e83d6e70210844e1036a56f86d1b8b570f0411c52e9ec3d42dfcd94' ORDER BY "users"."id" ASC LIMIT 1
18244
+  (0.0ms) begin transaction
18245
+ Binary data inserted for `string` type on column `reset_password_token`
18246
+ SQL (0.2ms) UPDATE "users" SET "reset_password_sent_at" = ?, "reset_password_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 23 [["reset_password_sent_at", "2014-09-16 21:53:41.161832"], ["reset_password_token", "fe2190660e83d6e70210844e1036a56f86d1b8b570f0411c52e9ec3d42dfcd94"], ["tokens", "{\"rQBYW4oeta6IXM6_ey_zmg\":{\"token\":\"$2a$10$7MikXvyafVpxCErXJjnSb.0wCkG5L.olaZkdiZWTJNShAgUKL1feS\",\"expiry\":1412113831}}"], ["updated_at", "2014-09-16 21:53:41.162100"]]
18247
+  (0.5ms) commit transaction
18248
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/reset_password_instructions.html.erb (0.5ms)
18249
+
18250
+ Devise::Mailer#reset_password_instructions: processed outbound mail in 7.1ms
18251
+
18252
+ Sent mail to test@test.com (9.6ms)
18253
+ Date: Tue, 16 Sep 2014 16:53:41 -0500
18254
+ From: please-change-me-at-config-initializers-devise@example.com
18255
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
18256
+ To: test@test.com
18257
+ Message-ID: <5418b1652a0be_ed243fc00d465bec109df@tests-MacBook-Pro-2.local.mail>
18258
+ Subject: Reset password instructions
18259
+ Mime-Version: 1.0
18260
+ Content-Type: text/html;
18261
+ charset=UTF-8
18262
+ Content-Transfer-Encoding: 7bit
18263
+
18264
+ <p>Hello test@test.com!</p>
18265
+
18266
+ <p>Someone has requested a link to change your password. You can do this through the link below.</p>
18267
+
18268
+ <p><a href="http://devise-token-auth.dev/auth/password/edit?redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%3Fclient_id%3DY_VKtJ-HRVPRihFuwPyOug%26expiry%3D1412113892%26reset_password%3Dtrue%26token%3DxNAcJqoTGgoKAMrRJDMOhA%26uid%3Dtest%2540test.com&amp;reset_password_token=hZxtvCWnzu3zyj3MdgCt">Change my password</a></p>
18269
+
18270
+ <p>If you didn't request this, please ignore this email.</p>
18271
+ <p>Your password won't change until you access the link above and create a new one.</p>
18272
+
18273
+ Completed 200 OK in 25ms (Views: 0.2ms | ActiveRecord: 1.9ms)