devise_token_auth 0.1.4 → 0.1.5

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: fc7021fe44250029f78d71e63c69974cd4f27b5e
4
- data.tar.gz: 5bddf76a0dea6fef4f9f42f54e60805068fd0d61
3
+ metadata.gz: e49e3d187551e1d540f633b051d426f4d2985ae4
4
+ data.tar.gz: a29240c48f5958c11d810205f5ac1ee5161a5863
5
5
  SHA512:
6
- metadata.gz: dbbc6569f24e082e99b79afcb2ac7fbe6dc2466044c3ed33fec0127870d134b242a4ac8ad82465de9f000f2ee97d34a63e0eac8b0db9e1e9c5b729f6505d98d9
7
- data.tar.gz: ba885282bf8318456c20cf47752afe250762b9cb58f56dc426b794cc2ef4d864d7bbac02c96ec4f84c17b80f13d79c78fd1c7bb925aa1a51396ffb8007e17af0
6
+ metadata.gz: 758f4c6b2b22e691413b059a1580eb1682f0a3c417b6c3e53b7bca91fda461fe867c73aad728daf926a90bcdf473d7cd0b3043c7b1f70edec5e69052ab08de7f
7
+ data.tar.gz: c3a110357f32e3ecf433280b0a39f58f058db140f2abd4d3abdd84a8c1842ae9fb6205679ed1ca24a5cab68c8d0a371397ac67eabd1a9a152b46369c115307e7
@@ -27,15 +27,29 @@ module DeviseTokenAuth
27
27
  email: auth_hash['info']['email'],
28
28
  }).first_or_initialize
29
29
 
30
- @token = SecureRandom.urlsafe_base64(nil, false)
30
+ # create client id
31
+ @client_id = SecureRandom.urlsafe_base64(nil, false)
32
+ @token = SecureRandom.urlsafe_base64(nil, false)
33
+
34
+ # set crazy password for new oauth users. this is only used to prevent
35
+ # access via email sign-in.
36
+ unless @user.id
37
+ p = SecureRandom.urlsafe_base64(nil, false)
38
+ @user.password = p
39
+ @user.password_confirmation = p
40
+ end
41
+
42
+ @user.tokens[@client_id] = {
43
+ token: BCrypt::Password.create(@token),
44
+ expiry: Time.now + 2.weeks
45
+ }
46
+ @user.save
31
47
 
32
48
  # sync user info with provider, update/generate auth token
33
49
  @user.update_attributes({
34
50
  nickname: auth_hash['info']['nickname'],
35
51
  name: auth_hash['info']['name'],
36
- image: auth_hash['info']['image'],
37
- password: @token,
38
- password_confirmation: @token
52
+ image: auth_hash['info']['image']
39
53
  })
40
54
 
41
55
  # render user info to javascript postMessage communication window
@@ -13,13 +13,16 @@ module DeviseTokenAuth::Concerns::SetUserByToken
13
13
  # missing auth token
14
14
  return false unless auth_header
15
15
 
16
- token = auth_header[/token=(.*?) /,1]
17
- uid = auth_header[/uid=(.*?)$/,1]
16
+ token = auth_header[/token=(.*?) /,1]
17
+ uid = auth_header[/uid=(.*?)$/,1]
18
+ @client_id = auth_header[/client=(.*?) /,1]
19
+
20
+ @client_id ||= 'default'
18
21
 
19
22
  # mitigate timing attacks by finding by uid instead of auth token
20
23
  @user = @current_user = uid && User.find_by_uid(uid)
21
24
 
22
- if @user && @user.valid_password?(token)
25
+ if @user && @user.valid_token?(@client_id, token)
23
26
  sign_in(@user, store: false)
24
27
  else
25
28
  @user = @current_user = nil
@@ -29,13 +32,16 @@ module DeviseTokenAuth::Concerns::SetUserByToken
29
32
  def update_auth_header
30
33
  if @user
31
34
  # update user's auth token (should happen on each request)
32
- token = SecureRandom.urlsafe_base64(nil, false)
33
- @user.password = token
34
- @user.password_confirmation = token
35
- @user.save!
35
+ token = SecureRandom.urlsafe_base64(nil, false)
36
+ token_hash = BCrypt::Password.create(token)
37
+ @user.tokens[@client_id] = {
38
+ token: token_hash,
39
+ expiry: Time.now + 2.weeks
40
+ }
41
+ @user.save
36
42
 
37
43
  # update Authorization response header with new token
38
- response.headers["Authorization"] = "token=#{token} uid=#{@user.uid}"
44
+ response.headers["Authorization"] = "token=#{token} client=#{@client_id} uid=#{@user.uid}"
39
45
  end
40
46
  end
41
47
  end
@@ -7,17 +7,21 @@ module DeviseTokenAuth
7
7
  if @user
8
8
  sign_in @user
9
9
 
10
- # generate new auth token
11
- token = SecureRandom.urlsafe_base64(nil, false)
10
+ # create client id
11
+ @client_id = SecureRandom.urlsafe_base64(nil, false)
12
+ @token = SecureRandom.urlsafe_base64(nil, false)
13
+
14
+ @user.tokens[@client_id] = {
15
+ token: BCrypt::Password.create(@token),
16
+ expiry: Time.now + 2.weeks
17
+ }
12
18
 
13
- # set new token as user password
14
- @user.password = token
15
- @user.password_confirmation = token
16
19
  @user.save
17
20
 
18
21
  redirect_to generate_url(@user.confirm_success_url, {
19
- email: @user.email,
20
- auth_token: token
22
+ token: @token,
23
+ client_id: @client_id,
24
+ email: @user.email
21
25
  })
22
26
  else
23
27
  raise ActionController::RoutingError.new('Not Found')
data/app/models/user.rb CHANGED
@@ -4,5 +4,12 @@ class User < ActiveRecord::Base
4
4
  devise :database_authenticatable, :registerable,
5
5
  :recoverable, :rememberable, :trackable, :validatable
6
6
 
7
- attr_encryptor :auth_token, key: proc { Devise.secret_key }
7
+ serialize :tokens, JSON
8
+
9
+ def valid_token?(client_id, token)
10
+ return false unless self.tokens[client_id]['expiry'] > 2.weeks.ago
11
+ return false unless BCrypt::Password.new(self.tokens[client_id]['token']) == token
12
+
13
+ return true
14
+ end
8
15
  end
@@ -2,6 +2,7 @@ message: "deliverCredentials",
2
2
  uid: "<%= @user.uid %>",
3
3
  email: "<%= @user.email %>",
4
4
  auth_token: "<%= @token %>",
5
+ client_id: "<%= @client_id %>",
5
6
  avatar_url: "<%= @user.image %>",
6
7
  nickname: "<%= @user.nickname %>",
7
8
  name: "<%= @user.name %>"
@@ -40,6 +40,9 @@ class DeviseTokenAuthCreateUsers < ActiveRecord::Migration
40
40
  t.string :provider
41
41
  t.string :uid, :null => false, :default => ""
42
42
 
43
+ ## Tokens
44
+ t.text :tokens, default: "{}"
45
+
43
46
  t.timestamps
44
47
  end
45
48
 
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.4"
2
+ VERSION = "0.1.5"
3
3
  end
Binary file
@@ -33,7 +33,7 @@ class DeviseTokenAuthCreateUsers < ActiveRecord::Migration
33
33
  # t.datetime :locked_at
34
34
 
35
35
  ## Token auth
36
- t.string :auth_token, :default => "", :null => false
36
+ t.text :tokens, default: "{}"
37
37
 
38
38
  ## User Info
39
39
  t.string :name
@@ -47,7 +47,6 @@ class DeviseTokenAuthCreateUsers < ActiveRecord::Migration
47
47
  t.timestamps
48
48
  end
49
49
 
50
- add_index :users, :auth_token
51
50
  add_index :users, :uid, :unique => true
52
51
  add_index :users, :email, :unique => true
53
52
  add_index :users, :reset_password_token, :unique => true
@@ -15,11 +15,11 @@ ActiveRecord::Schema.define(version: 20140629011345) do
15
15
 
16
16
  create_table "users", force: true do |t|
17
17
  t.string "email"
18
- t.string "encrypted_password", default: "", null: false
18
+ t.string "encrypted_password", default: "", null: false
19
19
  t.string "reset_password_token"
20
20
  t.datetime "reset_password_sent_at"
21
21
  t.datetime "remember_created_at"
