devise_token_auth 0.1.15 → 0.1.16

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: 0e179dcc63b6e4f9f7eeb241c53dfcae41cf22d0
4
- data.tar.gz: 22cb495d0a06a031db911139a1c8766f59107916
3
+ metadata.gz: 7d5d45596f8f30bd6b931a282f8f204892ea575a
4
+ data.tar.gz: 7666d30af08d983a82461a6a98d6af6b5cb26c71
5
5
  SHA512:
6
- metadata.gz: fea2dbd156e42709b25742fbaf723fffa40b9d18d02b06e233b955d695200b026a8a30aefbb0dbd31d86c47cf14dccba5e6f68c484f7c10c5d82dc1dfbe73838
7
- data.tar.gz: b1f5cfb2e13e405b596be90d12c6ea84456547a2046038ab65964ee7ae8c6628758357df2279565d52a6d162ecebfd652d56a3458b949f85794436a7d07c144c
6
+ metadata.gz: 9b75f68a2fb8ec69db145524b383938458640daf1e4beea25ee24c04d9a028e848c5eadc227cc47e70a4c501c0d6c6924848c7c464529aa9d20af09fc49157a3
7
+ data.tar.gz: 386781828692d7ccbb847b43915622c9c2406ac496c157b2364f98ef479121eacade9841ae6b5a4ecc415c76636c8ccb30e467951add3ae2d2d4831a3b22180e
data/app/models/user.rb CHANGED
@@ -8,10 +8,11 @@ class User < ActiveRecord::Base
8
8
  serialize :tokens, JSON
9
9
 
10
10
  # only validate unique emails among email registration users
11
- validates_uniqueness_of :email, if: Proc.new { |u| u.provider == 'email' }
12
11
  validates_presence_of :email, if: Proc.new { |u| u.provider == 'email' }
13
12
  validates_presence_of :confirm_success_url, if: Proc.new {|u| u.provider == 'email'}
14
13
 
14
+ validate :unique_email_user, on: :create
15
+
15
16
  def valid_token?(client_id, token)
16
17
  return false unless self.tokens[client_id]['expiry'] > 2.weeks.ago
17
18
  return false unless BCrypt::Password.new(self.tokens[client_id]['token']) == token
@@ -30,6 +31,12 @@ class User < ActiveRecord::Base
30
31
  false
31
32
  end
32
33
 
34
+ def unique_email_user
35
+ if provider == 'email' and User.where(provider: 'email', email: email).count > 0
36
+ errors.add(:email, "Your email address is already in use")
37
+ end
38
+ end
39
+
33
40
  def email_required?
34
41
  provider == 'email'
35
42
  end
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.15"
2
+ VERSION = "0.1.16"
3
3
  end
@@ -121,6 +121,7 @@ class DeviseTokenAuth::RegistrationsControllerTest < ActionController::TestCase
121
121
  end
122
122
 
123
123
  test "request should be successful" do
124
+ binding.pry
124
125
  assert_equal 200, response.status
125
126
  end
126
127
 
Binary file
Binary file
@@ -17019,3 +17019,1002 @@ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17019
17019
  SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"}}"], ["updated_at", "2014-07-08 21:26:30.684832"]]
17020
17020
   (1.8ms) commit transaction
17021
17021
  Completed 200 OK in 126ms (Views: 0.3ms | ActiveRecord: 2.2ms)