22
- t.integer "sign_in_count", default: 0, null: false
22
+ t.integer "sign_in_count", default: 0, null: false
23
23
  t.datetime "current_sign_in_at"
24
24
  t.datetime "last_sign_in_at"
25
25
  t.string "current_sign_in_ip"
@@ -28,17 +28,16 @@ ActiveRecord::Schema.define(version: 20140629011345) do
28
28
  t.datetime "confirmed_at"
29
29
  t.datetime "confirmation_sent_at"
30
30
  t.string "confirm_success_url"
31
- t.string "auth_token", default: "", null: false
31
+ t.text "tokens", default: "{}"
32
32
  t.string "name"
33
33
  t.string "nickname"
34
34
  t.string "image"
35
35
  t.string "provider"
36
- t.string "uid", default: "", null: false
36
+ t.string "uid", default: "", null: false
37
37
  t.datetime "created_at"
38
38
  t.datetime "updated_at"
39
39
  end
40
40
 
41
- add_index "users", ["auth_token"], name: "index_users_on_auth_token"
42
41
  add_index "users", ["email"], name: "index_users_on_email", unique: true
43
42
  add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
44
43
  add_index "users", ["uid"], name: "index_users_on_uid", unique: true
@@ -7279,3 +7279,1544 @@ Binary data inserted for `string` type on column `encrypted_password`
7279
7279
  SQL (0.2ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["encrypted_password", "$2a$10$XcRSyk.z2Rw11m865gc61ub/7V1HaGM.W4rlRjJjVcPRGbAS1C6mC"], ["updated_at", "2014-06-30 23:19:37.448964"]]
7280
7280
   (0.7ms) commit transaction
7281
7281
  Completed 200 OK in 127ms (Views: 0.5ms | ActiveRecord: 3.2ms)