17022
+
17023
+
17024
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth-demo.herokuapp.com/" for 127.0.0.1 at 2014-07-08 16:35:48 -0500
17025
+
17026
+
17027
+ Started GET "/auth/github/callback?code=f1559a42341797085ffd&state=36cdac2af236b7d87c04da54a6a2c482fa7841149f45cbeb" for 127.0.0.1 at 2014-07-08 16:35:48 -0500
17028
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17029
+ Parameters: {"code"=>"f1559a42341797085ffd", "state"=>"36cdac2af236b7d87c04da54a6a2c482fa7841149f45cbeb", "provider"=>"github"}
17030
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17031
+  (0.0ms) begin transaction
17032
+ SQL (0.2ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["confirmed_at", "2014-07-08 21:35:50.081605"], ["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"},\"oXazS0AWiIW3DRnved2jEg\":{\"token\":\"$2a$10$LFLs/AdNZIYDDoSIN.g/2OKzPNycCaYV.Y.gSoxVZxeT1fI/EHi9O\",\"expiry\":\"2014-07-22 16:35:50 -0500\"}}"], ["updated_at", "2014-07-08 21:35:50.082068"]]
17033
+  (2.3ms) commit transaction
17034
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
17035
+ Completed 200 OK in 67ms (Views: 2.3ms | ActiveRecord: 2.8ms)
17036
+
17037
+
17038
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-07-08 16:35:54 -0500
17039
+
17040
+
17041
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-08 16:35:54 -0500
17042
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17043
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17044
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 ORDER BY "users"."id" ASC LIMIT 1
17045
+  (0.0ms) begin transaction
17046
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"},\"oXazS0AWiIW3DRnved2jEg\":{\"token\":\"$2a$10$LFLs/AdNZIYDDoSIN.g/2OKzPNycCaYV.Y.gSoxVZxeT1fI/EHi9O\",\"expiry\":\"2014-07-22 16:35:50 -0500\"}}"], ["updated_at", "2014-07-08 21:35:54.249926"]]
17047
+  (2.0ms) commit transaction
17048
+  (0.1ms) begin transaction
17049
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"},\"oXazS0AWiIW3DRnved2jEg\":{\"token\":\"$2a$10$0XCW9.vnimXr1xQ3drB5fOizNHgppA1ohFiw1hGanZD5t0e0JtAFC\",\"expiry\":\"2014-07-22 16:35:54 -0500\"}}"], ["updated_at", "2014-07-08 21:35:54.313767"]]
17050
+  (0.7ms) commit transaction
17051
+ Completed 200 OK in 131ms (Views: 0.2ms | ActiveRecord: 3.7ms)
17052
+
17053
+
17054
+ Started GET "/auth/developer?auth_origin_url=http://ng-token-auth-demo.herokuapp.com/" for 127.0.0.1 at 2014-07-08 16:35:57 -0500
17055
+
17056
+
17057
+ Started POST "/auth/developer/callback" for 127.0.0.1 at 2014-07-08 16:36:01 -0500
17058
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17059
+ Parameters: {"first_name"=>"chong", "last_name"=>"bong", "provider"=>"developer"}
17060
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' AND "users"."provider" = 'developer' ORDER BY "users"."id" ASC LIMIT 1
17061
+  (0.1ms) begin transaction
17062
+ Binary data inserted for `string` type on column `encrypted_password`
17063
+ SQL (0.4ms) INSERT INTO "users" ("confirmed_at", "created_at", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["confirmed_at", "2014-07-08 21:36:01.420875"], ["created_at", "2014-07-08 21:36:01.421417"], ["encrypted_password", "$2a$10$sHfk6oYbCNntYA37i777L.HeaNSWM.HXK8Luj8buEOGtc5RjFGjcO"], ["provider", "developer"], ["tokens", "{\"CssKV_jK4tjdkhyHDJUAEw\":{\"token\":\"$2a$10$7n4T.TbEOjHnXIUakjUTWOsq35JXqNIr0g73ZYkYiIwKZEQg8wmfO\",\"expiry\":\"2014-07-22 16:36:01 -0500\"}}"], ["uid", "bong"], ["updated_at", "2014-07-08 21:36:01.421417"]]
17064
+  (2.0ms) commit transaction
17065
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
17066
+ Completed 200 OK in 127ms (Views: 1.6ms | ActiveRecord: 2.6ms)
17067
+
17068
+
17069
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-08 16:36:07 -0500
17070
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17071
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
17072
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 6 ORDER BY "users"."id" ASC LIMIT 1
17073
+  (0.0ms) begin transaction
17074
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"CssKV_jK4tjdkhyHDJUAEw\":{\"token\":\"$2a$10$7n4T.TbEOjHnXIUakjUTWOsq35JXqNIr0g73ZYkYiIwKZEQg8wmfO\",\"expiry\":\"2014-07-22 16:36:01 -0500\"}}"], ["updated_at", "2014-07-08 21:36:07.878637"]]
17075
+  (2.0ms) commit transaction
17076
+  (0.1ms) begin transaction
17077
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 6 [["tokens", "{\"CssKV_jK4tjdkhyHDJUAEw\":{\"token\":\"$2a$10$sfNrFylb/8TkvvBnxMKLFuUHcDKBdixfUpEsCGRLGO4o8MsuQDdy6\",\"expiry\":\"2014-07-22 16:36:07 -0500\"}}"], ["updated_at", "2014-07-08 21:36:07.941008"]]
17078
+  (0.7ms) commit transaction
17079
+ Completed 200 OK in 131ms (Views: 0.2ms | ActiveRecord: 3.6ms)
17080
+
17081
+
17082
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-07-08 16:36:31 -0500
17083
+
17084
+
17085
+ Started POST "/auth" for 127.0.0.1 at 2014-07-08 16:36:31 -0500
17086
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17087
+ Parameters: {"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/", "registration"=>{"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/"}}
17088
+ Unpermitted parameters: registration
17089
+ Unpermitted parameters: registration
17090
+  (0.1ms) begin transaction
17091
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn+v13@healthbox.com' LIMIT 1
17092
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '258ad80beae456f54b3b71c0465b321017f1298d58368c091c9b755fdc6c062e' ORDER BY "users"."id" ASC LIMIT 1
17093
+ Binary data inserted for `string` type on column `confirmation_token`
17094
+ Binary data inserted for `string` type on column `encrypted_password`
17095
+ SQL (0.3ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth-demo.herokuapp.com/"], ["confirmation_sent_at", "2014-07-08 21:36:31.868929"], ["confirmation_token", "258ad80beae456f54b3b71c0465b321017f1298d58368c091c9b755fdc6c062e"], ["created_at", "2014-07-08 21:36:31.688162"], ["email", "lynn+v13@healthbox.com"], ["encrypted_password", "$2a$10$gFw.OrFtD4/3wqbuG0VwCO0ichcRnIolc2QdanzUmOzQzMXSuy6E."], ["provider", "email"], ["tokens", "{}"], ["uid", "lynn+v13@healthbox.com"], ["updated_at", "2014-07-08 21:36:31.688162"]]
17096
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.8ms)
17097
+
17098
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 309.3ms
17099
+
17100
+ Sent mail to lynn+v13@healthbox.com (9.5ms)
17101
+ Date: Tue, 08 Jul 2014 16:36:32 -0500
17102
+ From: please-change-me-at-config-initializers-devise@example.com
17103
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17104
+ To: lynn+v13@healthbox.com
17105
+ Message-ID: <53bc64602d421_31093fec0842dbf82663f@lynns-mbp.mail>
17106
+ Subject: Confirmation instructions
17107
+ Mime-Version: 1.0
17108
+ Content-Type: text/html;
17109
+ charset=UTF-8
17110
+ Content-Transfer-Encoding: 7bit
17111
+
17112
+ <p>Welcome lynn+v13@healthbox.com!</p>
17113
+
17114
+ <p>You can confirm your account email through the link below:</p>
17115
+
17116
+ <p><a href="http://localhost:3000/auth/confirmation?confirmation_token=uskWh36BK2zyypuaUH2x">Confirm my account</a></p>
17117
+
17118
+  (1.6ms) rollback transaction
17119
+ Completed 500 Internal Server Error in 580ms
17120
+
17121
+ Errno::ECONNREFUSED (Connection refused - connect(2) for "localhost" port 1025):
17122
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `initialize'
17123
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `open'
17124
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `tcp_socket'
17125
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:551:in `block in do_start'
17126
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:91:in `block in timeout'
17127
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `call'
17128
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `timeout'
17129
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:550:in `do_start'
17130
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:520:in `start'
17131
+ mail (2.5.4) lib/mail/network/delivery_methods/smtp.rb:112:in `deliver!'
17132
+ mail (2.5.4) lib/mail/message.rb:2129:in `do_delivery'
17133
+ mail (2.5.4) lib/mail/message.rb:232:in `block in deliver'
17134
+ actionmailer (4.1.2) lib/action_mailer/base.rb:527:in `block in deliver_mail'
17135
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17136
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17137
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17138
+ actionmailer (4.1.2) lib/action_mailer/base.rb:525:in `deliver_mail'
17139
+ mail (2.5.4) lib/mail/message.rb:232:in `deliver'
17140
+ devise (3.2.4) lib/devise/models/authenticatable.rb:173:in `send_devise_notification'
17141
+ devise (3.2.4) lib/devise/models/confirmable.rb:102:in `send_confirmation_instructions'
17142
+ devise (3.2.4) lib/devise/models/confirmable.rb:158:in `send_on_create_confirmation_instructions'
17143
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
17144
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `call'
17145
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `block in halting_and_conditional'
17146
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17147
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17148
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `_create_record'
17149
+ activerecord (4.1.2) lib/active_record/timestamp.rb:57:in `_create_record'
17150
+ activerecord (4.1.2) lib/active_record/persistence.rb:482:in `create_or_update'
17151
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `block in create_or_update'
17152
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17153
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `create_or_update'
17154
+ activerecord (4.1.2) lib/active_record/persistence.rb:103:in `save'
17155
+ activerecord (4.1.2) lib/active_record/validations.rb:51:in `save'
17156
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:21:in `save'
17157
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block (2 levels) in save'
17158
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
17159
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
17160
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
17161
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
17162
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
17163
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
17164
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block in save'
17165
+ activerecord (4.1.2) lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
17166
+ activerecord (4.1.2) lib/active_record/transactions.rb:267:in `save'
17167
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/registrations_controller.rb:15:in `create'
17168
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
17169
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
17170
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
17171
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
17172
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17173
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17174
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
17175
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17176
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17177
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17178
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17179
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17180
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17181
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17182
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17183
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17184
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17185
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
17186
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
17187
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
17188
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17189
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17190
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17191
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
17192
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
17193
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
17194
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
17195
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
17196
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
17197
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
17198
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
17199
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
17200
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
17201
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
17202
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
17203
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17204
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17205
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17206
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17207
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17208
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
17209
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
17210
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17211
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17212
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17213
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17214
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17215
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17216
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17217
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17218
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17219
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17220
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17221
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17222
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
17223
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
17224
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
17225
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
17226
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
17227
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
17228
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
17229
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
17230
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
17231
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
17232
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
17233
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
17234
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
17235
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
17236
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
17237
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
17238
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
17239
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17240
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17241
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
17242
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
17243
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
17244
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
17245
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
17246
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
17247
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17248
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
17249
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
17250
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
17251
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
17252
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17253
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
17254
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
17255
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
17256
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
17257
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
17258
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17259
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
17260
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
17261
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
17262
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
17263
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
17264
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
17265
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
17266
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
17267
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
17268
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
17269
+
17270
+
17271
+ 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)
17272
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
17273
+ 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)
17274
+ 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.8ms)
17275
+
17276
+
17277
+ Started POST "/auth" for 127.0.0.1 at 2014-07-08 16:36:36 -0500
17278
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17279
+ Parameters: {"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/", "registration"=>{"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/"}}
17280
+ Unpermitted parameters: registration
17281
+ Unpermitted parameters: registration
17282
+  (0.1ms) begin transaction
17283
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn+v13@healthbox.com' LIMIT 1
17284
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '37a2cffb55c918714d7c1235e7659ab02e2bccdedf7b12aa842760e1ad3ba99f' ORDER BY "users"."id" ASC LIMIT 1
17285
+ Binary data inserted for `string` type on column `confirmation_token`
17286
+ Binary data inserted for `string` type on column `encrypted_password`
17287
+ SQL (0.2ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth-demo.herokuapp.com/"], ["confirmation_sent_at", "2014-07-08 21:36:36.145273"], ["confirmation_token", "37a2cffb55c918714d7c1235e7659ab02e2bccdedf7b12aa842760e1ad3ba99f"], ["created_at", "2014-07-08 21:36:36.144713"], ["email", "lynn+v13@healthbox.com"], ["encrypted_password", "$2a$10$/BOdz72blG5yh6z4UFUhH.5K6WtdnGqIYxngjg9EZaLH1oi6yBIsm"], ["provider", "email"], ["tokens", "{}"], ["uid", "lynn+v13@healthbox.com"], ["updated_at", "2014-07-08 21:36:36.144713"]]
17288
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
17289
+
17290
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 12.3ms
17291
+
17292
+ Sent mail to lynn+v13@healthbox.com (6.2ms)
17293
+ Date: Tue, 08 Jul 2014 16:36:36 -0500
17294
+ From: please-change-me-at-config-initializers-devise@example.com
17295
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17296
+ To: lynn+v13@healthbox.com
17297
+ Message-ID: <53bc646426e3a_31093fec0842dbf82675a@lynns-mbp.mail>
17298
+ Subject: Confirmation instructions
17299
+ Mime-Version: 1.0
17300
+ Content-Type: text/html;
17301
+ charset=UTF-8
17302
+ Content-Transfer-Encoding: 7bit
17303
+
17304
+ <p>Welcome lynn+v13@healthbox.com!</p>
17305
+
17306
+ <p>You can confirm your account email through the link below:</p>
17307
+
17308
+ <p><a href="http://localhost:3000/auth/confirmation?confirmation_token=t47DipWq8VD11ViieKWY">Confirm my account</a></p>
17309
+
17310
+  (1.6ms) rollback transaction
17311
+ Completed 500 Internal Server Error in 85ms
17312
+
17313
+ Errno::ECONNREFUSED (Connection refused - connect(2) for "localhost" port 1025):
17314
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `initialize'
17315
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `open'
17316
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `tcp_socket'
17317
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:551:in `block in do_start'
17318
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:91:in `block in timeout'
17319
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `call'
17320
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `timeout'
17321
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:550:in `do_start'
17322
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:520:in `start'
17323
+ mail (2.5.4) lib/mail/network/delivery_methods/smtp.rb:112:in `deliver!'
17324
+ mail (2.5.4) lib/mail/message.rb:2129:in `do_delivery'
17325
+ mail (2.5.4) lib/mail/message.rb:232:in `block in deliver'
17326
+ actionmailer (4.1.2) lib/action_mailer/base.rb:527:in `block in deliver_mail'
17327
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17328
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17329
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17330
+ actionmailer (4.1.2) lib/action_mailer/base.rb:525:in `deliver_mail'
17331
+ mail (2.5.4) lib/mail/message.rb:232:in `deliver'
17332
+ devise (3.2.4) lib/devise/models/authenticatable.rb:173:in `send_devise_notification'
17333
+ devise (3.2.4) lib/devise/models/confirmable.rb:102:in `send_confirmation_instructions'
17334
+ devise (3.2.4) lib/devise/models/confirmable.rb:158:in `send_on_create_confirmation_instructions'
17335
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
17336
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `call'
17337
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `block in halting_and_conditional'
17338
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17339
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17340
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `_create_record'
17341
+ activerecord (4.1.2) lib/active_record/timestamp.rb:57:in `_create_record'
17342
+ activerecord (4.1.2) lib/active_record/persistence.rb:482:in `create_or_update'
17343
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `block in create_or_update'
17344
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17345
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `create_or_update'
17346
+ activerecord (4.1.2) lib/active_record/persistence.rb:103:in `save'
17347
+ activerecord (4.1.2) lib/active_record/validations.rb:51:in `save'
17348
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:21:in `save'
17349
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block (2 levels) in save'
17350
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
17351
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
17352
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
17353
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
17354
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
17355
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
17356
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block in save'
17357
+ activerecord (4.1.2) lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
17358
+ activerecord (4.1.2) lib/active_record/transactions.rb:267:in `save'
17359
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/registrations_controller.rb:15:in `create'
17360
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
17361
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
17362
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
17363
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
17364
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17365
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17366
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
17367
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17368
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17369
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17370
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17371
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17372
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17373
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17374
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17375
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17376
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17377
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
17378
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
17379
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
17380
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17381
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17382
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17383
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
17384
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
17385
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
17386
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
17387
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
17388
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
17389
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
17390
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
17391
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
17392
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
17393
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
17394
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
17395
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17396
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17397
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17398
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17399
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17400
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
17401
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
17402
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17403
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17404
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17405
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17406
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17407
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17408
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17409
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17410
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17411
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17412
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17413
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17414
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
17415
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
17416
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
17417
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
17418
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
17419
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
17420
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
17421
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
17422
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
17423
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
17424
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
17425
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
17426
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
17427
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
17428
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
17429
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
17430
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
17431
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17432
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17433
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
17434
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
17435
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
17436
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
17437
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
17438
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
17439
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17440
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
17441
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
17442
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
17443
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
17444
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17445
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
17446
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
17447
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
17448
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
17449
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
17450
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17451
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
17452
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
17453
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
17454
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
17455
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
17456
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
17457
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
17458
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
17459
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
17460
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
17461
+
17462
+
17463
+ 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)
17464
+ 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)
17465
+ 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.7ms)
17466
+ 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 (8.9ms)
17467
+
17468
+
17469
+ Started OPTIONS "/auth/sign_in" for 127.0.0.1 at 2014-07-08 16:37:09 -0500
17470
+
17471
+
17472
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-07-08 16:37:09 -0500
17473
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
17474
+ Parameters: {"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "session"=>{"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]"}}
17475
+ Unpermitted parameters: session
17476
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'lynn+v13@healthbox.com' LIMIT 1
17477
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
17478
+
17479
+
17480
+ Started POST "/auth" for 127.0.0.1 at 2014-07-08 16:37:44 -0500
17481
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17482
+ Parameters: {"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/", "registration"=>{"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/"}}
17483
+ Unpermitted parameters: registration
17484
+ Unpermitted parameters: registration
17485
+  (0.1ms) begin transaction
17486
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn+v13@healthbox.com' LIMIT 1
17487
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = 'bb2824d75f6f0d451ef2412ed4902779f87c33bbf9cc1e79db499f61d4ab8f7a' ORDER BY "users"."id" ASC LIMIT 1
17488
+ Binary data inserted for `string` type on column `confirmation_token`
17489
+ Binary data inserted for `string` type on column `encrypted_password`
17490
+ SQL (0.2ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth-demo.herokuapp.com/"], ["confirmation_sent_at", "2014-07-08 21:37:44.572741"], ["confirmation_token", "bb2824d75f6f0d451ef2412ed4902779f87c33bbf9cc1e79db499f61d4ab8f7a"], ["created_at", "2014-07-08 21:37:44.572101"], ["email", "lynn+v13@healthbox.com"], ["encrypted_password", "$2a$10$a.j5L5LUM35Ng9WEA2fUtuE92oKOBVoDVH7q0Bgad2thlEuhaDeo2"], ["provider", "email"], ["tokens", "{}"], ["uid", "lynn+v13@healthbox.com"], ["updated_at", "2014-07-08 21:37:44.572101"]]
17491
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
17492
+
17493
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 12.5ms
17494
+
17495
+ Sent mail to lynn+v13@healthbox.com (6.4ms)
17496
+ Date: Tue, 08 Jul 2014 16:37:44 -0500
17497
+ From: please-change-me-at-config-initializers-devise@example.com
17498
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17499
+ To: lynn+v13@healthbox.com
17500
+ Message-ID: <53bc64a88f5bf_31093fec0842dbf8268bd@lynns-mbp.mail>
17501
+ Subject: Confirmation instructions
17502
+ Mime-Version: 1.0
17503
+ Content-Type: text/html;
17504
+ charset=UTF-8
17505
+ Content-Transfer-Encoding: 7bit
17506
+
17507
+ <p>Welcome lynn+v13@healthbox.com!</p>
17508
+
17509
+ <p>You can confirm your account email through the link below:</p>
17510
+
17511
+ <p><a href="http://localhost:3000/auth/confirmation?confirmation_token=xyg7sEzsx3nRKNizkSMu">Confirm my account</a></p>
17512
+
17513
+  (1.7ms) rollback transaction
17514
+ Completed 500 Internal Server Error in 86ms
17515
+
17516
+ Errno::ECONNREFUSED (Connection refused - connect(2) for "localhost" port 1025):
17517
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `initialize'
17518
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `open'
17519
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `tcp_socket'
17520
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:551:in `block in do_start'
17521
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:91:in `block in timeout'
17522
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `call'
17523
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `timeout'
17524
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:550:in `do_start'
17525
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:520:in `start'
17526
+ mail (2.5.4) lib/mail/network/delivery_methods/smtp.rb:112:in `deliver!'
17527
+ mail (2.5.4) lib/mail/message.rb:2129:in `do_delivery'
17528
+ mail (2.5.4) lib/mail/message.rb:232:in `block in deliver'
17529
+ actionmailer (4.1.2) lib/action_mailer/base.rb:527:in `block in deliver_mail'
17530
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17531
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17532
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17533
+ actionmailer (4.1.2) lib/action_mailer/base.rb:525:in `deliver_mail'
17534
+ mail (2.5.4) lib/mail/message.rb:232:in `deliver'
17535
+ devise (3.2.4) lib/devise/models/authenticatable.rb:173:in `send_devise_notification'
17536
+ devise (3.2.4) lib/devise/models/confirmable.rb:102:in `send_confirmation_instructions'
17537
+ devise (3.2.4) lib/devise/models/confirmable.rb:158:in `send_on_create_confirmation_instructions'
17538
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
17539
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `call'
17540
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `block in halting_and_conditional'
17541
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17542
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17543
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `_create_record'
17544
+ activerecord (4.1.2) lib/active_record/timestamp.rb:57:in `_create_record'
17545
+ activerecord (4.1.2) lib/active_record/persistence.rb:482:in `create_or_update'
17546
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `block in create_or_update'
17547
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17548
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `create_or_update'
17549
+ activerecord (4.1.2) lib/active_record/persistence.rb:103:in `save'
17550
+ activerecord (4.1.2) lib/active_record/validations.rb:51:in `save'
17551
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:21:in `save'
17552
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block (2 levels) in save'
17553
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
17554
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
17555
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
17556
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
17557
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
17558
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
17559
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block in save'
17560
+ activerecord (4.1.2) lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
17561
+ activerecord (4.1.2) lib/active_record/transactions.rb:267:in `save'
17562
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/registrations_controller.rb:15:in `create'
17563
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
17564
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
17565
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
17566
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
17567
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17568
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17569
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
17570
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17571
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17572
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17573
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17574
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17575
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17576
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17577
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17578
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17579
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17580
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
17581
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
17582
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
17583
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17584
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17585
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17586
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
17587
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
17588
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
17589
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
17590
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
17591
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
17592
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
17593
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
17594
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
17595
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
17596
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
17597
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
17598
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17599
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17600
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17601
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17602
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17603
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
17604
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
17605
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17606
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17607
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17608
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17609
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17610
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17611
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17612
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17613
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17614
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17615
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17616
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17617
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
17618
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
17619
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
17620
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
17621
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
17622
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
17623
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
17624
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
17625
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
17626
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
17627
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
17628
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
17629
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
17630
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
17631
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
17632
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
17633
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
17634
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17635
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17636
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
17637
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
17638
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
17639
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
17640
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
17641
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
17642
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17643
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
17644
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
17645
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
17646
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
17647
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17648
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
17649
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
17650
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
17651
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
17652
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
17653
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17654
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
17655
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
17656
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
17657
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
17658
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
17659
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
17660
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
17661
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
17662
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
17663
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
17664
+
17665
+
17666
+ 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)
17667
+ 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)
17668
+ 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)
17669
+ 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.1ms)
17670
+
17671
+
17672
+ Started POST "/auth" for 127.0.0.1 at 2014-07-08 16:37:58 -0500
17673
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17674
+ Parameters: {"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/", "registration"=>{"email"=>"lynn+v13@healthbox.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth-demo.herokuapp.com/"}}
17675
+ Unpermitted parameters: registration
17676
+ Unpermitted parameters: registration
17677
+  (0.1ms) begin transaction
17678
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn+v13@healthbox.com' LIMIT 1
17679
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '34f37bfd5e67b52c07963e3561ad782978757967a3d790f078560ea8fd7ca42d' ORDER BY "users"."id" ASC LIMIT 1
17680
+ Binary data inserted for `string` type on column `confirmation_token`
17681
+ Binary data inserted for `string` type on column `encrypted_password`
17682
+ SQL (0.2ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth-demo.herokuapp.com/"], ["confirmation_sent_at", "2014-07-08 21:37:58.799724"], ["confirmation_token", "34f37bfd5e67b52c07963e3561ad782978757967a3d790f078560ea8fd7ca42d"], ["created_at", "2014-07-08 21:37:58.799166"], ["email", "lynn+v13@healthbox.com"], ["encrypted_password", "$2a$10$tvakfU/MfuU2RVzW5v4QI.STji5sNEdYK4d6J4wq.czRI9Bg5Vk6C"], ["provider", "email"], ["tokens", "{}"], ["uid", "lynn+v13@healthbox.com"], ["updated_at", "2014-07-08 21:37:58.799166"]]
17683
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.3ms)
17684
+
17685
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 19.7ms
17686
+
17687
+ Sent mail to lynn+v13@healthbox.com (8.8ms)
17688
+ Date: Tue, 08 Jul 2014 16:37:58 -0500
17689
+ From: please-change-me-at-config-initializers-devise@example.com
17690
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17691
+ To: lynn+v13@healthbox.com
17692
+ Message-ID: <53bc64b6c8f4c_31093fec0842dbf826961@lynns-mbp.mail>
17693
+ Subject: Confirmation instructions
17694
+ Mime-Version: 1.0
17695
+ Content-Type: text/html;
17696
+ charset=UTF-8
17697
+ Content-Transfer-Encoding: 7bit
17698
+
17699
+ <p>Welcome lynn+v13@healthbox.com!</p>
17700
+
17701
+ <p>You can confirm your account email through the link below:</p>
17702
+
17703
+ <p><a href="http://localhost:3000/auth/confirmation?confirmation_token=1sov3QAhqohYuQEqFbjW">Confirm my account</a></p>
17704
+
17705
+  (1.7ms) rollback transaction
17706
+ Completed 500 Internal Server Error in 95ms
17707
+
17708
+ Errno::ECONNREFUSED (Connection refused - connect(2) for "localhost" port 1025):
17709
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `initialize'
17710
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `open'
17711
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:541:in `tcp_socket'
17712
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:551:in `block in do_start'
17713
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:91:in `block in timeout'
17714
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `call'
17715
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/timeout.rb:101:in `timeout'
17716
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:550:in `do_start'
17717
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/net/smtp.rb:520:in `start'
17718
+ mail (2.5.4) lib/mail/network/delivery_methods/smtp.rb:112:in `deliver!'
17719
+ mail (2.5.4) lib/mail/message.rb:2129:in `do_delivery'
17720
+ mail (2.5.4) lib/mail/message.rb:232:in `block in deliver'
17721
+ actionmailer (4.1.2) lib/action_mailer/base.rb:527:in `block in deliver_mail'
17722
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17723
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17724
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17725
+ actionmailer (4.1.2) lib/action_mailer/base.rb:525:in `deliver_mail'
17726
+ mail (2.5.4) lib/mail/message.rb:232:in `deliver'
17727
+ devise (3.2.4) lib/devise/models/authenticatable.rb:173:in `send_devise_notification'
17728
+ devise (3.2.4) lib/devise/models/confirmable.rb:102:in `send_confirmation_instructions'
17729
+ devise (3.2.4) lib/devise/models/confirmable.rb:158:in `send_on_create_confirmation_instructions'
17730
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
17731
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `call'
17732
+ activesupport (4.1.2) lib/active_support/callbacks.rb:221:in `block in halting_and_conditional'
17733
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17734
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17735
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `_create_record'
17736
+ activerecord (4.1.2) lib/active_record/timestamp.rb:57:in `_create_record'
17737
+ activerecord (4.1.2) lib/active_record/persistence.rb:482:in `create_or_update'
17738
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `block in create_or_update'
17739
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17740
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `create_or_update'
17741
+ activerecord (4.1.2) lib/active_record/persistence.rb:103:in `save'
17742
+ activerecord (4.1.2) lib/active_record/validations.rb:51:in `save'
17743
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:21:in `save'
17744
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block (2 levels) in save'
17745
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
17746
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
17747
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
17748
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
17749
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
17750
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
17751
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block in save'
17752
+ activerecord (4.1.2) lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
17753
+ activerecord (4.1.2) lib/active_record/transactions.rb:267:in `save'
17754
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/registrations_controller.rb:15:in `create'
17755
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
17756
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
17757
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
17758
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
17759
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17760
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
17761
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
17762
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17763
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17764
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
17765
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
17766
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17767
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17768
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
17769
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
17770
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
17771
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
17772
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
17773
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
17774
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
17775
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
17776
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
17777
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
17778
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
17779
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
17780
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
17781
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
17782
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
17783
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
17784
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
17785
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
17786
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
17787
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
17788
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
17789
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
17790
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17791
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17792
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17793
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17794
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17795
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
17796
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
17797
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
17798
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
17799
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
17800
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
17801
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17802
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17803
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17804
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17805
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17806
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17807
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
17808
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
17809
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
17810
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
17811
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
17812
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
17813
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
17814
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
17815
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
17816
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
17817
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
17818
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
17819
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
17820
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
17821
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
17822
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
17823
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
17824
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
17825
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
17826
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
17827
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17828
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
17829
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
17830
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
17831
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
17832
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
17833
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
17834
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17835
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
17836
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
17837
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
17838
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
17839
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17840
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
17841
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
17842
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
17843
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
17844
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
17845
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17846
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
17847
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
17848
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
17849
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
17850
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
17851
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
17852
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
17853
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
17854
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
17855
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
17856
+
17857
+
17858
+ 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)
17859
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
17860
+ 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)
17861
+ 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.6ms)
17862
+
17863
+
17864
+ Started GET "/auth" for 127.0.0.1 at 2014-07-08 16:54:59 -0500
17865
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
17866
+
17867
+ ActionController::RoutingError (No route matches [GET] "/auth"):
17868
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
17869
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
17870
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
17871
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
17872
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
17873
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
17874
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
17875
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
17876
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
17877
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
17878
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
17879
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
17880
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
17881
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
17882
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
17883
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
17884
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
17885
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
17886
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
17887
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
17888
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
17889
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
17890
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
17891
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
17892
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
17893
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
17894
+
17895
+
17896
+ 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)
17897
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
17898
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
17899
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.1ms)
17900
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (41.6ms)
17901
+
17902
+
17903
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-08 16:55:45 -0500
17904
+
17905
+
17906
+ Started GET "/auth/github/callback?code=5955d844cc51d8cb326c&state=0016db9581b1e4d89b79a79802b13e505b4c65a15d58c5d0" for 127.0.0.1 at 2014-07-08 16:55:46 -0500
17907
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
17908
+ Parameters: {"code"=>"5955d844cc51d8cb326c", "state"=>"0016db9581b1e4d89b79a79802b13e505b4c65a15d58c5d0", "provider"=>"github"}
17909
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
17910
+  (0.1ms) begin transaction
17911
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["confirmed_at", "2014-07-08 21:55:52.306709"], ["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"},\"oXazS0AWiIW3DRnved2jEg\":{\"token\":\"$2a$10$0XCW9.vnimXr1xQ3drB5fOizNHgppA1ohFiw1hGanZD5t0e0JtAFC\",\"expiry\":\"2014-07-22 16:35:54 -0500\"},\"ausM3S5s7XCZjaqFeRKXxg\":{\"token\":\"$2a$10$q2/AXCyUOHDquaVvspR.F.Qxu1r2Nln7/q92Cg4Fe7QZ2YtDHIn16\",\"expiry\":\"2014-07-22 16:55:52 -0500\"}}"], ["updated_at", "2014-07-08 21:55:52.309187"]]
17912
+  (2.0ms) commit transaction
17913
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.5ms)
17914
+ Completed 200 OK in 92ms (Views: 2.5ms | ActiveRecord: 2.8ms)
17915
+
17916
+
17917
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-07-08 16:55:55 -0500
17918
+
17919
+
17920
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-08 16:55:55 -0500
17921
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
17922
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
17923
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 4 ORDER BY "users"."id" ASC LIMIT 1
17924
+  (0.1ms) begin transaction
17925
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"},\"oXazS0AWiIW3DRnved2jEg\":{\"token\":\"$2a$10$0XCW9.vnimXr1xQ3drB5fOizNHgppA1ohFiw1hGanZD5t0e0JtAFC\",\"expiry\":\"2014-07-22 16:35:54 -0500\"},\"ausM3S5s7XCZjaqFeRKXxg\":{\"token\":\"$2a$10$q2/AXCyUOHDquaVvspR.F.Qxu1r2Nln7/q92Cg4Fe7QZ2YtDHIn16\",\"expiry\":\"2014-07-22 16:55:52 -0500\"}}"], ["updated_at", "2014-07-08 21:55:55.876079"]]
17926
+  (1.9ms) commit transaction
17927
+  (0.1ms) begin transaction
17928
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 4 [["tokens", "{\"0ZxOFh9BIw4-O9-Pz3U75w\":{\"token\":\"$2a$10$gHPXI3FkgF78TpdfTmxnb.leB99RQWCEdK69pVeMmq5L4.uoMh7ay\",\"expiry\":\"2014-07-20 19:21:41 -0500\"},\"d2FV5CnOeJ4k-38ldtRkUQ\":{\"token\":\"$2a$10$7vVTz.Va/v.BF/zw6XOlhuwu9jeZJ2NpwEfuCEpfMNEKNbD7SfrXq\",\"expiry\":\"2014-07-20 19:39:36 -0500\"},\"pv8C1vgegA-Muh7Bq3jY8A\":{\"token\":\"$2a$10$qW1rO7S38GR9juTPZ2h94.0uJvYtwjmhTZfZACsPfcbMDSNtv48wa\",\"expiry\":\"2014-07-22 01:25:58 -0500\"},\"Jy-x8_E8iAZADs-kZjNljQ\":{\"token\":\"$2a$10$NZB2ULZTUET6Od26NsPw1esls6ldquf4qPf9ujxPJmBAZlYrjyhr6\",\"expiry\":\"2014-07-22 01:25:36 -0500\"},\"q5l_wAKlIXKlqblSpVQgOg\":{\"token\":\"$2a$10$U73f5GjNexjH9jvwOrHKKeObGygLIZVN3Xx6G9eu1IqDovOZJPZkC\",\"expiry\":\"2014-07-22 01:35:15 -0500\"},\"ewrNY-COIP4SYeKwN8NriA\":{\"token\":\"$2a$10$EsYZAv8Vnb8UOIUzUOHx2.i8FE.ynKQLx8EfLZFpf59lw3l0we8bW\",\"expiry\":\"2014-07-22 02:06:27 -0500\"},\"9aoqGxGat4m6Ex7jgGpw1Q\":{\"token\":\"$2a$10$lmQyqUOGlbHVn8Tih/1dIOl7WaIpkmYBjwbCMGifuV95zX27P4YiO\",\"expiry\":\"2014-07-22 02:15:32 -0500\"},\"o1uAA59DaPlYMf3DGEM77A\":{\"token\":\"$2a$10$WXKnDbcEV.iO9Srx1EPloO14D.8H8/EJhLGO92zSSAgWJh9pi9CK6\",\"expiry\":\"2014-07-22 02:18:55 -0500\"},\"E512I-KBb2Sdb6eC5UPKIg\":{\"token\":\"$2a$10$6KUPCl3TBc.jbdaLbiQQluvhPPSqwWRrMM2RpWojp/KcPbfchi12.\",\"expiry\":\"2014-07-22 02:37:03 -0500\"},\"aWy_DwyYhu_kIbkiMj3uaA\":{\"token\":\"$2a$10$sIFEPDKDv5iv6iWaCt/EweAY1f9V8.2pgH.KneV/pk5UqjQCOGBeS\",\"expiry\":\"2014-07-22 02:53:32 -0500\"},\"janGVImw0yjABplog824Dw\":{\"token\":\"$2a$10$tN4OvdgVJXK7n2aU3i7J/uLJgVh/9MKA8S/5dZzKhkdqvjhibbosy\",\"expiry\":\"2014-07-22 02:54:05 -0500\"},\"tZtvES3RfckYipf_hoX3NA\":{\"token\":\"$2a$10$5O1.Y6w1J3PJtzd5/zAAheYUogc9UzGEjyP0TL2buP5HKkJoAaXbq\",\"expiry\":\"2014-07-22 02:54:43 -0500\"},\"JwGehXi1rgrdAUrnyo8ZkA\":{\"token\":\"$2a$10$.fLSNjPnsiVETn7ORv0qN.MWJK712Tl0qR3MpjrcgKg/KmLANlOsq\",\"expiry\":\"2014-07-22 02:59:25 -0500\"},\"2XBlHvb3fC-zB2KhMLX84A\":{\"token\":\"$2a$10$NEZd77EH.GmDWcLuqfRhnuLOZOoDqB.upW/JcG5XCxejQiBFCIXDm\",\"expiry\":\"2014-07-22 03:09:11 -0500\"},\"qzFphdozcEMmlD6Ips-Dvw\":{\"token\":\"$2a$10$RL92vzn0UrK.Imf5VwboCeXOTWmvngwYUPrX.kfrO5hJV2SghMurS\",\"expiry\":\"2014-07-22 03:05:49 -0500\"},\"No0v5GHY3H5R270tD0OTOg\":{\"token\":\"$2a$10$0rcE8Rrj.r.qEL4RbUdpq.zGU7Pqm0DzQw55ewB90BzmuVDPibsEa\",\"expiry\":\"2014-07-22 03:07:37 -0500\"},\"etwPF4VdA8RzV35j-1DMUQ\":{\"token\":\"$2a$10$K1eaxtYNvevUlOdMaCkdg.7RaEWzUgOOD1mlKSTkkgG8a0HKRqdUG\",\"expiry\":\"2014-07-22 03:08:52 -0500\"},\"D-toTQbbkRASKAX0F1SMDQ\":{\"token\":\"$2a$10$rYmsE/O0g2VzPwfa1PL6lOp1e7JRWdWSTf0XIj3diwrSjRM8c7sNi\",\"expiry\":\"2014-07-22 03:43:16 -0500\"},\"dxfk0gpEhxKe7uyIuKxSjQ\":{\"token\":\"$2a$10$1jWnwZe9aqdYRKXVkeaIf.ZlJeL7W4R395X1YXua5ilbOuZpaCT0O\",\"expiry\":\"2014-07-22 03:10:07 -0500\"},\"3rRZ_pbDDqNL_8zg5uyEGw\":{\"token\":\"$2a$10$HKOnjd42suhyXN.OUCHaOORA/SFo3NiFxCFseNCCgYi/Gi9eTu9Sy\",\"expiry\":\"2014-07-22 03:10:57 -0500\"},\"kWiZD3Yg_hmr11d82ir29Q\":{\"token\":\"$2a$10$0DRV61aPci279btcBUPVwO7VWW59B5NushdPDhs82HQKgtlajABEi\",\"expiry\":\"2014-07-22 03:35:20 -0500\"},\"G-qKlo8dWXuP8D9n8ubwuA\":{\"token\":\"$2a$10$bkMV79jlOtQRYqS3caGQYuS9bxuhYG5AN7yAsG14aJX2VV9Bfs8y6\",\"expiry\":\"2014-07-22 03:36:14 -0500\"},\"A2u4X9kyr55V-8A4vFEHUg\":{\"token\":\"$2a$10$UBKY1xS6qB22BPwqG8X1C.02v1xvyk9XmwQKpZZUP9EYhyqbiGb.C\",\"expiry\":\"2014-07-22 03:36:33 -0500\"},\"SmKGU28yYp7b-vARwzc4vw\":{\"token\":\"$2a$10$sCPw8qnf9gdv5u0kVp9trOe2su6Uwg8/ONAY8B.iGK6MDhLRdH9iK\",\"expiry\":\"2014-07-22 03:41:09 -0500\"},\"7I-jqkorJXrzvc_Z4dnQRg\":{\"token\":\"$2a$10$pK30o/ON/Oe9ArLldVjBduLKvpRCicPKES0qYEE5SflT4Id4kMSQu\",\"expiry\":\"2014-07-22 03:59:26 -0500\"},\"5Gd31VtaAuXbPbxFOBYsqA\":{\"token\":\"$2a$10$L5CcollZ1JmMgwqbNsC1KupYYfnb72gTFfijHlt1FSdJUXFMFu.yu\",\"expiry\":\"2014-07-22 04:37:47 -0500\"},\"pbw-VosTreXGabHCbTW9NA\":{\"token\":\"$2a$10$vTp/a47q0.dwafK274ljF.YTYJqj/tEGTKKn980rQZGuBGMJkXUmm\",\"expiry\":\"2014-07-22 04:40:35 -0500\"},\"Xu2zUeGunA4nH1hGsi-e3w\":{\"token\":\"$2a$10$kBF2WcFM8mh0kwJq0OUae.KkVL5fAG7ukfsNcacvZjxnoSieTfRtu\",\"expiry\":\"2014-07-22 04:42:02 -0500\"},\"Y3xl-wpNlVsjucPpjEPTFg\":{\"token\":\"$2a$10$x4KTfFUEDtw4fwhF2SxDbem./3SMVzbwEnAMv0nF9K7T7AFHCVP52\",\"expiry\":\"2014-07-22 04:42:42 -0500\"},\"WGLowoDx9_Tym69wiquQeQ\":{\"token\":\"$2a$10$EZ4rjUQjVvaAXaR6fXZUxOrd75FZwxvaIezOdWMVqged3EdNMc2AW\",\"expiry\":\"2014-07-22 04:46:26 -0500\"},\"dkvgahUNx2yKPUgAJqa9Ag\":{\"token\":\"$2a$10$fhk.pRZP6lE0lC8l7sSIoelPaQ4bRQ3fvl47z9tuBUUqk7TrFjm06\",\"expiry\":\"2014-07-22 04:47:59 -0500\"},\"LmuPjFzsRTt_7yxW7Gxbyg\":{\"token\":\"$2a$10$E3YdDxmrLGT5Pa94QzN/WOB3BTIRfN4P2LfnARDYr1FSAgo.OtKyS\",\"expiry\":\"2014-07-22 04:49:17 -0500\"},\"a5xuA9kynQkmXFb1r5IiSw\":{\"token\":\"$2a$10$DftKZGCqvD.3v.rGXYdYBO18Ucw864812b2kuB31fiok3BfdhKiGO\",\"expiry\":\"2014-07-22 04:49:25 -0500\"},\"fa73nMcS7kJ15bQWoPjzFA\":{\"token\":\"$2a$10$0JCU3c.A2mWPL6cT8oclqu4WrRDjZtVGCNJ68eQ7VN5MjgDHptjQW\",\"expiry\":\"2014-07-22 16:09:05 -0500\"},\"z-fNGESQ_98qAZyt1qngbA\":{\"token\":\"$2a$10$faDKEiSMPmk2XEadIsH4u.2Qg2A1PLxhEwWVBHp5/hpPiVnuUS5eK\",\"expiry\":\"2014-07-22 16:07:34 -0500\"},\"YJZ7J3dkQDS4xaTpRulprA\":{\"token\":\"$2a$10$r6MCPK3OKd8gn7FCV23/rOKjI/VsyJsXPIA7ae33U.h1uYdUsH5W.\",\"expiry\":\"2014-07-22 16:07:59 -0500\"},\"d1KQ3OLYWv1Dd16SPoPK6A\":{\"token\":\"$2a$10$Gtt9EAuXHdV5ff1vusio6Ot8jdbRrzLdkIsIYM0Datqc.re8Yj5qu\",\"expiry\":\"2014-07-22 16:08:34 -0500\"},\"6LV-JDiTMi8pvWAsI8JmeA\":{\"token\":\"$2a$10$NhBvmmE7h7.IhfljkOF2cuhsaZ.Iu5F/8LGCQlipxd0cUx9rRpofG\",\"expiry\":\"2014-07-22 16:09:16 -0500\"},\"NOrE-TGLQc_vJFKtAXMY0Q\":{\"token\":\"$2a$10$L1CtUGAdI/YSVA75U88wPeOeug7Pb6zEI0HKHO99jm1m.uOx6NKTG\",\"expiry\":\"2014-07-22 16:09:27 -0500\"},\"PwpW4JPcTR2XWGeyjs7ngg\":{\"token\":\"$2a$10$hRwCUuG2BYdHzxdtK/.PI.HGkOf7Lgrr/3e2k7k6sVkPeIP.RfUQK\",\"expiry\":\"2014-07-22 16:10:51 -0500\"},\"wY0djoFexA2fqQjpN_Zr3w\":{\"token\":\"$2a$10$7C1iJyYzxMkVD5hCMQOPl.Ab9ie9b.erGMBaHupcWRDGmeWunlNBi\",\"expiry\":\"2014-07-22 16:11:48 -0500\"},\"FtJLDFn3o5TWflHbiqqIWw\":{\"token\":\"$2a$10$AFTxQqhff4ONQhgO1eMNcOXrpTkyUiIflt0KNNXKK5h1dRIsNo7om\",\"expiry\":\"2014-07-22 16:12:35 -0500\"},\"vdNIrIkXk1tjqpUiUdw--w\":{\"token\":\"$2a$10$twL9lLG4K.3Su7GqosD.5eWrqMRfufNPlZWeINR/nYABeyN9kEUN2\",\"expiry\":\"2014-07-22 16:13:30 -0500\"},\"xRBvElucvelc-QZlW0VOmw\":{\"token\":\"$2a$10$DEQkDT21ghpYs2/vrVoVAuWSujmqnSCc7Wx3NoEpQ7W2S.Gl1D64y\",\"expiry\":\"2014-07-22 16:14:38 -0500\"},\"HHsmREFHkko5ah2FVOQQRA\":{\"token\":\"$2a$10$j/4BItK855bN0ZkkjZoq0ewtZtFmY8cTUwc.8rSuLZtLjyE1yBYw6\",\"expiry\":\"2014-07-22 16:16:28 -0500\"},\"5XHa2nYNvysLC6SHyaO5QQ\":{\"token\":\"$2a$10$rMUgDnhp5WTMWYRpkbLnX.27qUMigTwb1pMGvIbph2.6kXok7fRKe\",\"expiry\":\"2014-07-22 16:17:06 -0500\"},\"Hbx_SsimSBesBNYUsXKSOQ\":{\"token\":\"$2a$10$cqcr4I.jzyT97ZMsQMNzAOqTXRiRukSHgO9hYcLUngM1TCIjGflPy\",\"expiry\":\"2014-07-22 16:17:13 -0500\"},\"9f_9xSnLGyyGaclrsZsCrQ\":{\"token\":\"$2a$10$RJwtUrJoiUgyjzLnXyo1..0b2MgHqSE8Bd/Nrn78M4IKM8zdJ.d3a\",\"expiry\":\"2014-07-22 16:19:44 -0500\"},\"8ZM0HfTCaxV3LFR7LHa51Q\":{\"token\":\"$2a$10$OJwJ1f4Lprfk0jG8ZSUuWut.xl93ljwxu00u2QJ.ZGZVkd/aIA4j.\",\"expiry\":\"2014-07-22 16:24:54 -0500\"},\"pzgAfSA_GKdlDCN8kgEvJw\":{\"token\":\"$2a$10$8WhP2zOyiFwF/wEXPMbIzOCogkGq3GJGr2lIBKZNsD6hbaC4lBn2m\",\"expiry\":\"2014-07-22 16:26:18 -0500\"},\"U6fXdDggyfR9moVlnIovBw\":{\"token\":\"$2a$10$jvZP.hJbgwObC4hqZV.PP.ZZ0jYEaSGmmcTXmav2SllNy.OVrE8YW\",\"expiry\":\"2014-07-22 16:26:30 -0500\"},\"oXazS0AWiIW3DRnved2jEg\":{\"token\":\"$2a$10$0XCW9.vnimXr1xQ3drB5fOizNHgppA1ohFiw1hGanZD5t0e0JtAFC\",\"expiry\":\"2014-07-22 16:35:54 -0500\"},\"ausM3S5s7XCZjaqFeRKXxg\":{\"token\":\"$2a$10$g7fgit6eRIzwrCUMqwYRLO1wyHeZqdkjo4N2ou0zITfQiUkmEMPu.\",\"expiry\":\"2014-07-22 16:55:55 -0500\"}}"], ["updated_at", "2014-07-08 21:55:55.938671"]]
17929
+  (0.8ms) commit transaction
17930
+ Completed 200 OK in 131ms (Views: 0.2ms | ActiveRecord: 3.6ms)
17931
+
17932
+
17933
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-07-08 16:56:18 -0500
17934
+
17935
+
17936
+ Started POST "/auth" for 127.0.0.1 at 2014-07-08 16:56:18 -0500
17937
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
17938
+ Parameters: {"email"=>"test+bbb@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "registration"=>{"email"=>"test+bbb@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/"}}
17939
+ Unpermitted parameters: registration
17940
+ Unpermitted parameters: registration
17941
+  (0.1ms) begin transaction
17942
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = 'email' AND "users"."email" = 'test+bbb@test.com'
17943
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '3e4dbeabfb3814a42d44aaf15af6436036d84e8adc53c454ddcb41400139e0ce' ORDER BY "users"."id" ASC LIMIT 1
17944
+ Binary data inserted for `string` type on column `confirmation_token`
17945
+ Binary data inserted for `string` type on column `encrypted_password`
17946
+ SQL (0.3ms) INSERT INTO "users" ("confirm_success_url", "confirmation_sent_at", "confirmation_token", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://ng-token-auth.dev/"], ["confirmation_sent_at", "2014-07-08 21:56:19.132496"], ["confirmation_token", "3e4dbeabfb3814a42d44aaf15af6436036d84e8adc53c454ddcb41400139e0ce"], ["created_at", "2014-07-08 21:56:18.954117"], ["email", "test+bbb@test.com"], ["encrypted_password", "$2a$10$LTaDDxxBFK0GJoA1AUiMCu0sl3/KgDx2OQc7pPs3m9/e7z7hviLmi"], ["provider", "email"], ["tokens", "{}"], ["uid", "test+bbb@test.com"], ["updated_at", "2014-07-08 21:56:18.954117"]]
17947
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/mailer/confirmation_instructions.html.erb (0.8ms)
17948
+
17949
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 303.6ms
17950
+
17951
+ Sent mail to test+bbb@test.com (48.9ms)
17952
+ Date: Tue, 08 Jul 2014 16:56:19 -0500
17953
+ From: please-change-me-at-config-initializers-devise@example.com
17954
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
17955
+ To: test+bbb@test.com
17956
+ Message-ID: <53bc69036c34f_8a273ff771c2dbe0676fe@lynns-mbp.mail>
17957
+ Subject: Confirmation instructions
17958
+ Mime-Version: 1.0
17959
+ Content-Type: text/html;
17960
+ charset=UTF-8
17961
+ Content-Transfer-Encoding: 7bit
17962
+
17963
+ <p>Welcome test+bbb@test.com!</p>
17964
+
17965
+ <p>You can confirm your account email through the link below:</p>
17966
+
17967
+ <p><a href="http://localhost:3000/auth/confirmation?confirmation_token=5KmHZYHf9k_yXQE-ty3H">Confirm my account</a></p>
17968
+
17969
+  (0.8ms) commit transaction
17970
+ Completed 200 OK in 603ms (Views: 0.3ms | ActiveRecord: 1.5ms)
17971
+
17972
+
17973
+ Started GET "/auth/confirmation?confirmation_token=5KmHZYHf9k_yXQE-ty3H" for 127.0.0.1 at 2014-07-08 16:56:53 -0500
17974
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
17975
+ Parameters: {"confirmation_token"=>"5KmHZYHf9k_yXQE-ty3H"}
17976
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = '3e4dbeabfb3814a42d44aaf15af6436036d84e8adc53c454ddcb41400139e0ce' ORDER BY "users"."id" ASC LIMIT 1
17977
+  (0.0ms) begin transaction
17978
+ SQL (0.2ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["confirmation_token", nil], ["confirmed_at", "2014-07-08 21:56:53.375823"], ["tokens", "{}"], ["updated_at", "2014-07-08 21:56:53.376057"]]
17979
+  (2.2ms) commit transaction
17980
+  (0.1ms) begin transaction
17981
+ SQL (0.2ms) UPDATE "users" SET "confirmation_token" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["confirmation_token", "5KmHZYHf9k_yXQE-ty3H"], ["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$p1LZ/g3tLd6mvLT6HgaxROjRqzHFSGi9G.0U80lE0EA3SXf7YiH6C\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-08 21:56:53.439118"]]
17982
+  (1.2ms) commit transaction
17983
+ Redirected to http://ng-token-auth.dev/?client_id=XjA47iCW_4vRoE_pEWf37g&token=F4I-xh2lGkRL7NfexlZjGw&uid=test%2Bbbb%40test.com
17984
+  (0.1ms) begin transaction
17985
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$p1LZ/g3tLd6mvLT6HgaxROjRqzHFSGi9G.0U80lE0EA3SXf7YiH6C\",\"expiry\":\"2014-07-22 16:56:53 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-08 21:56:53.504098"]]
17986
+  (1.3ms) commit transaction
17987
+ Completed 302 Found in 132ms (ActiveRecord: 5.8ms)
17988
+
17989
+
17990
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-08 16:56:54 -0500
17991
+
17992
+
17993
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-08 16:56:54 -0500
17994
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
17995
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
17996
+  (0.1ms) begin transaction
17997
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$OdR4Pnen2.Q3r9LYpfrbvutFv5wLU4lqpTnra3289y9DXIgqkB49S\",\"expiry\":\"2014-07-22 16:56:54 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-08 21:56:54.379012"]]
17998
+  (1.9ms) commit transaction
17999
+ Completed 200 OK in 126ms (Views: 0.3ms | ActiveRecord: 2.3ms)
18000
+
18001
+
18002
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-08 16:56:57 -0500
18003
+
18004
+
18005
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-08 16:56:57 -0500
18006
+ Processing by DemoController#members_only as HTML
18007
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
18008
+  (0.1ms) begin transaction
18009
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$uojxcJ78paUc4TaspEeaZ.fMk6oVlPbOPr3vGsdWWgumpKfR9A0IK\",\"expiry\":\"2014-07-22 16:56:57 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-08 21:56:57.410187"]]
18010
+  (1.6ms) commit transaction
18011
+ Completed 200 OK in 123ms (Views: 0.5ms | ActiveRecord: 2.1ms)
18012
+
18013
+
18014
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-08 16:57:01 -0500
18015
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
18016
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test+bbb@test.com' LIMIT 1
18017
+  (0.1ms) begin transaction
18018
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 7 [["tokens", "{\"XjA47iCW_4vRoE_pEWf37g\":{\"token\":\"$2a$10$uAZoLY0s1zlhu5dKbWtKB.w7eSIurYxLEpl5cqgr6tLrN/HzgMaGq\",\"expiry\":\"2014-07-22 16:57:01 -0500\"},\"\":{\"token\":\"$2a$10$XskEVLZdgP4t1Rb0/ImbcOpalr0vqX.ovemetpBqXuZ3BCytB7FJW\",\"expiry\":\"2014-07-22 16:56:53 -0500\"}}"], ["updated_at", "2014-07-08 21:57:01.228969"]]
18019
+  (1.8ms) commit transaction
18020
+ Completed 200 OK in 128ms (Views: 0.3ms | ActiveRecord: 2.5ms)