7282
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7283
+  (0.1ms) select sqlite_version(*)
7284
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7285
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7286
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
7287
+  (0.1ms) begin transaction
7288
+  (0.5ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "auth_token" varchar(255) DEFAULT '' NOT NULL, "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
7289
+  (0.1ms) CREATE INDEX "index_users_on_auth_token" ON "users" ("auth_token")
7290
+  (0.1ms) SELECT sql
7291
+ FROM sqlite_master
7292
+ WHERE name='index_users_on_auth_token' AND type='index'
7293
+ UNION ALL
7294
+ SELECT sql
7295
+ FROM sqlite_temp_master
7296
+ WHERE name='index_users_on_auth_token' AND type='index'
7297
+
7298
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")
7299
+  (0.1ms) SELECT sql
7300
+ FROM sqlite_master
7301
+ WHERE name='index_users_on_uid' AND type='index'
7302
+ UNION ALL
7303
+ SELECT sql
7304
+ FROM sqlite_temp_master
7305
+ WHERE name='index_users_on_uid' AND type='index'
7306
+
7307
+  (0.0ms)  SELECT sql
7308
+ FROM sqlite_master
7309
+ WHERE name='index_users_on_auth_token' AND type='index'
7310
+ UNION ALL
7311
+ SELECT sql
7312
+ FROM sqlite_temp_master
7313
+ WHERE name='index_users_on_auth_token' AND type='index'
7314
+ 
7315
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
7316
+  (0.1ms)  SELECT sql
7317
+ FROM sqlite_master
7318
+ WHERE name='index_users_on_email' AND type='index'
7319
+ UNION ALL
7320
+ SELECT sql
7321
+ FROM sqlite_temp_master
7322
+ WHERE name='index_users_on_email' AND type='index'
7323
+ 
7324
+  (0.0ms) SELECT sql
7325
+ FROM sqlite_master
7326
+ WHERE name='index_users_on_uid' AND type='index'
7327
+ UNION ALL
7328
+ SELECT sql
7329
+ FROM sqlite_temp_master
7330
+ WHERE name='index_users_on_uid' AND type='index'
7331
+
7332
+  (0.0ms)  SELECT sql
7333
+ FROM sqlite_master
7334
+ WHERE name='index_users_on_auth_token' AND type='index'
7335
+ UNION ALL
7336
+ SELECT sql
7337
+ FROM sqlite_temp_master
7338
+ WHERE name='index_users_on_auth_token' AND type='index'
7339
+ 
7340
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
7341
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140629011345"]]
7342
+  (0.9ms) commit transaction
7343
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7344
+  (0.1ms) SELECT sql
7345
+ FROM sqlite_master
7346
+ WHERE name='index_users_on_reset_password_token' AND type='index'
7347
+ UNION ALL
7348
+ SELECT sql
7349
+ FROM sqlite_temp_master
7350
+ WHERE name='index_users_on_reset_password_token' AND type='index'
7351
+
7352
+  (0.1ms)  SELECT sql
7353
+ FROM sqlite_master
7354
+ WHERE name='index_users_on_email' AND type='index'
7355
+ UNION ALL
7356
+ SELECT sql
7357
+ FROM sqlite_temp_master
7358
+ WHERE name='index_users_on_email' AND type='index'
7359
+ 
7360
+  (0.1ms) SELECT sql
7361
+ FROM sqlite_master
7362
+ WHERE name='index_users_on_uid' AND type='index'
7363
+ UNION ALL
7364
+ SELECT sql
7365
+ FROM sqlite_temp_master
7366
+ WHERE name='index_users_on_uid' AND type='index'
7367
+
7368
+  (0.1ms)  SELECT sql
7369
+ FROM sqlite_master
7370
+ WHERE name='index_users_on_auth_token' AND type='index'
7371
+ UNION ALL
7372
+ SELECT sql
7373
+ FROM sqlite_temp_master
7374
+ WHERE name='index_users_on_auth_token' AND type='index'
7375
+ 
7376
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7377
+  (0.1ms) select sqlite_version(*)
7378
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7379
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7380
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
7381
+  (0.0ms) begin transaction
7382
+  (0.0ms) rollback transaction
7383
+  (2.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7384
+  (0.1ms) select sqlite_version(*)
7385
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7386
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7387
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
7388
+  (0.0ms) begin transaction
7389
+  (0.1ms) rollback transaction
7390
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7391
+  (0.1ms) select sqlite_version(*)
7392
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7393
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7394
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
7395
+  (0.0ms) begin transaction
7396
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "tokens" text DEFAULT '{}', "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
7397
+  (0.1ms) CREATE INDEX "index_users_on_auth_token" ON "users" ("auth_token")
7398
+ SQLite3::SQLException: table users has no column named auth_token: CREATE INDEX "index_users_on_auth_token" ON "users" ("auth_token")
7399
+  (0.4ms) rollback transaction
7400
+  (2.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7401
+  (0.1ms) select sqlite_version(*)
7402
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
7403
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7404
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
7405
+  (0.0ms) begin transaction
7406
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "tokens" text DEFAULT '{}', "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
7407
+  (0.9ms) CREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")
7408
+  (0.1ms) SELECT sql
7409
+ FROM sqlite_master
7410
+ WHERE name='index_users_on_uid' AND type='index'
7411
+ UNION ALL
7412
+ SELECT sql
7413
+ FROM sqlite_temp_master
7414
+ WHERE name='index_users_on_uid' AND type='index'
7415
+
7416
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
7417
+  (0.1ms) SELECT sql
7418
+ FROM sqlite_master
7419
+ WHERE name='index_users_on_email' AND type='index'
7420
+ UNION ALL
7421
+ SELECT sql
7422
+ FROM sqlite_temp_master
7423
+ WHERE name='index_users_on_email' AND type='index'
7424
+
7425
+  (0.1ms)  SELECT sql
7426
+ FROM sqlite_master
7427
+ WHERE name='index_users_on_uid' AND type='index'
7428
+ UNION ALL
7429
+ SELECT sql
7430
+ FROM sqlite_temp_master
7431
+ WHERE name='index_users_on_uid' AND type='index'
7432
+ 
7433
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
7434
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140629011345"]]
7435
+  (0.8ms) commit transaction
7436
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7437
+  (0.1ms) SELECT sql
7438
+ FROM sqlite_master
7439
+ WHERE name='index_users_on_reset_password_token' AND type='index'
7440
+ UNION ALL
7441
+ SELECT sql
7442
+ FROM sqlite_temp_master
7443
+ WHERE name='index_users_on_reset_password_token' AND type='index'
7444
+
7445
+  (0.1ms)  SELECT sql
7446
+ FROM sqlite_master
7447
+ WHERE name='index_users_on_email' AND type='index'
7448
+ UNION ALL
7449
+ SELECT sql
7450
+ FROM sqlite_temp_master
7451
+ WHERE name='index_users_on_email' AND type='index'
7452
+ 
7453
+  (0.1ms) SELECT sql
7454
+ FROM sqlite_master
7455
+ WHERE name='index_users_on_uid' AND type='index'
7456
+ UNION ALL
7457
+ SELECT sql
7458
+ FROM sqlite_temp_master
7459
+ WHERE name='index_users_on_uid' AND type='index'
7460
+
7461
+
7462
+
7463
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 22:49:38 -0500
7464
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7465
+
7466
+
7467
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 22:49:38 -0500
7468
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
7469
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
7470
+ Completed 401 Unauthorized in 6ms (Views: 0.2ms | ActiveRecord: 0.5ms)
7471
+
7472
+
7473
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 22:49:41 -0500
7474
+
7475
+
7476
+ Started GET "/auth/github/callback?code=6e52f6f18acf930fa7fd&state=7f8b7b6c18b41978952744e852f2a86962860117ff36f05e" for 127.0.0.1 at 2014-06-30 22:49:41 -0500
7477
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
7478
+ Parameters: {"code"=>"6e52f6f18acf930fa7fd", "state"=>"7f8b7b6c18b41978952744e852f2a86962860117ff36f05e", "provider"=>"github"}
7479
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
7480
+  (0.1ms) begin transaction
7481
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn.dylan.hurley+github@gmail.com' LIMIT 1
7482
+ Binary data inserted for `string` type on column `encrypted_password`
7483
+ SQL (26.2ms) INSERT INTO "users" ("created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["created_at", "2014-07-01 03:49:43.021938"], ["email", "lynn.dylan.hurley+github@gmail.com"], ["encrypted_password", "$2a$10$YP60vpaneu6MB.AST5DHkut1E0jLvVw0gViU8APvGnAw80EwS0dW."], ["provider", "github"], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\"}"], ["uid", "468037"], ["updated_at", "2014-07-01 03:49:43.021938"]]
7484
+  (78.4ms) commit transaction
7485
+  (0.1ms) begin transaction
7486
+ SQL (0.3ms) UPDATE "users" SET "image" = ?, "name" = ?, "nickname" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["image", "https://avatars.githubusercontent.com/u/468037?"], ["name", "Lynn Dylan Hurley"], ["nickname", "lynndylanhurley"], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\"}"], ["updated_at", "2014-07-01 03:49:43.161027"]]
7487
+  (26.7ms) commit transaction
7488
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.8ms)
7489
+ Completed 200 OK in 396ms (Views: 9.0ms | ActiveRecord: 132.2ms)
7490
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
7491
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
7492
+ User Load (0.2ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
7493
+  (0.1ms) begin transaction
7494
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\"}"], ["updated_at", "2014-07-01 03:51:11.184339"]]
7495
+  (2.8ms) commit transaction
7496
+ User Load (0.3ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
7497
+
7498
+
7499
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 22:51:33 -0500
7500
+
7501
+
7502
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 22:51:33 -0500
7503
+ Processing by TestController#members_only as HTML
7504
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
7505
+ Completed 500 Internal Server Error in 1ms
7506
+
7507
+ BCrypt::Errors::InvalidHash (invalid hash):
7508
+ bcrypt (3.1.7) lib/bcrypt/password.rb:60:in `initialize'
7509
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `new'
7510
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `valid_token?'
7511
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:25:in `set_user_by_token'
7512
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
7513
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
7514
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
7515
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
7516
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
7517
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
7518
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
7519
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7520
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
7521
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7522
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
7523
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7524
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7525
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7526
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
7527
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
7528
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
7529
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7530
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
7531
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
7532
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
7533
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
7534
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7535
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7536
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7537
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7538
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7539
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7540
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7541
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7542
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7543
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7544
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
7545
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
7546
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7547
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7548
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7549
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
7550
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
7551
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
7552
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7553
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
7554
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
7555
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
7556
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7557
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
7558
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
7559
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
7560
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7561
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
7562
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7563
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7564
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7565
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7566
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7567
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
7568
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
7569
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7570
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
7571
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
7572
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
7573
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7574
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
7575
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
7576
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
7577
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7578
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
7579
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
7580
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7581
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
7582
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7583
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
7584
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
7585
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
7586
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
7587
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
7588
+
7589
+
7590
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.9ms)
7591
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
7592
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
7593
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.9ms)
7594
+
7595
+
7596
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 22:53:42 -0500
7597
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
7598
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
7599
+ Completed 500 Internal Server Error in 11ms
7600
+
7601
+ BCrypt::Errors::InvalidHash (invalid hash):
7602
+ bcrypt (3.1.7) lib/bcrypt/password.rb:60:in `initialize'
7603
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `new'
7604
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `valid_token?'
7605
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:25:in `set_user_by_token'
7606
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
7607
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
7608
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
7609
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
7610
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
7611
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
7612
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
7613
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7614
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
7615
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7616
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
7617
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7618
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7619
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7620
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
7621
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
7622
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
7623
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7624
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
7625
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
7626
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
7627
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
7628
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7629
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7630
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7631
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7632
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7633
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
7634
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
7635
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7636
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7637
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7638
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7639
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7640
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7641
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7642
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7643
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7644
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7645
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
7646
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
7647
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7648
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7649
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7650
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
7651
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
7652
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
7653
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7654
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
7655
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
7656
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
7657
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7658
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
7659
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
7660
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
7661
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7662
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
7663
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7664
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7665
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7666
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7667
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7668
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
7669
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
7670
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7671
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
7672
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
7673
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
7674
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7675
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
7676
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
7677
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
7678
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7679
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
7680
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
7681
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7682
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
7683
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7684
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
7685
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
7686
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
7687
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
7688
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
7689
+
7690
+
7691
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
7692
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
7693
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
7694
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
7695
+
7696
+
7697
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 22:53:46 -0500
7698
+
7699
+
7700
+ Started GET "/auth/github/callback?code=2688739d7041eae2fb7a&state=1de1475fa60849aba31d97ebaab416f1551196296a60ccb5" for 127.0.0.1 at 2014-06-30 22:53:47 -0500
7701
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
7702
+ Parameters: {"code"=>"2688739d7041eae2fb7a", "state"=>"1de1475fa60849aba31d97ebaab416f1551196296a60ccb5", "provider"=>"github"}
7703
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
7704
+ Completed 500 Internal Server Error in 2ms
7705
+
7706
+ NameError (uninitialized constant BCrypt::Pasword):
7707
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:42:in `omniauth_success'
7708
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
7709
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
7710
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
7711
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
7712
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
7713
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
7714
+ activesupport (4.1.2) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
7715
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
7716
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
7717
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
7718
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
7719
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
7720
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
7721
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7722
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
7723
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7724
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
7725
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7726
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7727
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7728
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
7729
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
7730
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
7731
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7732
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
7733
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
7734
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
7735
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
7736
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7737
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7738
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7739
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7740
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7741
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
7742
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
7743
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7744
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7745
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7746
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7747
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7748
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7749
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7750
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7751
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
7752
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
7753
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
7754
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
7755
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
7756
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7757
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
7758
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
7759
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7760
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7761
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7762
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
7763
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
7764
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
7765
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7766
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
7767
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
7768
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
7769
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7770
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
7771
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
7772
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
7773
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7774
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
7775
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7776
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7777
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7778
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7779
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7780
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
7781
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
7782
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7783
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
7784
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
7785
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
7786
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7787
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
7788
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
7789
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
7790
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7791
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
7792
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
7793
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7794
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
7795
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7796
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
7797
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
7798
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
7799
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
7800
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
7801
+
7802
+
7803
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
7804
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
7805
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
7806
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.2ms)
7807
+
7808
+
7809
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 22:54:04 -0500
7810
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7811
+
7812
+
7813
+ Started GET "/auth/github/callback?code=c9bacedda433c2c3b637&state=93763d01bebdb2fbd5fa9fd33eb5452b091eb606d247a080" for 127.0.0.1 at 2014-06-30 22:54:05 -0500
7814
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
7815
+ Parameters: {"code"=>"c9bacedda433c2c3b637", "state"=>"93763d01bebdb2fbd5fa9fd33eb5452b091eb606d247a080", "provider"=>"github"}
7816
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
7817
+ Completed 500 Internal Server Error in 16ms
7818
+
7819
+ BCrypt::Errors::InvalidHash (invalid hash):
7820
+ bcrypt (3.1.7) lib/bcrypt/password.rb:60:in `initialize'
7821
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:42:in `new'
7822
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:42:in `omniauth_success'
7823
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
7824
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
7825
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
7826
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
7827
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
7828
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
7829
+ activesupport (4.1.2) lib/active_support/callbacks.rb:215:in `block in halting_and_conditional'
7830
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
7831
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
7832
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
7833
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
7834
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
7835
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
7836
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7837
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
7838
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7839
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
7840
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7841
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7842
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7843
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
7844
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
7845
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
7846
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7847
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
7848
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
7849
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
7850
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
7851
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7852
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7853
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7854
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7855
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7856
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
7857
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
7858
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7859
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7860
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7861
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7862
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7863
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7864
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7865
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7866
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
7867
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
7868
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
7869
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
7870
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
7871
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7872
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
7873
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
7874
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7875
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7876
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7877
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
7878
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
7879
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
7880
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7881
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
7882
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
7883
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
7884
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7885
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
7886
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
7887
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
7888
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7889
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
7890
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7891
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7892
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
7893
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7894
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7895
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
7896
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
7897
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7898
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
7899
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
7900
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
7901
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7902
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
7903
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
7904
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
7905
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7906
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
7907
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
7908
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
7909
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
7910
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
7911
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
7912
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
7913
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
7914
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
7915
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
7916
+
7917
+
7918
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
7919
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
7920
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
7921
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
7922
+
7923
+
7924
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 22:54:41 -0500
7925
+
7926
+
7927
+ Started GET "/auth/github/callback?code=7552d0397960963c28c6&state=378c797a587333c3b29eb79efc9f92dd9a5cf6287c54abcf" for 127.0.0.1 at 2014-06-30 22:54:41 -0500
7928
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
7929
+ Parameters: {"code"=>"7552d0397960963c28c6", "state"=>"378c797a587333c3b29eb79efc9f92dd9a5cf6287c54abcf", "provider"=>"github"}
7930
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
7931
+  (0.1ms) begin transaction
7932
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\"}"], ["updated_at", "2014-07-01 03:54:43.650231"]]
7933
+  (2.3ms) commit transaction
7934
+  (0.0ms) begin transaction
7935
+ SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\"}"], ["updated_at", "2014-07-01 03:54:43.656170"]]
7936
+  (0.5ms) commit transaction
7937
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.5ms)
7938
+ Completed 200 OK in 88ms (Views: 2.5ms | ActiveRecord: 4.1ms)
7939
+
7940
+
7941
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 22:54:48 -0500
7942
+ Processing by TestController#members_only as HTML
7943
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
7944
+ Completed 500 Internal Server Error in 1ms
7945
+
7946
+ BCrypt::Errors::InvalidHash (invalid hash):
7947
+ bcrypt (3.1.7) lib/bcrypt/password.rb:60:in `initialize'
7948
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `new'
7949
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `valid_token?'
7950
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:25:in `set_user_by_token'
7951
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
7952
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
7953
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
7954
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
7955
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
7956
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
7957
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
7958
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7959
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
7960
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7961
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
7962
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7963
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7964
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7965
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
7966
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
7967
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
7968
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7969
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
7970
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
7971
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
7972
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
7973
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
7974
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
7975
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
7976
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
7977
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7978
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7979
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7980
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7981
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
7982
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
7983
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
7984
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
7985
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7986
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7987
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7988
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
7989
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
7990
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
7991
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7992
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
7993
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
7994
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
7995
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7996
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
7997
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
7998
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
7999
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8000
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
8001
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8002
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8003
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8004
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8005
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8006
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
8007
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
8008
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8009
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
8010
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
8011
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
8012
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8013
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8014
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8015
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
8016
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8017
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8018
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8019
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
8020
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
8021
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8022
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8023
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8024
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
8025
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
8026
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
8027
+
8028
+
8029
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
8030
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
8031
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
8032
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
8033
+ User Load (0.1ms) SELECT "users".* FROM "users" ORDER BY "users"."id" ASC LIMIT 1
8034
+
8035
+
8036
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 22:56:24 -0500
8037
+ Processing by TestController#members_only as HTML
8038
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8039
+ Completed 500 Internal Server Error in 301674ms
8040
+
8041
+ BCrypt::Errors::InvalidHash (invalid hash):
8042
+ bcrypt (3.1.7) lib/bcrypt/password.rb:60:in `initialize'
8043
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:11:in `new'
8044
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:11:in `valid_token?'
8045
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:25:in `set_user_by_token'
8046
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
8047
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
8048
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
8049
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
8050
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
8051
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
8052
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
8053
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
8054
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
8055
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8056
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
8057
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
8058
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
8059
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
8060
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
8061
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
8062
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
8063
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
8064
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
8065
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
8066
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
8067
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
8068
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8069
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
8070
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
8071
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
8072
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8073
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8074
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8075
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8076
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8077
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8078
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
8079
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
8080
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8081
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8082
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8083
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
8084
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
8085
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
8086
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8087
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
8088
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
8089
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
8090
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8091
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
8092
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
8093
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
8094
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8095
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
8096
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8097
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8098
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8099
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8100
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8101
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
8102
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
8103
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8104
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
8105
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
8106
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
8107
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8108
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8109
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8110
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
8111
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8112
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8113
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8114
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
8115
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
8116
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8117
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8118
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8119
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
8120
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
8121
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
8122
+
8123
+
8124
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
8125
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
8126
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
8127
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
8128
+
8129
+
8130
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:01:33 -0500
8131
+
8132
+
8133
+ Started GET "/auth/github/callback?code=d752058d0d18f2bfe8f2&state=4bd7d2144cc7f576401c4a5fac8f29b42146ce386b3fe8ef" for 127.0.0.1 at 2014-06-30 23:01:34 -0500
8134
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8135
+ Parameters: {"code"=>"d752058d0d18f2bfe8f2", "state"=>"4bd7d2144cc7f576401c4a5fac8f29b42146ce386b3fe8ef", "provider"=>"github"}
8136
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8137
+  (0.1ms) begin transaction
8138
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\"}"], ["updated_at", "2014-07-01 04:01:35.322180"]]
8139
+  (1.6ms) commit transaction
8140
+  (0.0ms) begin transaction
8141
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\"}"], ["updated_at", "2014-07-01 04:01:35.325410"]]
8142
+  (0.5ms) commit transaction
8143
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8144
+ Completed 200 OK in 79ms (Views: 1.7ms | ActiveRecord: 3.4ms)
8145
+
8146
+
8147
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 23:01:42 -0500
8148
+
8149
+
8150
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:01:42 -0500
8151
+ Processing by TestController#members_only as HTML
8152
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8153
+ Completed 500 Internal Server Error in 246031ms
8154
+
8155
+ BCrypt::Errors::InvalidHash (invalid hash):
8156
+ bcrypt (3.1.7) lib/bcrypt/password.rb:60:in `initialize'
8157
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:11:in `new'
8158
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:11:in `valid_token?'
8159
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:25:in `set_user_by_token'
8160
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
8161
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
8162
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
8163
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
8164
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
8165
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
8166
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
8167
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
8168
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
8169
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8170
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
8171
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
8172
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
8173
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
8174
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
8175
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
8176
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
8177
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
8178
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
8179
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
8180
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
8181
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
8182
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8183
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
8184
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
8185
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
8186
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8187
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8188
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8189
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8190
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8191
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8192
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
8193
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
8194
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8195
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8196
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8197
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
8198
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
8199
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
8200
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8201
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
8202
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
8203
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
8204
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8205
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
8206
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
8207
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
8208
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8209
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
8210
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8211
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8212
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8213
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8214
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8215
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
8216
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
8217
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8218
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
8219
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
8220
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
8221
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8222
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8223
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8224
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
8225
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8226
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8227
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8228
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
8229
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
8230
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8231
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8232
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8233
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
8234
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
8235
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
8236
+
8237
+
8238
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
8239
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
8240
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
8241
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
8242
+
8243
+
8244
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:05:54 -0500
8245
+
8246
+
8247
+ Started GET "/auth/github/callback?code=72a3d6e2167eb8d72b6e&state=fcaef4e6a953830f50e519c17cdd0e9880e14f403453b9c0" for 127.0.0.1 at 2014-06-30 23:05:54 -0500
8248
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8249
+ Parameters: {"code"=>"72a3d6e2167eb8d72b6e", "state"=>"fcaef4e6a953830f50e519c17cdd0e9880e14f403453b9c0", "provider"=>"github"}
8250
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8251
+  (0.1ms) begin transaction
8252
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$R5j7GKYveCZWMGmUb.bE0.WDN6cVl4YDj8os/Q1LAZVXnxobM70S6\"}"], ["updated_at", "2014-07-01 04:05:55.894661"]]
8253
+  (1.6ms) commit transaction
8254
+  (0.0ms) begin transaction
8255
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$R5j7GKYveCZWMGmUb.bE0.WDN6cVl4YDj8os/Q1LAZVXnxobM70S6\"}"], ["updated_at", "2014-07-01 04:05:55.897719"]]
8256
+  (0.5ms) commit transaction
8257
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8258
+ Completed 200 OK in 82ms (Views: 1.7ms | ActiveRecord: 3.2ms)
8259
+
8260
+
8261
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:06:03 -0500
8262
+ Processing by TestController#members_only as HTML
8263
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8264
+  (0.1ms) begin transaction
8265
+ Binary data inserted for `string` type on column `current_sign_in_ip`
8266
+ Binary data inserted for `string` type on column `last_sign_in_ip`
8267
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:06:03.866373"], ["current_sign_in_ip", "127.0.0.1"], ["last_sign_in_at", "2014-07-01 04:06:03.866373"], ["last_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$R5j7GKYveCZWMGmUb.bE0.WDN6cVl4YDj8os/Q1LAZVXnxobM70S6\"}"], ["updated_at", "2014-07-01 04:06:03.867337"]]
8268
+  (2.0ms) commit transaction
8269
+  (0.1ms) begin transaction
8270
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$r1xfJXF.T5EL6GZuR3x34.fnACtHKrPWfWXVDygSvJRgMqnzdsftC\"}"], ["updated_at", "2014-07-01 04:06:03.937154"]]
8271
+  (0.8ms) commit transaction
8272
+ Completed 200 OK in 146ms (Views: 0.6ms | ActiveRecord: 3.7ms)
8273
+
8274
+
8275
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:06:06 -0500
8276
+ Processing by TestController#members_only as HTML
8277
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8278
+  (0.1ms) begin transaction
8279
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:06:07.060459"], ["sign_in_count", 2], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$r1xfJXF.T5EL6GZuR3x34.fnACtHKrPWfWXVDygSvJRgMqnzdsftC\"}"], ["updated_at", "2014-07-01 04:06:07.060979"]]
8280
+  (2.1ms) commit transaction
8281
+  (0.1ms) begin transaction
8282
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$CnmXZDHlMLf7jBXeTRXBOeRc8pp1bha58uwn23MMS/jJZXyh2wYHW\"}"], ["updated_at", "2014-07-01 04:06:07.135976"]]
8283
+  (0.9ms) commit transaction
8284
+ Completed 200 OK in 152ms (Views: 0.5ms | ActiveRecord: 4.0ms)
8285
+
8286
+
8287
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:06:13 -0500
8288
+
8289
+
8290
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:06:13 -0500
8291
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
8292
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8293
+  (0.1ms) begin transaction
8294
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:06:13.335438"], ["last_sign_in_at", "2014-07-01 04:06:07.060459"], ["sign_in_count", 3], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$CnmXZDHlMLf7jBXeTRXBOeRc8pp1bha58uwn23MMS/jJZXyh2wYHW\"}"], ["updated_at", "2014-07-01 04:06:13.335961"]]
8295
+  (1.9ms) commit transaction
8296
+  (0.1ms) begin transaction
8297
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$L.7/3JYJUYGqQdhxXFV5Zu/qQsY4elN3jRKuSuMO5lKFmbhNmkLFS\"}"], ["updated_at", "2014-07-01 04:06:13.421842"]]
8298
+  (1.2ms) commit transaction
8299
+ Completed 200 OK in 170ms (Views: 0.9ms | ActiveRecord: 4.1ms)
8300
+
8301
+
8302
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:06:15 -0500
8303
+ Processing by TestController#members_only as HTML
8304
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8305
+  (0.1ms) begin transaction
8306
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:06:15.814433"], ["last_sign_in_at", "2014-07-01 04:06:13.335438"], ["sign_in_count", 4], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$L.7/3JYJUYGqQdhxXFV5Zu/qQsY4elN3jRKuSuMO5lKFmbhNmkLFS\"}"], ["updated_at", "2014-07-01 04:06:15.814964"]]
8307
+  (2.4ms) commit transaction
8308
+  (0.1ms) begin transaction
8309
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$EHziI2ZEJr6HnCpmkzqA/OQ0E2gS/V5nTT8jcG4xVZVfSWrYhccJm\"}"], ["updated_at", "2014-07-01 04:06:15.896796"]]
8310
+  (0.9ms) commit transaction
8311
+ Completed 200 OK in 155ms (Views: 0.5ms | ActiveRecord: 4.1ms)
8312
+
8313
+
8314
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:06:18 -0500
8315
+
8316
+
8317
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:06:18 -0500
8318
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
8319
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8320
+  (0.1ms) begin transaction
8321
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:06:18.922832"], ["last_sign_in_at", "2014-07-01 04:06:15.814433"], ["sign_in_count", 5], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$EHziI2ZEJr6HnCpmkzqA/OQ0E2gS/V5nTT8jcG4xVZVfSWrYhccJm\"}"], ["updated_at", "2014-07-01 04:06:18.923350"]]
8322
+  (0.8ms) commit transaction
8323
+  (0.0ms) begin transaction
8324
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$EHziI2ZEJr6HnCpmkzqA/OQ0E2gS/V5nTT8jcG4xVZVfSWrYhccJm\"}"], ["updated_at", "2014-07-01 04:06:18.927598"]]
8325
+  (0.6ms) commit transaction
8326
+  (0.1ms) begin transaction
8327
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\"}"], ["updated_at", "2014-07-01 04:06:18.989807"]]
8328
+  (0.7ms) commit transaction
8329
+ Completed 200 OK in 141ms (Views: 0.1ms | ActiveRecord: 3.3ms)
8330
+
8331
+
8332
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:06:20 -0500
8333
+ Processing by TestController#members_only as HTML
8334
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
8335
+
8336
+
8337
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:06:26 -0500
8338
+ Processing by TestController#members_only as HTML
8339
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
8340
+
8341
+
8342
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:06:31 -0500
8343
+
8344
+
8345
+ Started GET "/auth/github/callback?code=62f17bef1e9a4c056a94&state=38ae155775e36d1f7ad1adc6145a3496986a97da5efd0268" for 127.0.0.1 at 2014-06-30 23:06:32 -0500
8346
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8347
+ Parameters: {"code"=>"62f17bef1e9a4c056a94", "state"=>"38ae155775e36d1f7ad1adc6145a3496986a97da5efd0268", "provider"=>"github"}
8348
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8349
+  (0.1ms) begin transaction
8350
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$yhK3Qs5UBnN91b.sroh9neUq3xG0.LIHaZtUNP.duub2PUGywrNx2\"}"], ["updated_at", "2014-07-01 04:06:33.930989"]]
8351
+  (0.9ms) commit transaction
8352
+  (0.0ms) begin transaction
8353
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$yhK3Qs5UBnN91b.sroh9neUq3xG0.LIHaZtUNP.duub2PUGywrNx2\"}"], ["updated_at", "2014-07-01 04:06:33.947206"]]
8354
+  (0.6ms) commit transaction
8355
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8356
+ Completed 200 OK in 82ms (Views: 1.5ms | ActiveRecord: 2.2ms)
8357
+
8358
+
8359
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:07:04 -0500
8360
+
8361
+
8362
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:07:05 -0500
8363
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
8364
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8365
+  (0.1ms) begin transaction
8366
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:07:05.070123"], ["last_sign_in_at", "2014-07-01 04:06:18.922832"], ["sign_in_count", 6], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$yhK3Qs5UBnN91b.sroh9neUq3xG0.LIHaZtUNP.duub2PUGywrNx2\"}"], ["updated_at", "2014-07-01 04:07:05.070976"]]
8367
+  (1.7ms) commit transaction
8368
+  (0.1ms) begin transaction
8369
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$OmdiI6/eLROVSVTHmfgPM.kO5Bxf/6r212RWoVi4hdnD1PWUdUAgG\"}"], ["updated_at", "2014-07-01 04:07:05.136453"]]
8370
+  (0.7ms) commit transaction
8371
+ Completed 200 OK in 131ms (Views: 0.4ms | ActiveRecord: 3.4ms)
8372
+
8373
+
8374
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:07:17 -0500
8375
+
8376
+
8377
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:07:45 -0500
8378
+
8379
+
8380
+ Started GET "/auth/github/callback?code=c5284e74c7d690a4d3ca&state=3f6c7a41d4c7acb8ca2be08cac0afd85d5ae2bbee47b5cd4" for 127.0.0.1 at 2014-06-30 23:08:09 -0500
8381
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8382
+ Parameters: {"code"=>"c5284e74c7d690a4d3ca", "state"=>"3f6c7a41d4c7acb8ca2be08cac0afd85d5ae2bbee47b5cd4", "provider"=>"github"}
8383
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8384
+  (0.1ms) begin transaction
8385
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$OmdiI6/eLROVSVTHmfgPM.kO5Bxf/6r212RWoVi4hdnD1PWUdUAgG\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:11.239869"]]
8386
+  (1.6ms) commit transaction
8387
+  (0.0ms) begin transaction
8388
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$OmdiI6/eLROVSVTHmfgPM.kO5Bxf/6r212RWoVi4hdnD1PWUdUAgG\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:11.242888"]]
8389
+  (0.6ms) commit transaction
8390
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8391
+ Completed 200 OK in 69ms (Views: 1.5ms | ActiveRecord: 3.0ms)
8392
+
8393
+
8394
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:28 -0500
8395
+ Processing by TestController#members_only as HTML
8396
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8397
+ Completed 401 Unauthorized in 61ms (Views: 0.2ms | ActiveRecord: 0.2ms)
8398
+
8399
+
8400
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:08:32 -0500
8401
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
8402
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8403
+  (0.1ms) begin transaction
8404
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:32.677602"], ["last_sign_in_at", "2014-07-01 04:07:05.070123"], ["sign_in_count", 7], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$OmdiI6/eLROVSVTHmfgPM.kO5Bxf/6r212RWoVi4hdnD1PWUdUAgG\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:32.678110"]]
8405
+  (0.5ms) commit transaction
8406
+  (0.1ms) begin transaction
8407
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$sLDhAcEpJzp9Tv6PYdn2nOXUYQo3mLWxzYk.O8h6E8nnyBxRAbPQ2\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:32.741161"]]
8408
+  (0.6ms) commit transaction
8409
+ Completed 200 OK in 127ms (Views: 0.3ms | ActiveRecord: 2.0ms)
8410
+
8411
+
8412
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:35 -0500
8413
+ Processing by TestController#members_only as HTML
8414
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8415
+  (0.1ms) begin transaction
8416
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:35.360333"], ["last_sign_in_at", "2014-07-01 04:08:32.677602"], ["sign_in_count", 8], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$sLDhAcEpJzp9Tv6PYdn2nOXUYQo3mLWxzYk.O8h6E8nnyBxRAbPQ2\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:35.360786"]]
8417
+  (2.0ms) commit transaction
8418
+  (0.1ms) begin transaction
8419
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$gZ.b/XRPZ0N/GDTP3c0qEuI5qBRsG18LL2.lRbQpPrdcMtS2/MypO\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:35.427800"]]
8420
+  (0.8ms) commit transaction
8421
+ Completed 200 OK in 131ms (Views: 0.5ms | ActiveRecord: 3.7ms)
8422
+
8423
+
8424
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:37 -0500
8425
+ Processing by TestController#members_only as HTML
8426
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8427
+  (0.1ms) begin transaction
8428
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:37.584515"], ["last_sign_in_at", "2014-07-01 04:08:35.360333"], ["sign_in_count", 9], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$gZ.b/XRPZ0N/GDTP3c0qEuI5qBRsG18LL2.lRbQpPrdcMtS2/MypO\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:37.584989"]]
8429
+  (2.1ms) commit transaction
8430
+  (0.1ms) begin transaction
8431
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:37.649637"]]
8432
+  (0.6ms) commit transaction
8433
+ Completed 200 OK in 128ms (Views: 0.6ms | ActiveRecord: 3.6ms)
8434
+
8435
+
8436
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:42 -0500
8437
+
8438
+
8439
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:42 -0500
8440
+ Processing by TestController#members_only as HTML
8441
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8442
+  (0.1ms) begin transaction
8443
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:42.893581"], ["last_sign_in_at", "2014-07-01 04:08:37.584515"], ["sign_in_count", 10], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$q.WXwFUjqyxvwCbS/IxSUO4Meso35yPA1twrqv9.XQ1X2kg3A0t/a\"}"], ["updated_at", "2014-07-01 04:08:42.894051"]]
8444
+  (0.8ms) commit transaction
8445
+  (0.1ms) begin transaction
8446
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$8aiVY4Kf0AO.qiJcHcwIO.aZO8elN4Eo7DkxOa8p1HAZIo7hE6QNm\"}"], ["updated_at", "2014-07-01 04:08:42.975217"]]
8447
+  (0.9ms) commit transaction
8448
+ Completed 200 OK in 162ms (Views: 0.5ms | ActiveRecord: 2.6ms)
8449
+
8450
+
8451
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:45 -0500
8452
+ Processing by TestController#members_only as HTML
8453
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8454
+  (0.1ms) begin transaction
8455
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:45.323905"], ["last_sign_in_at", "2014-07-01 04:08:42.893581"], ["sign_in_count", 11], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$8aiVY4Kf0AO.qiJcHcwIO.aZO8elN4Eo7DkxOa8p1HAZIo7hE6QNm\"}"], ["updated_at", "2014-07-01 04:08:45.324411"]]
8456
+  (2.0ms) commit transaction
8457
+  (0.1ms) begin transaction
8458
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$j8.xvNjM6/1.vyMtXB2PouOnzjqQXY6NvBDU6xtN9KMqAPTFMFwFu\"}"], ["updated_at", "2014-07-01 04:08:45.389735"]]
8459
+  (0.7ms) commit transaction
8460
+ Completed 200 OK in 136ms (Views: 0.6ms | ActiveRecord: 3.7ms)
8461
+
8462
+
8463
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:08:49 -0500
8464
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
8465
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8466
+  (0.1ms) begin transaction
8467
+ SQL (0.7ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:49.594129"], ["last_sign_in_at", "2014-07-01 04:08:45.323905"], ["sign_in_count", 12], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$j8.xvNjM6/1.vyMtXB2PouOnzjqQXY6NvBDU6xtN9KMqAPTFMFwFu\"}"], ["updated_at", "2014-07-01 04:08:49.594623"]]
8468
+  (2.0ms) commit transaction
8469
+  (0.1ms) begin transaction
8470
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$.K2MxnCx9kRliXPIiVlaWOlW26m/ijYmlxBS2wGDk79c.RfPPCavS\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$j8.xvNjM6/1.vyMtXB2PouOnzjqQXY6NvBDU6xtN9KMqAPTFMFwFu\"}"], ["updated_at", "2014-07-01 04:08:49.610513"]]
8471
+  (0.7ms) commit transaction
8472
+  (0.1ms) begin transaction
8473
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$j8.xvNjM6/1.vyMtXB2PouOnzjqQXY6NvBDU6xtN9KMqAPTFMFwFu\"}"], ["updated_at", "2014-07-01 04:08:49.672781"]]
8474
+  (0.6ms) commit transaction
8475
+ Completed 200 OK in 152ms (Views: 0.1ms | ActiveRecord: 4.8ms)
8476
+
8477
+
8478
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:51 -0500
8479
+ Processing by TestController#members_only as HTML
8480
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
8481
+
8482
+
8483
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:54 -0500
8484
+ Processing by TestController#members_only as HTML
8485
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8486
+  (0.1ms) begin transaction
8487
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:54.099708"], ["last_sign_in_at", "2014-07-01 04:08:49.594129"], ["sign_in_count", 13], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$j8.xvNjM6/1.vyMtXB2PouOnzjqQXY6NvBDU6xtN9KMqAPTFMFwFu\"}"], ["updated_at", "2014-07-01 04:08:54.100148"]]
8488
+  (2.1ms) commit transaction
8489
+  (0.1ms) begin transaction
8490
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$N8U1kQdY1wiZ7h65OqslS.oOxcJ7PoL3FSYCGVrXYri97Cr2BfaV.\"}"], ["updated_at", "2014-07-01 04:08:54.164445"]]
8491
+  (0.8ms) commit transaction
8492
+ Completed 200 OK in 128ms (Views: 0.5ms | ActiveRecord: 3.7ms)
8493
+
8494
+
8495
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:08:56 -0500
8496
+
8497
+
8498
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:08:56 -0500
8499
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
8500
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8501
+  (0.1ms) begin transaction
8502
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:08:56.546801"], ["last_sign_in_at", "2014-07-01 04:08:54.099708"], ["sign_in_count", 14], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$N8U1kQdY1wiZ7h65OqslS.oOxcJ7PoL3FSYCGVrXYri97Cr2BfaV.\"}"], ["updated_at", "2014-07-01 04:08:56.547452"]]
8503
+  (2.1ms) commit transaction
8504
+  (0.1ms) begin transaction
8505
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$N8U1kQdY1wiZ7h65OqslS.oOxcJ7PoL3FSYCGVrXYri97Cr2BfaV.\"}"], ["updated_at", "2014-07-01 04:08:56.552009"]]
8506
+  (0.7ms) commit transaction
8507
+  (0.1ms) begin transaction
8508
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\"}"], ["updated_at", "2014-07-01 04:08:56.617327"]]
8509
+  (0.8ms) commit transaction
8510
+ Completed 200 OK in 133ms (Views: 0.1ms | ActiveRecord: 4.8ms)
8511
+
8512
+
8513
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:08:59 -0500
8514
+ Processing by TestController#members_only as HTML
8515
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
8516
+
8517
+
8518
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 23:23:02 -0500
8519
+
8520
+
8521
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:23:02 -0500
8522
+ Processing by TestController#members_only as HTML
8523
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
8524
+
8525
+
8526
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:23:12 -0500
8527
+
8528
+
8529
+ Started GET "/auth/github/callback?code=e1697c716bb6d6471aa1&state=c844183da3d6fd71872799a99eb79aa525f58b4441f174f8" for 127.0.0.1 at 2014-06-30 23:23:13 -0500
8530
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8531
+ Parameters: {"code"=>"e1697c716bb6d6471aa1", "state"=>"c844183da3d6fd71872799a99eb79aa525f58b4441f174f8", "provider"=>"github"}
8532
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8533
+  (0.1ms) begin transaction
8534
+ SQL (1.0ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"}}"], ["updated_at", "2014-07-01 04:23:14.935732"]]
8535
+  (15.5ms) commit transaction
8536
+  (0.1ms) begin transaction
8537
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"}}"], ["updated_at", "2014-07-01 04:23:14.957547"]]
8538
+  (1.3ms) commit transaction
8539
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8540
+ Completed 200 OK in 98ms (Views: 1.8ms | ActiveRecord: 18.8ms)
8541
+
8542
+
8543
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:23:24 -0500
8544
+ Processing by TestController#members_only as HTML
8545
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8546
+ Completed 500 Internal Server Error in 1ms
8547
+
8548
+ NoMethodError (undefined method `expiry' for #<Hash:0x007f8273065a48>):
8549
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/models/user.rb:10:in `valid_token?'
8550
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:25:in `set_user_by_token'
8551
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
8552
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
8553
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
8554
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
8555
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
8556
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
8557
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
8558
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
8559
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
8560
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8561
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
8562
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
8563
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
8564
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
8565
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
8566
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
8567
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
8568
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
8569
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
8570
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
8571
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
8572
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
8573
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8574
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
8575
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
8576
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
8577
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8578
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8579
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8580
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8581
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8582
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8583
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
8584
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
8585
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8586
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8587
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8588
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
8589
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
8590
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
8591
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8592
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
8593
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
8594
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
8595
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8596
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
8597
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
8598
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
8599
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8600
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
8601
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8602
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8603
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8604
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8605
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8606
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
8607
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
8608
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8609
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
8610
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
8611
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
8612
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8613
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8614
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8615
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
8616
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8617
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8618
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8619
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
8620
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
8621
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8622
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8623
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8624
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
8625
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
8626
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
8627
+
8628
+
8629
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
8630
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
8631
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
8632
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.3ms)
8633
+
8634
+
8635
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:24:05 -0500
8636
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8637
+ Processing by TestController#members_only as HTML
8638
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8639
+ Completed 401 Unauthorized in 77ms (Views: 0.3ms | ActiveRecord: 0.4ms)
8640
+
8641
+
8642
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:24:09 -0500
8643
+
8644
+
8645
+ Started GET "/auth/github/callback?code=b99281945e8102a7843f&state=9a3c5e14e5ecc00c5e44c8bd71cd65cb07e35f8d153889fe" for 127.0.0.1 at 2014-06-30 23:24:09 -0500
8646
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8647
+ Parameters: {"code"=>"b99281945e8102a7843f", "state"=>"9a3c5e14e5ecc00c5e44c8bd71cd65cb07e35f8d153889fe", "provider"=>"github"}
8648
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8649
+  (0.1ms) begin transaction
8650
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"}}"], ["updated_at", "2014-07-01 04:24:11.395512"]]
8651
+  (1.6ms) commit transaction
8652
+  (0.0ms) begin transaction
8653
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"}}"], ["updated_at", "2014-07-01 04:24:11.412831"]]
8654
+  (0.5ms) commit transaction
8655
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.5ms)
8656
+ Completed 200 OK in 90ms (Views: 7.9ms | ActiveRecord: 2.9ms)
8657
+
8658
+
8659
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:24:14 -0500
8660
+ Processing by TestController#members_only as HTML
8661
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8662
+ Completed 401 Unauthorized in 62ms (Views: 0.2ms | ActiveRecord: 0.2ms)
8663
+
8664
+
8665
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:26:57 -0500
8666
+
8667
+
8668
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:26:57 -0500
8669
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
8670
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8671
+ Completed 401 Unauthorized in 63ms (Views: 0.2ms | ActiveRecord: 0.2ms)
8672
+
8673
+
8674
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:27:01 -0500
8675
+
8676
+
8677
+ Started GET "/auth/github/callback?code=3dc0adcd93369ad8a2f0&state=48a95f21edb42ddbaa4f9a01efe3c16da8b8fa3b612e5b82" for 127.0.0.1 at 2014-06-30 23:27:01 -0500
8678
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8679
+ Parameters: {"code"=>"3dc0adcd93369ad8a2f0", "state"=>"48a95f21edb42ddbaa4f9a01efe3c16da8b8fa3b612e5b82", "provider"=>"github"}
8680
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8681
+  (0.1ms) begin transaction
8682
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"}}"], ["updated_at", "2014-07-01 04:27:02.909094"]]
8683
+  (2.1ms) commit transaction
8684
+  (0.1ms) begin transaction
8685
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"}}"], ["updated_at", "2014-07-01 04:27:02.913494"]]
8686
+  (0.7ms) commit transaction
8687
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8688
+ Completed 200 OK in 69ms (Views: 1.5ms | ActiveRecord: 3.7ms)
8689
+
8690
+
8691
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:27:13 -0500
8692
+ Processing by TestController#members_only as HTML
8693
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8694
+ Completed 401 Unauthorized in 62ms (Views: 0.2ms | ActiveRecord: 0.2ms)
8695
+
8696
+
8697
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:29:14 -0500
8698
+
8699
+
8700
+ Started GET "/auth/github/callback?code=5d3ff226ec2f0f8d3be0&state=933667d037608441264d29b5f2f325c5c4ae23d721f6516d" for 127.0.0.1 at 2014-06-30 23:29:14 -0500
8701
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8702
+ Parameters: {"code"=>"5d3ff226ec2f0f8d3be0", "state"=>"933667d037608441264d29b5f2f325c5c4ae23d721f6516d", "provider"=>"github"}
8703
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8704
+  (0.1ms) begin transaction
8705
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"}}"], ["updated_at", "2014-07-01 04:29:16.173734"]]
8706
+  (2.1ms) commit transaction
8707
+  (0.1ms) begin transaction
8708
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"}}"], ["updated_at", "2014-07-01 04:29:16.181488"]]
8709
+  (0.8ms) commit transaction
8710
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8711
+ Completed 200 OK in 83ms (Views: 1.7ms | ActiveRecord: 4.2ms)
8712
+
8713
+
8714
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:29:19 -0500
8715
+ Processing by TestController#members_only as HTML
8716
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8717
+ Completed 401 Unauthorized in 120429ms (Views: 0.3ms | ActiveRecord: 0.2ms)
8718
+
8719
+
8720
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:31:23 -0500
8721
+
8722
+
8723
+ Started GET "/auth/github/callback?code=d7042a1ebbfac85943d8&state=57ee4dd9488d393ad7b691504acf28e2c3db133ff6aa2e27" for 127.0.0.1 at 2014-06-30 23:31:24 -0500
8724
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
8725
+ Parameters: {"code"=>"d7042a1ebbfac85943d8", "state"=>"57ee4dd9488d393ad7b691504acf28e2c3db133ff6aa2e27", "provider"=>"github"}
8726
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
8727
+  (0.1ms) begin transaction
8728
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$6.LgW9ynmIs2ClEPs5KqLuznhInMyS/QcGtmUlrTMMEXcttrAAGEe\",\"expiry\":\"2014-07-14 23:31:25 -0500\"}}"], ["updated_at", "2014-07-01 04:31:25.679102"]]
8729
+  (0.5ms) commit transaction
8730
+  (0.0ms) begin transaction
8731
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$6.LgW9ynmIs2ClEPs5KqLuznhInMyS/QcGtmUlrTMMEXcttrAAGEe\",\"expiry\":\"2014-07-14 23:31:25 -0500\"}}"], ["updated_at", "2014-07-01 04:31:25.682260"]]
8732
+  (0.5ms) commit transaction
8733
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
8734
+ Completed 200 OK in 86ms (Views: 1.8ms | ActiveRecord: 2.2ms)
8735
+
8736
+
8737
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:31:28 -0500
8738
+ Processing by TestController#members_only as HTML
8739
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8740
+  (0.1ms) begin transaction
8741
+ SQL (0.4ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:31:31.887531"], ["last_sign_in_at", "2014-07-01 04:08:56.546801"], ["sign_in_count", 15], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$6.LgW9ynmIs2ClEPs5KqLuznhInMyS/QcGtmUlrTMMEXcttrAAGEe\",\"expiry\":\"2014-07-14 23:31:25 -0500\"}}"], ["updated_at", "2014-07-01 04:31:31.888889"]]
8742
+  (1.9ms) commit transaction
8743
+  (0.1ms) begin transaction
8744
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$Ksx0O65yXuLrT.suPuT/5O9twEpm/BtFEW47LJyXDnpbhmtXbbRwC\",\"expiry\":\"2014-07-14 23:31:31 -0500\"}}"], ["updated_at", "2014-07-01 04:31:31.964778"]]
8745
+  (0.7ms) commit transaction
8746
+ Completed 200 OK in 3896ms (Views: 0.9ms | ActiveRecord: 3.7ms)
8747
+
8748
+
8749
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:31:47 -0500
8750
+ Processing by TestController#members_only as HTML
8751
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8752
+  (0.1ms) begin transaction
8753
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:31:47.180708"], ["last_sign_in_at", "2014-07-01 04:31:31.887531"], ["sign_in_count", 16], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$Ksx0O65yXuLrT.suPuT/5O9twEpm/BtFEW47LJyXDnpbhmtXbbRwC\",\"expiry\":\"2014-07-14 23:31:31 -0500\"}}"], ["updated_at", "2014-07-01 04:31:47.181283"]]
8754
+  (2.0ms) commit transaction
8755
+  (0.1ms) begin transaction
8756
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$Q5uXyS/jLJ/0cugEemJNHus3UcX0nrDqQ6iRPsCKm5NQ2Rgaqy7EC\",\"expiry\":\"2014-07-14 23:31:47 -0500\"}}"], ["updated_at", "2014-07-01 04:31:47.285707"]]
8757
+  (0.7ms) commit transaction
8758
+ Completed 200 OK in 201ms (Views: 0.7ms | ActiveRecord: 4.5ms)
8759
+
8760
+
8761
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:31:50 -0500
8762
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
8763
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8764
+  (0.1ms) begin transaction
8765
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:31:50.912989"], ["last_sign_in_at", "2014-07-01 04:31:47.180708"], ["sign_in_count", 17], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$Q5uXyS/jLJ/0cugEemJNHus3UcX0nrDqQ6iRPsCKm5NQ2Rgaqy7EC\",\"expiry\":\"2014-07-14 23:31:47 -0500\"}}"], ["updated_at", "2014-07-01 04:31:50.913467"]]
8766
+  (1.7ms) commit transaction
8767
+  (0.2ms) begin transaction
8768
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$YIEC4hdTX0SGszslV0Z.W.1RBLvukvvoLa3GpLv.m8wSESJ2gJey2\",\"expiry\":\"2014-07-14 23:31:50 -0500\"}}"], ["updated_at", "2014-07-01 04:31:50.985306"]]
8769
+  (0.6ms) commit transaction
8770
+ Completed 200 OK in 159ms (Views: 0.7ms | ActiveRecord: 3.4ms)
8771
+
8772
+
8773
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:31:52 -0500
8774
+ Processing by TestController#members_only as HTML
8775
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8776
+  (0.1ms) begin transaction
8777
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:31:52.911379"], ["last_sign_in_at", "2014-07-01 04:31:50.912989"], ["sign_in_count", 18], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$YIEC4hdTX0SGszslV0Z.W.1RBLvukvvoLa3GpLv.m8wSESJ2gJey2\",\"expiry\":\"2014-07-14 23:31:50 -0500\"}}"], ["updated_at", "2014-07-01 04:31:52.911862"]]
8778
+  (2.1ms) commit transaction
8779
+  (0.1ms) begin transaction
8780
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$PsyUfbdGZdHyAbE5dy1eZu9pKc7l9EgIuUKMJV8xad1CsFg3rRN.q\",\"expiry\":\"2014-07-14 23:31:52 -0500\"}}"], ["updated_at", "2014-07-01 04:31:52.987885"]]
8781
+  (0.6ms) commit transaction
8782
+ Completed 200 OK in 153ms (Views: 0.7ms | ActiveRecord: 3.6ms)
8783
+
8784
+
8785
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:31:55 -0500
8786
+ Processing by TestController#members_only as HTML
8787
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8788
+  (0.1ms) begin transaction
8789
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:31:55.544123"], ["last_sign_in_at", "2014-07-01 04:31:52.911379"], ["sign_in_count", 19], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$PsyUfbdGZdHyAbE5dy1eZu9pKc7l9EgIuUKMJV8xad1CsFg3rRN.q\",\"expiry\":\"2014-07-14 23:31:52 -0500\"}}"], ["updated_at", "2014-07-01 04:31:55.544620"]]
8790
+  (1.9ms) commit transaction
8791
+  (0.1ms) begin transaction
8792
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$YuUrURHcsj.ZlbJ76ghoMe5thO0DoHycLj0y8Wb9uwbuKMMZ3H4QW\",\"expiry\":\"2014-07-14 23:31:55 -0500\"}}"], ["updated_at", "2014-07-01 04:31:55.620527"]]
8793
+  (0.8ms) commit transaction
8794
+ Completed 200 OK in 153ms (Views: 0.7ms | ActiveRecord: 3.5ms)
8795
+
8796
+
8797
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:31:59 -0500
8798
+
8799
+
8800
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:31:59 -0500
8801
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
8802
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
8803
+  (0.1ms) begin transaction
8804
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:31:59.604297"], ["last_sign_in_at", "2014-07-01 04:31:55.544123"], ["sign_in_count", 20], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$YuUrURHcsj.ZlbJ76ghoMe5thO0DoHycLj0y8Wb9uwbuKMMZ3H4QW\",\"expiry\":\"2014-07-14 23:31:55 -0500\"}}"], ["updated_at", "2014-07-01 04:31:59.604803"]]
8805
+  (1.6ms) commit transaction
8806
+  (0.0ms) begin transaction
8807
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$YuUrURHcsj.ZlbJ76ghoMe5thO0DoHycLj0y8Wb9uwbuKMMZ3H4QW\",\"expiry\":\"2014-07-14 23:31:55 -0500\"}}"], ["updated_at", "2014-07-01 04:31:59.609718"]]
8808
+  (0.6ms) commit transaction
8809
+  (0.1ms) begin transaction
8810
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"}}"], ["updated_at", "2014-07-01 04:31:59.672660"]]
8811
+  (0.6ms) commit transaction
8812
+ Completed 200 OK in 140ms (Views: 0.2ms | ActiveRecord: 4.1ms)
8813
+
8814
+
8815
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:32:01 -0500
8816
+ Processing by TestController#members_only as HTML
8817
+ Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
8818
+
8819
+
8820
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:32:07 -0500
8821
+ Processing by TestController#members_only as HTML
8822
+ Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)