devise_token_auth 0.1.17 → 0.1.18

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: d6fddec01685e543399f2fa156c7c5b3a1a00cc8
4
- data.tar.gz: d51505ea9e19cac45f566c8a0159202363d34062
3
+ metadata.gz: f24edb4af4fee31bc5c77072b92812bbe0cb2129
4
+ data.tar.gz: ea93c5bf5a750cd737eb52fac07f4b9226ecc31a
5
5
  SHA512:
6
- metadata.gz: bf7d4346373fab8211fb5b09aaf7671178d17630a2ee7a496baa5fd528d0f10977acc64e1e28baa42103a371c3044f13ec606bec96caec69dc98824c22143818
7
- data.tar.gz: 1812e0973a0bff3a54567b38cc862669b6cc7990383b9b48245ff6c38c0f2198934b4925e5305a88c3fa91adee221137f88af529fb7e1d26d5105e0bd9b713e9
6
+ metadata.gz: b7826b9eb84c15688f007dabc52ed76c8e430d821db75417ce92e79724f4ac06195c7da28932b775143a4638be93505cc7d6211055e5180ee01f79a177b6f75c
7
+ data.tar.gz: c34c3a6378dd57ac8d0cb715fcbbd4ec4a44cf8385b8856b31c470603023221d6ba77941791b46b58d9a6515309c528310c662d3522a6dcd8b723f6731b63f05
@@ -45,7 +45,7 @@ module DeviseTokenAuth
45
45
 
46
46
  @user.tokens[@client_id] = {
47
47
  token: BCrypt::Password.create(@token),
48
- expiry: Time.now + DeviseTokenAuth.token_lifespan
48
+ expiry: (Time.now + DeviseTokenAuth.token_lifespan).to_i
49
49
  }
50
50
 
51
51
  # sync user info with provider, update/generate auth token
data/app/models/user.rb CHANGED
@@ -16,13 +16,15 @@ class User < ActiveRecord::Base
16
16
  def valid_token?(token, client_id='default')
17
17
  client_id ||= 'default'
18
18
 
19
+ return false unless self.tokens[client_id]
20
+
19
21
  return true if (
20
22
  # ensure that expiry and token are set
21
23
  self.tokens[client_id]['expiry'] and
22
24
  self.tokens[client_id]['token'] and
23
25
 
24
26
  # ensure that the token was created within the last two weeks
25
- self.tokens[client_id]['expiry'] > DeviseTokenAuth.token_lifespan.ago.to_f * 1000 and
27
+ DateTime.strptime(self.tokens[client_id]['expiry'].to_s, '%s') > DeviseTokenAuth.token_lifespan.ago and
26
28
 
27
29
  # ensure that the token is valid
28
30
  BCrypt::Password.new(self.tokens[client_id]['token']) == token
@@ -51,7 +53,7 @@ class User < ActiveRecord::Base
51
53
  last_token ||= nil
52
54
  token = SecureRandom.urlsafe_base64(nil, false)
53
55
  token_hash = BCrypt::Password.create(token)
54
- expiry = (Time.now.to_f + DeviseTokenAuth.token_lifespan).to_i * 1000
56
+ expiry = (Time.now + DeviseTokenAuth.token_lifespan).to_i
55
57
 
56
58
  if self.tokens[client_id] and self.tokens[client_id]['token']
57
59
  last_token = self.tokens[client_id]['token']
@@ -9,7 +9,7 @@ module DeviseTokenAuth
9
9
 
10
10
  self.change_headers_on_each_request = true
11
11
  self.token_lifespan = 2.weeks
12
- self.batch_request_buffer_throttle = 2.seconds
12
+ self.batch_request_buffer_throttle = 5.seconds
13
13
 
14
14
  def self.setup(&block)
15
15
  yield self
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.17"
2
+ VERSION = "0.1.18"
3
3
  end
@@ -13,5 +13,5 @@ DeviseTokenAuth.setup do |config|
13
13
  # time. In this case, each request in the batch will need to share the same
14
14
  # auth token. This setting determines how far apart the requests can be while
15
15
  # still using the same auth token.
16
- #config.batch_request_buffer_throttle = 2.seconds
16
+ #config.batch_request_buffer_throttle = 5.seconds
17
17
  end
Binary file
@@ -13,9 +13,6 @@
13
13
 
14
14
  ActiveRecord::Schema.define(version: 20140713062503) do
15
15
 
16
- # These are extensions that must be enabled in order to support this database
17
- enable_extension "plpgsql"
18
-
19
16
  create_table "users", force: true do |t|
20
17
  t.string "email"
21
18
  t.string "encrypted_password", default: "", null: false
@@ -42,8 +39,8 @@ ActiveRecord::Schema.define(version: 20140713062503) do
42
39
  t.datetime "updated_at"
43
40
  end
44
41
 
45
- add_index "users", ["email"], name: "index_users_on_email", using: :btree
46
- add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true, using: :btree
47
- add_index "users", ["uid"], name: "index_users_on_uid", unique: true, using: :btree
42
+ add_index "users", ["email"], name: "index_users_on_email"
43
+ add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
44
+ add_index "users", ["uid"], name: "index_users_on_uid", unique: true
48
45
 
49
46
  end
@@ -20147,3 +20147,3318 @@ Migrating to DeviseTokenAuthCreateUsers (20140713062503)
20147
20147
  SQL (0.1ms) INSERT INTO `schema_migrations` (`version`) VALUES ('20140713062503')
20148
20148
   (0.2ms) COMMIT
20149
20149
  ActiveRecord::SchemaMigration Load (0.2ms) SELECT `schema_migrations`.* FROM `schema_migrations`
20150
+
20151
+
20152
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:43:12 -0500
20153
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
20154
+
20155
+ ActiveRecord::PendingMigrationError (
20156
+
20157
+ Migrations are pending. To resolve this issue, run:
20158
+
20159
+ bin/rake db:migrate RAILS_ENV=development
20160
+
20161
+ ):
20162
+ activerecord (4.1.2) lib/active_record/migration.rb:389:in `check_pending!'
20163
+ activerecord (4.1.2) lib/active_record/migration.rb:377:in `call'
20164
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20165
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20166
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20167
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20168
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20169
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20170
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20171
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20172
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20173
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20174
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20175
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20176
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20177
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20178
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20179
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20180
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20181
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20182
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20183
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20184
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20185
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20186
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20187
+ /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'
20188
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20189
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20190
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20191
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20192
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20193
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20194
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20195
+
20196
+
20197
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
20198
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
20199
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
20200
+ 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 (17.2ms)
20201
+
20202
+
20203
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 03:43:15 -0500
20204
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20205
+
20206
+ ActiveRecord::PendingMigrationError (
20207
+
20208
+ Migrations are pending. To resolve this issue, run:
20209
+
20210
+ bin/rake db:migrate RAILS_ENV=development
20211
+
20212
+ ):
20213
+ activerecord (4.1.2) lib/active_record/migration.rb:389:in `check_pending!'
20214
+ activerecord (4.1.2) lib/active_record/migration.rb:377:in `call'
20215
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20216
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20217
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20218
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20219
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20220
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20221
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20222
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20223
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20224
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20225
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20226
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20227
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20228
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20229
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20230
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20231
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20232
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20233
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20234
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20235
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20236
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20237
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20238
+ /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'
20239
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20240
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20241
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20242
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20243
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20244
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20245
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20246
+
20247
+
20248
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
20249
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
20250
+ 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)
20251
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms)
20252
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20253
+ Migrating to DeviseTokenAuthCreateUsers (20140713062503)
20254
+  (0.1ms) begin transaction
20255
+  (0.1ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "unconfirmed_email" varchar(255), "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "tokens" varchar(255) DEFAULT '{}', "created_at" datetime, "updated_at" datetime) 
20256
+ SQLite3::SQLException: table "users" already exists: CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "unconfirmed_email" varchar(255), "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "tokens" varchar(255) DEFAULT '{}', "created_at" datetime, "updated_at" datetime)
20257
+  (0.0ms) rollback transaction
20258
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
20259
+  (0.0ms) select sqlite_version(*)
20260
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20261
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20262
+ Migrating to DeviseTokenAuthCreateUsers (20140713062503)
20263
+  (0.0ms) begin transaction
20264
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "unconfirmed_email" varchar(255), "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "tokens" varchar(255) DEFAULT '{}', "created_at" datetime, "updated_at" datetime)
20265
+  (0.1ms) CREATE INDEX "index_users_on_email" ON "users" ("email")
20266
+  (0.1ms) SELECT sql
20267
+ FROM sqlite_master
20268
+ WHERE name='index_users_on_email' AND type='index'
20269
+ UNION ALL
20270
+ SELECT sql
20271
+ FROM sqlite_temp_master
20272
+ WHERE name='index_users_on_email' AND type='index'
20273
+
20274
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")
20275
+  (0.1ms) SELECT sql
20276
+ FROM sqlite_master
20277
+ WHERE name='index_users_on_uid' AND type='index'
20278
+ UNION ALL
20279
+ SELECT sql
20280
+ FROM sqlite_temp_master
20281
+ WHERE name='index_users_on_uid' AND type='index'
20282
+
20283
+  (0.1ms)  SELECT sql
20284
+ FROM sqlite_master
20285
+ WHERE name='index_users_on_email' AND type='index'
20286
+ UNION ALL
20287
+ SELECT sql
20288
+ FROM sqlite_temp_master
20289
+ WHERE name='index_users_on_email' AND type='index'
20290
+ 
20291
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
20292
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140713062503"]]
20293
+  (0.8ms) commit transaction
20294
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20295
+  (0.1ms) SELECT sql
20296
+ FROM sqlite_master
20297
+ WHERE name='index_users_on_reset_password_token' AND type='index'
20298
+ UNION ALL
20299
+ SELECT sql
20300
+ FROM sqlite_temp_master
20301
+ WHERE name='index_users_on_reset_password_token' AND type='index'
20302
+
20303
+  (0.1ms)  SELECT sql
20304
+ FROM sqlite_master
20305
+ WHERE name='index_users_on_uid' AND type='index'
20306
+ UNION ALL
20307
+ SELECT sql
20308
+ FROM sqlite_temp_master
20309
+ WHERE name='index_users_on_uid' AND type='index'
20310
+ 
20311
+  (0.1ms) SELECT sql
20312
+ FROM sqlite_master
20313
+ WHERE name='index_users_on_email' AND type='index'
20314
+ UNION ALL
20315
+ SELECT sql
20316
+ FROM sqlite_temp_master
20317
+ WHERE name='index_users_on_email' AND type='index'
20318
+
20319
+
20320
+
20321
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 03:43:53 -0500
20322
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
20323
+
20324
+
20325
+ Started GET "/auth/github/callback?code=dec8bc85ea09a8d097ba&state=295bbc9fb2297084cfd8f1061b770a4a8df86463d5637a5a" for 127.0.0.1 at 2014-07-13 03:43:54 -0500
20326
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
20327
+ Parameters: {"code"=>"dec8bc85ea09a8d097ba", "state"=>"295bbc9fb2297084cfd8f1061b770a4a8df86463d5637a5a", "provider"=>"github"}
20328
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
20329
+  (0.1ms) begin transaction
20330
+ Binary data inserted for `string` type on column `encrypted_password`
20331
+ SQL (0.5ms) INSERT INTO "users" ("confirmed_at", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["confirmed_at", "2014-07-13 08:43:55.552394"], ["created_at", "2014-07-13 08:43:55.554884"], ["email", "lynn.dylan.hurley+github@gmail.com"], ["encrypted_password", "$2a$10$kaCwloxzKmqUYfmRr9HbyeNwpXYjZbNe71.CQB3o0bEZMfmgAkyB6"], ["image", "https://avatars.githubusercontent.com/u/468037?"], ["name", "Lynn Dylan Hurley"], ["nickname", "lynndylanhurley"], ["provider", "github"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"}}"], ["uid", "468037"], ["updated_at", "2014-07-13 08:43:55.554884"]]
20332
+  (1.8ms) commit transaction
20333
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.5ms)
20334
+ Completed 200 OK in 148ms (Views: 2.5ms | ActiveRecord: 2.8ms)
20335
+
20336
+
20337
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:43:58 -0500
20338
+
20339
+
20340
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:43:58 -0500
20341
+ Processing by DemoController#members_only as HTML
20342
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20343
+ Completed 500 Internal Server Error in 1ms
20344
+
20345
+ ArgumentError (comparison of String with 1404031438933.92 failed):
20346
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `>'
20347
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
20348
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
20349
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
20350
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
20351
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
20352
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
20353
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
20354
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
20355
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
20356
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
20357
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
20358
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20359
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
20360
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
20361
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
20362
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20363
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
20364
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
20365
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
20366
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
20367
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
20368
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
20369
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
20370
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
20371
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20372
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20373
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20374
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20375
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20376
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20377
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20378
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20379
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20380
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20381
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20382
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20383
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
20384
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
20385
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
20386
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
20387
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
20388
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
20389
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20390
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
20391
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
20392
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
20393
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
20394
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
20395
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
20396
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
20397
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
20398
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
20399
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20400
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20401
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20402
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20403
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20404
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20405
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20406
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20407
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20408
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20409
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20410
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20411
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20412
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20413
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20414
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20415
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20416
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20417
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20418
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20419
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20420
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20421
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20422
+ /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'
20423
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20424
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20425
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20426
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20427
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20428
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20429
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20430
+
20431
+
20432
+ 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.7ms)
20433
+ 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.5ms)
20434
+ 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)
20435
+ 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.5ms)
20436
+
20437
+
20438
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:45:26 -0500
20439
+
20440
+
20441
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:45:26 -0500
20442
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
20443
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20444
+ Completed 500 Internal Server Error in 13ms
20445
+
20446
+ NoMethodError (undefined method `*' for Sun, 29 Jun 2014 08:45:26 UTC +00:00:Time):
20447
+ activesupport (4.1.2) lib/active_support/time_with_zone.rb:364:in `method_missing'
20448
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
20449
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
20450
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
20451
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
20452
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
20453
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
20454
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
20455
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
20456
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
20457
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
20458
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
20459
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20460
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
20461
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
20462
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
20463
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20464
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
20465
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
20466
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
20467
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
20468
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
20469
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
20470
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
20471
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
20472
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20473
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20474
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20475
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20476
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20477
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
20478
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
20479
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20480
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20481
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20482
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20483
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20484
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20485
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20486
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20487
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20488
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20489
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20490
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20491
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
20492
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
20493
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
20494
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
20495
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
20496
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
20497
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20498
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
20499
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
20500
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
20501
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
20502
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
20503
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
20504
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
20505
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
20506
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
20507
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20508
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20509
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20510
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20511
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20512
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20513
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20514
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20515
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20516
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20517
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20518
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20519
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20520
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20521
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20522
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20523
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20524
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20525
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20526
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20527
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20528
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20529
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20530
+ /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'
20531
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20532
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20533
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20534
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20535
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20536
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20537
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20538
+
20539
+
20540
+ 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)
20541
+ 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)
20542
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
20543
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms)
20544
+
20545
+
20546
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:46:52 -0500
20547
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
20548
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20549
+ Completed 500 Internal Server Error in 11ms
20550
+
20551
+ TypeError (no implicit conversion of Float into String):
20552
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
20553
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
20554
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
20555
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
20556
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
20557
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
20558
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
20559
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
20560
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
20561
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
20562
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
20563
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
20564
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
20565
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20566
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
20567
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
20568
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
20569
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20570
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
20571
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
20572
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
20573
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
20574
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
20575
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
20576
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
20577
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
20578
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20579
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20580
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20581
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20582
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20583
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
20584
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
20585
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20586
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20587
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20588
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20589
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20590
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20591
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20592
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20593
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20594
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20595
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20596
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20597
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
20598
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
20599
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
20600
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
20601
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
20602
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
20603
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20604
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
20605
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
20606
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
20607
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
20608
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
20609
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
20610
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
20611
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
20612
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
20613
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20614
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20615
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20616
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20617
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20618
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20619
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20620
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20621
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20622
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20623
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20624
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20625
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20626
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20627
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20628
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20629
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20630
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20631
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20632
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20633
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20634
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20635
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20636
+ /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'
20637
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20638
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20639
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20640
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20641
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20642
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20643
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20644
+
20645
+
20646
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
20647
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
20648
+ 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)
20649
+ 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)
20650
+
20651
+
20652
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 03:46:53 -0500
20653
+
20654
+
20655
+ Started GET "/auth/github/callback?code=8204ea2407e21bc2dea0&state=547ef535ee79bbce48dfdec070cba30b6947942a3eb49d2c" for 127.0.0.1 at 2014-07-13 03:46:54 -0500
20656
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
20657
+ Parameters: {"code"=>"8204ea2407e21bc2dea0", "state"=>"547ef535ee79bbce48dfdec070cba30b6947942a3eb49d2c", "provider"=>"github"}
20658
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
20659
+  (0.1ms) begin transaction
20660
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 08:46:55.004289"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"}}"], ["updated_at", "2014-07-13 08:46:55.005081"]]
20661
+  (1.6ms) commit transaction
20662
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
20663
+ Completed 200 OK in 68ms (Views: 1.6ms | ActiveRecord: 2.2ms)
20664
+
20665
+
20666
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:46:58 -0500
20667
+ Processing by DemoController#members_only as HTML
20668
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20669
+ Completed 500 Internal Server Error in 1ms
20670
+
20671
+ TypeError (no implicit conversion of Float into String):
20672
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
20673
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
20674
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
20675
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
20676
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
20677
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
20678
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
20679
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
20680
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
20681
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
20682
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
20683
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
20684
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
20685
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20686
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
20687
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
20688
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
20689
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20690
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
20691
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
20692
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
20693
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
20694
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
20695
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
20696
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
20697
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
20698
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20699
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20700
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20701
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20702
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20703
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20704
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20705
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20706
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20707
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20708
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20709
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20710
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
20711
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
20712
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
20713
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
20714
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
20715
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
20716
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20717
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
20718
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
20719
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
20720
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
20721
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
20722
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
20723
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
20724
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
20725
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
20726
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20727
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20728
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20729
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20730
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20731
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20732
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20733
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20734
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20735
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20736
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20737
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20738
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20739
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20740
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20741
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20742
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20743
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20744
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20745
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20746
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20747
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20748
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20749
+ /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'
20750
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20751
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20752
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20753
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20754
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20755
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20756
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20757
+
20758
+
20759
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
20760
+ 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)
20761
+ 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)
20762
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
20763
+
20764
+
20765
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:47:26 -0500
20766
+ Processing by DemoController#members_only as HTML
20767
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20768
+ Completed 500 Internal Server Error in 13ms
20769
+
20770
+ ArgumentError (no time information in "2.014"):
20771
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:327:in `parse'
20772
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
20773
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
20774
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
20775
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
20776
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
20777
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
20778
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
20779
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
20780
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
20781
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
20782
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
20783
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20784
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
20785
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
20786
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
20787
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20788
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
20789
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
20790
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
20791
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
20792
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
20793
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
20794
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
20795
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
20796
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20797
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20798
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20799
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20800
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20801
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20802
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20803
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20804
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20805
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20806
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20807
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20808
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
20809
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
20810
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
20811
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
20812
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
20813
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
20814
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20815
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
20816
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
20817
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
20818
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
20819
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
20820
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
20821
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
20822
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
20823
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
20824
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20825
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20826
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20827
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20828
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20829
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20830
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20831
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20832
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20833
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20834
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20835
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20836
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20837
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20838
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20839
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20840
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20841
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20842
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20843
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20844
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20845
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20846
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20847
+ /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'
20848
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20849
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20850
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20851
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20852
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20853
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20854
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20855
+
20856
+
20857
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
20858
+ 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)
20859
+ 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)
20860
+ 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.9ms)
20861
+
20862
+
20863
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:49:23 -0500
20864
+ Processing by DemoController#members_only as HTML
20865
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20866
+ Completed 500 Internal Server Error in 12ms
20867
+
20868
+ TypeError (no implicit conversion of Fixnum into String):
20869
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `strptime'
20870
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
20871
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
20872
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
20873
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
20874
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
20875
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
20876
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
20877
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
20878
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
20879
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
20880
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
20881
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
20882
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
20883
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
20884
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
20885
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
20886
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
20887
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
20888
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
20889
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
20890
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
20891
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
20892
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
20893
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
20894
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
20895
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
20896
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
20897
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
20898
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20899
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20900
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20901
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20902
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20903
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20904
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
20905
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
20906
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
20907
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
20908
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
20909
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
20910
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
20911
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
20912
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
20913
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
20914
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
20915
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
20916
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
20917
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
20918
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
20919
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
20920
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
20921
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
20922
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
20923
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
20924
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
20925
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
20926
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
20927
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20928
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
20929
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
20930
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
20931
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
20932
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
20933
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
20934
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
20935
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
20936
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
20937
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
20938
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
20939
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
20940
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
20941
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
20942
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
20943
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
20944
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
20945
+ /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'
20946
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
20947
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
20948
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
20949
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
20950
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
20951
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
20952
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
20953
+
20954
+
20955
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
20956
+ 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)
20957
+ 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)
20958
+ 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.9ms)
20959
+
20960
+
20961
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:50:00 -0500
20962
+ Processing by DemoController#members_only as HTML
20963
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20964
+ Completed 401 Unauthorized in 14ms (Views: 0.2ms | ActiveRecord: 0.8ms)
20965
+
20966
+
20967
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:50:04 -0500
20968
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
20969
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20970
+ Completed 401 Unauthorized in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
20971
+
20972
+
20973
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 03:50:06 -0500
20974
+
20975
+
20976
+ Started GET "/auth/github/callback?code=f6023faa3c4bb626e606&state=0e6112feb205a3456c74b6cdd697b8262bc7b0385aaac969" for 127.0.0.1 at 2014-07-13 03:50:06 -0500
20977
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
20978
+ Parameters: {"code"=>"f6023faa3c4bb626e606", "state"=>"0e6112feb205a3456c74b6cdd697b8262bc7b0385aaac969", "provider"=>"github"}
20979
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
20980
+  (0.1ms) begin transaction
20981
+ SQL (0.5ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 08:50:07.687662"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"expiry\":\"2014-07-27 03:50:07 -0500\"}}"], ["updated_at", "2014-07-13 08:50:07.688391"]]
20982
+  (1.5ms) commit transaction
20983
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
20984
+ Completed 200 OK in 68ms (Views: 1.7ms | ActiveRecord: 2.3ms)
20985
+
20986
+
20987
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:50:11 -0500
20988
+ Processing by DemoController#members_only as HTML
20989
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20990
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
20991
+
20992
+
20993
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:50:41 -0500
20994
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
20995
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
20996
+ Completed 401 Unauthorized in 72510ms (Views: 0.2ms | ActiveRecord: 0.6ms)
20997
+
20998
+
20999
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:52:08 -0500
21000
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21001
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21002
+  (0.1ms) begin transaction
21003
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"}}"], ["updated_at", "2014-07-13 08:52:08.347267"]]
21004
+  (1.7ms) commit transaction
21005
+ Completed 200 OK in 159ms (Views: 0.3ms | ActiveRecord: 3.1ms)
21006
+
21007
+
21008
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:52:11 -0500
21009
+ Processing by DemoController#members_only as HTML
21010
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21011
+ Completed 500 Internal Server Error in 1ms
21012
+
21013
+ TypeError (no implicit conversion of Fixnum into String):
21014
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
21015
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
21016
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
21017
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21018
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21019
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21020
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21021
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21022
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21023
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21024
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21025
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21026
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21027
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21028
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21029
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21030
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21031
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21032
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21033
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21034
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21035
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21036
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21037
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21038
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21039
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21040
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21041
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21042
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21043
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21044
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21045
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21046
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21047
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21048
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21049
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21050
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21051
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21052
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21053
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21054
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21055
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21056
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21057
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21058
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21059
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21060
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21061
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21062
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21063
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21064
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21065
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21066
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21067
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21068
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21069
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21070
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21071
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21072
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21073
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21074
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21075
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21076
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21077
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21078
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21079
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21080
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21081
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21082
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21083
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21084
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21085
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21086
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21087
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21088
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21089
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21090
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21091
+ /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'
21092
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21093
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21094
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21095
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21096
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21097
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21098
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21099
+
21100
+
21101
+ 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)
21102
+ 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)
21103
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
21104
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
21105
+
21106
+
21107
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:54:04 -0500
21108
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21109
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21110
+ Completed 500 Internal Server Error in 14ms
21111
+
21112
+ TypeError (no implicit conversion of Fixnum into String):
21113
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
21114
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
21115
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
21116
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21117
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21118
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21119
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21120
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21121
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21122
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21123
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21124
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21125
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21126
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21127
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21128
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21129
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21130
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21131
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21132
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21133
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21134
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21135
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21136
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21137
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21138
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21139
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21140
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21141
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21142
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21143
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21144
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
21145
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
21146
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21147
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21148
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21149
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21150
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21151
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21152
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21153
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21154
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21155
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21156
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21157
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21158
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21159
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21160
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21161
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21162
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21163
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21164
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21165
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21166
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21167
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21168
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21169
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21170
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21171
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21172
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21173
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21174
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21175
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21176
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21177
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21178
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21179
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21180
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21181
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21182
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21183
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21184
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21185
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21186
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21187
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21188
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21189
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21190
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21191
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21192
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21193
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21194
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21195
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21196
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21197
+ /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'
21198
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21199
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21200
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21201
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21202
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21203
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21204
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21205
+
21206
+
21207
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
21208
+ 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)
21209
+ 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)
21210
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.6ms)
21211
+
21212
+
21213
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:54:11 -0500
21214
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21215
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21216
+ Completed 500 Internal Server Error in 1ms
21217
+
21218
+ TypeError (no implicit conversion of Fixnum into String):
21219
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
21220
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
21221
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
21222
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21223
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21224
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21225
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21226
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21227
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21228
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21229
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21230
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21231
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21232
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21233
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21234
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21235
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21236
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21237
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21238
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21239
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21240
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21241
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21242
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21243
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21244
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21245
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21246
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21247
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21248
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21249
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21250
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
21251
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
21252
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21253
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21254
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21255
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21256
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21257
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21258
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21259
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21260
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21261
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21262
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21263
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21264
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21265
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21266
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21267
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21268
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21269
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21270
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21271
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21272
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21273
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21274
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21275
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21276
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21277
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21278
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21279
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21280
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21281
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21282
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21283
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21284
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21285
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21286
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21287
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21288
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21289
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21290
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21291
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21292
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21293
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21294
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21295
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21296
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21297
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21298
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21299
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21300
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21301
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21302
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21303
+ /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'
21304
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21305
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21306
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21307
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21308
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21309
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21310
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21311
+
21312
+
21313
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.6ms)
21314
+ 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)
21315
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
21316
+ 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 (11.3ms)
21317
+
21318
+
21319
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 03:54:13 -0500
21320
+
21321
+
21322
+ Started GET "/auth/github/callback?code=f8463b3aa9598863538e&state=de199aed641bd32c3dc3caef620f6738a5711a6e549afb3c" for 127.0.0.1 at 2014-07-13 03:54:13 -0500
21323
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
21324
+ Parameters: {"code"=>"f8463b3aa9598863538e", "state"=>"de199aed641bd32c3dc3caef620f6738a5711a6e549afb3c", "provider"=>"github"}
21325
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
21326
+  (0.1ms) begin transaction
21327
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 08:54:14.414918"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"expiry\":\"2014-07-27 03:54:14 -0500\"}}"], ["updated_at", "2014-07-13 08:54:14.415663"]]
21328
+  (1.5ms) commit transaction
21329
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
21330
+ Completed 200 OK in 70ms (Views: 2.4ms | ActiveRecord: 2.2ms)
21331
+
21332
+
21333
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:54:18 -0500
21334
+
21335
+
21336
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:54:18 -0500
21337
+ Processing by DemoController#members_only as HTML
21338
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21339
+  (0.1ms) begin transaction
21340
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"}}"], ["updated_at", "2014-07-13 08:54:18.170666"]]
21341
+  (1.7ms) commit transaction
21342
+ Completed 200 OK in 125ms (Views: 0.7ms | ActiveRecord: 2.2ms)
21343
+
21344
+
21345
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:54:21 -0500
21346
+ Processing by DemoController#members_only as HTML
21347
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21348
+ Completed 500 Internal Server Error in 1ms
21349
+
21350
+ TypeError (no implicit conversion of Float into String):
21351
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
21352
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
21353
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
21354
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21355
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21356
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21357
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21358
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21359
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21360
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21361
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21362
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21363
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21364
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21365
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21366
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21367
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21368
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21369
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21370
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21371
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21372
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21373
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21374
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21375
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21376
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21377
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21378
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21379
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21380
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21381
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21382
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21383
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21384
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21385
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21386
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21387
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21388
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21389
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21390
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21391
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21392
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21393
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21394
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21395
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21396
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21397
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21398
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21399
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21400
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21401
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21402
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21403
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21404
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21405
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21406
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21407
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21408
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21409
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21410
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21411
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21412
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21413
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21414
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21415
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21416
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21417
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21418
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21419
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21420
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21421
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21422
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21423
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21424
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21425
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21426
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21427
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21428
+ /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'
21429
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21430
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21431
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21432
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21433
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21434
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21435
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21436
+
21437
+
21438
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
21439
+ 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)
21440
+ 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)
21441
+ 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.4ms)
21442
+
21443
+
21444
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:54:44 -0500
21445
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21446
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21447
+ Completed 500 Internal Server Error in 18ms
21448
+
21449
+ TypeError (no implicit conversion of Float into String):
21450
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `_parse'
21451
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/time.rb:325:in `parse'
21452
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:25:in `valid_token?'
21453
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21454
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21455
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21456
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21457
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21458
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21459
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21460
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21461
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21462
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21463
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21464
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21465
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21466
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21467
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21468
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21469
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21470
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21471
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21472
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21473
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21474
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21475
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21476
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21477
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21478
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21479
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21480
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21481
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
21482
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
21483
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21484
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21485
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21486
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21487
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21488
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21489
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21490
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21491
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21492
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21493
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21494
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21495
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21496
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21497
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21498
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21499
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21500
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21501
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21502
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21503
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21504
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21505
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21506
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21507
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21508
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21509
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21510
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21511
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21512
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21513
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21514
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21515
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21516
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21517
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21518
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21519
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21520
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21521
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21522
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21523
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21524
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21525
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21526
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21527
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21528
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21529
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21530
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21531
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21532
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21533
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21534
+ /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'
21535
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21536
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21537
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21538
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21539
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21540
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21541
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21542
+
21543
+
21544
+ 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.8ms)
21545
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
21546
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
21547
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.5ms)
21548
+
21549
+
21550
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 03:54:47 -0500
21551
+
21552
+
21553
+ Started GET "/auth/github/callback?code=6031df988a9f0acab15f&state=6460d24a1461e4782439b58b27beb8f51d431ef2e97b9585" for 127.0.0.1 at 2014-07-13 03:54:47 -0500
21554
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
21555
+ Parameters: {"code"=>"6031df988a9f0acab15f", "state"=>"6460d24a1461e4782439b58b27beb8f51d431ef2e97b9585", "provider"=>"github"}
21556
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
21557
+  (0.1ms) begin transaction
21558
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 08:54:49.365293"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$EoYLMKPYq9J6hL.nwnDih.I4siNDL3hGtkEpswbXXvgt3YpuEx5om\",\"expiry\":\"2014-07-27 03:54:49 -0500\"}}"], ["updated_at", "2014-07-13 08:54:49.365997"]]
21559
+  (1.6ms) commit transaction
21560
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
21561
+ Completed 200 OK in 68ms (Views: 1.7ms | ActiveRecord: 2.2ms)
21562
+
21563
+
21564
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:54:52 -0500
21565
+ Processing by DemoController#members_only as HTML
21566
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21567
+  (0.1ms) begin transaction
21568
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$mxDMIXqcM5cKpvKFT0m5FepT3PXEpr1zohEFszi4wFNFqABb2HNy.\",\"expiry\":\"2014-07-27 03:54:52 -0500\",\"last_token\":\"$2a$10$EoYLMKPYq9J6hL.nwnDih.I4siNDL3hGtkEpswbXXvgt3YpuEx5om\",\"updated_at\":\"2014-07-13 03:54:52 -0500\"}}"], ["updated_at", "2014-07-13 08:54:52.720649"]]
21569
+  (1.6ms) commit transaction
21570
+ Completed 200 OK in 125ms (Views: 0.7ms | ActiveRecord: 2.2ms)
21571
+
21572
+
21573
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:54:55 -0500
21574
+ Processing by DemoController#members_only as HTML
21575
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21576
+  (0.1ms) begin transaction
21577
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$9yTtidbThM82hCSojTVl/uO/0nNVaJVL3npsZzl4WmATuXnoQr2dS\",\"expiry\":\"2014-07-27 03:54:55 -0500\",\"last_token\":\"$2a$10$mxDMIXqcM5cKpvKFT0m5FepT3PXEpr1zohEFszi4wFNFqABb2HNy.\",\"updated_at\":\"2014-07-13 03:54:55 -0500\"}}"], ["updated_at", "2014-07-13 08:54:55.366323"]]
21578
+  (1.8ms) commit transaction
21579
+ Completed 200 OK in 125ms (Views: 0.5ms | ActiveRecord: 2.3ms)
21580
+
21581
+
21582
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:54:58 -0500
21583
+ Processing by DemoController#members_only as HTML
21584
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21585
+  (0.1ms) begin transaction
21586
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$8v3U932RmpT385zZ9xKgZeCP2LxB7qjLE3vpip08jOt6XkuNW896i\",\"expiry\":\"2014-07-27 03:54:58 -0500\",\"last_token\":\"$2a$10$9yTtidbThM82hCSojTVl/uO/0nNVaJVL3npsZzl4WmATuXnoQr2dS\",\"updated_at\":\"2014-07-13 03:54:58 -0500\"}}"], ["updated_at", "2014-07-13 08:54:58.297884"]]
21587
+  (1.9ms) commit transaction
21588
+ Completed 200 OK in 130ms (Views: 0.5ms | ActiveRecord: 2.4ms)
21589
+
21590
+
21591
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:00 -0500
21592
+ Processing by DemoController#members_only as HTML
21593
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21594
+  (0.1ms) begin transaction
21595
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$db55Z/VvjO9pN4ibdhB4k.oLoxQiUeuQGhuaIBVSxy2ietxdpHx1a\",\"expiry\":\"2014-07-27 03:55:00 -0500\",\"last_token\":\"$2a$10$8v3U932RmpT385zZ9xKgZeCP2LxB7qjLE3vpip08jOt6XkuNW896i\",\"updated_at\":\"2014-07-13 03:55:00 -0500\"}}"], ["updated_at", "2014-07-13 08:55:00.766639"]]
21596
+  (1.7ms) commit transaction
21597
+ Completed 200 OK in 126ms (Views: 0.6ms | ActiveRecord: 2.2ms)
21598
+
21599
+
21600
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:03 -0500
21601
+ Processing by DemoController#members_only as HTML
21602
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21603
+  (0.1ms) begin transaction
21604
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$pHsfMu4pib8RV3rIX.GdVu/ry0fVMSpRO47CPgypu0/eKByJ4wrKC\",\"expiry\":\"2014-07-27 03:55:03 -0500\",\"last_token\":\"$2a$10$db55Z/VvjO9pN4ibdhB4k.oLoxQiUeuQGhuaIBVSxy2ietxdpHx1a\",\"updated_at\":\"2014-07-13 03:55:03 -0500\"}}"], ["updated_at", "2014-07-13 08:55:03.744726"]]
21605
+  (1.9ms) commit transaction
21606
+ Completed 200 OK in 128ms (Views: 0.7ms | ActiveRecord: 2.3ms)
21607
+
21608
+
21609
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:05 -0500
21610
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21611
+ Processing by DemoController#members_only as HTML
21612
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21613
+ Completed 401 Unauthorized in 78ms (Views: 0.2ms | ActiveRecord: 0.5ms)
21614
+
21615
+
21616
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:55:48 -0500
21617
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21618
+
21619
+
21620
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:55:48 -0500
21621
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21622
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21623
+  (0.1ms) begin transaction
21624
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"expiry\":\"2014-07-27 03:55:48 -0500\",\"last_token\":\"$2a$10$pHsfMu4pib8RV3rIX.GdVu/ry0fVMSpRO47CPgypu0/eKByJ4wrKC\",\"updated_at\":\"2014-07-13 03:55:48 -0500\"}}"], ["updated_at", "2014-07-13 08:55:48.883680"]]
21625
+  (1.8ms) commit transaction
21626
+ Completed 200 OK in 158ms (Views: 0.4ms | ActiveRecord: 2.8ms)
21627
+
21628
+
21629
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:51 -0500
21630
+ Processing by DemoController#members_only as HTML
21631
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21632
+  (0.1ms) begin transaction
21633
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"expiry\":\"2014-07-27 03:55:48 -0500\",\"last_token\":\"$2a$10$pHsfMu4pib8RV3rIX.GdVu/ry0fVMSpRO47CPgypu0/eKByJ4wrKC\",\"updated_at\":\"2014-07-13 03:55:51 -0500\"}}"], ["updated_at", "2014-07-13 08:55:51.199098"]]
21634
+  (0.6ms) commit transaction
21635
+ Completed 200 OK in 65ms (Views: 0.6ms | ActiveRecord: 1.0ms)
21636
+
21637
+
21638
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:53 -0500
21639
+ Processing by DemoController#members_only as HTML
21640
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21641
+  (0.1ms) begin transaction
21642
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"expiry\":\"2014-07-27 03:55:48 -0500\",\"last_token\":\"$2a$10$pHsfMu4pib8RV3rIX.GdVu/ry0fVMSpRO47CPgypu0/eKByJ4wrKC\",\"updated_at\":\"2014-07-13 03:55:53 -0500\"}}"], ["updated_at", "2014-07-13 08:55:53.784801"]]
21643
+  (1.5ms) commit transaction
21644
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 1.9ms)
21645
+
21646
+
21647
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:55 -0500
21648
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
21649
+ Processing by DemoController#members_only as HTML
21650
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21651
+  (0.1ms) begin transaction
21652
+ SQL (0.6ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"expiry\":\"2014-07-27 03:55:48 -0500\",\"last_token\":\"$2a$10$pHsfMu4pib8RV3rIX.GdVu/ry0fVMSpRO47CPgypu0/eKByJ4wrKC\",\"updated_at\":\"2014-07-13 03:55:55 -0500\"}}"], ["updated_at", "2014-07-13 08:55:55.969177"]]
21653
+  (1.5ms) commit transaction
21654
+ Completed 200 OK in 97ms (Views: 1.1ms | ActiveRecord: 2.6ms)
21655
+
21656
+
21657
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:59 -0500
21658
+
21659
+
21660
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:55:59 -0500
21661
+ Processing by DemoController#members_only as HTML
21662
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21663
+ Processing by DemoController#members_only as HTML
21664
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21665
+  (0.1ms) begin transaction
21666
+  (0.1ms) begin transaction
21667
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$zj2R7kErMfR4YvqfPDQdRengQT5wLixHz1xYeV5I8czS0TC0tPNaW\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:55:59 -0500\"}}"], ["updated_at", "2014-07-13 08:55:59.632292"]]
21668
+  (1.7ms) commit transaction
21669
+ Completed 200 OK in 126ms (Views: 0.6ms | ActiveRecord: 2.2ms)
21670
+ SQL (1.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:55:59 -0500\"}}"], ["updated_at", "2014-07-13 08:55:59.632890"]]
21671
+  (0.5ms) commit transaction
21672
+ Completed 200 OK in 126ms (Views: 0.5ms | ActiveRecord: 2.4ms)
21673
+
21674
+
21675
+
21676
+
21677
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:02 -0500
21678
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:02 -0500
21679
+ Processing by DemoController#members_only as HTML
21680
+ Processing by DemoController#members_only as HTML
21681
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21682
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21683
+  (0.1ms) begin transaction
21684
+  (0.1ms) begin transaction
21685
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:02 -0500\"}}"], ["updated_at", "2014-07-13 08:56:02.295396"]]
21686
+  (1.6ms) commit transaction
21687
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.1ms)
21688
+ SQL (1.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:02 -0500\"}}"], ["updated_at", "2014-07-13 08:56:02.295846"]]
21689
+  (0.5ms) commit transaction
21690
+ Completed 200 OK in 65ms (Views: 0.6ms | ActiveRecord: 2.4ms)
21691
+
21692
+
21693
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:04 -0500
21694
+ Processing by DemoController#members_only as HTML
21695
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21696
+  (0.1ms) begin transaction
21697
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:04 -0500\"}}"], ["updated_at", "2014-07-13 08:56:04.575142"]]
21698
+  (1.6ms) commit transaction
21699
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.0ms)
21700
+
21701
+
21702
+
21703
+
21704
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:06 -0500
21705
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:06 -0500
21706
+ Processing by DemoController#members_only as HTML
21707
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21708
+ Processing by DemoController#members_only as HTML
21709
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21710
+  (0.1ms) begin transaction
21711
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:07 -0500\"}}"], ["updated_at", "2014-07-13 08:56:07.064210"]]
21712
+  (1.6ms) commit transaction
21713
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.1ms)
21714
+  (0.1ms) begin transaction
21715
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:07 -0500\"}}"], ["updated_at", "2014-07-13 08:56:07.086502"]]
21716
+  (0.5ms) commit transaction
21717
+ Completed 200 OK in 64ms (Views: 0.5ms | ActiveRecord: 1.0ms)
21718
+
21719
+
21720
+
21721
+
21722
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:09 -0500
21723
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:09 -0500
21724
+ Processing by DemoController#members_only as HTML
21725
+ Processing by DemoController#members_only as HTML
21726
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21727
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21728
+  (0.1ms) begin transaction
21729
+  (0.0ms) begin transaction
21730
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:09 -0500\"}}"], ["updated_at", "2014-07-13 08:56:09.496063"]]
21731
+  (1.6ms) commit transaction
21732
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.1ms)
21733
+ SQL (1.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:09 -0500\"}}"], ["updated_at", "2014-07-13 08:56:09.496446"]]
21734
+  (0.4ms) commit transaction
21735
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.4ms)
21736
+
21737
+
21738
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:11 -0500
21739
+ Processing by DemoController#members_only as HTML
21740
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21741
+  (0.1ms) begin transaction
21742
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:11 -0500\"}}"], ["updated_at", "2014-07-13 08:56:11.713879"]]
21743
+  (0.5ms) commit transaction
21744
+ Completed 200 OK in 63ms (Views: 0.5ms | ActiveRecord: 1.0ms)
21745
+
21746
+
21747
+
21748
+
21749
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:14 -0500
21750
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 03:56:14 -0500
21751
+ Processing by DemoController#members_only as HTML
21752
+ Processing by DemoController#members_only as HTML
21753
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21754
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21755
+  (0.1ms) begin transaction
21756
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"}}"], ["updated_at", "2014-07-13 08:56:14.108102"]]
21757
+  (0.1ms) begin transaction
21758
+  (1.6ms) commit transaction
21759
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.1ms)
21760
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"}}"], ["updated_at", "2014-07-13 08:56:14.110550"]]
21761
+  (0.5ms) commit transaction
21762
+ Completed 200 OK in 67ms (Views: 0.8ms | ActiveRecord: 1.0ms)
21763
+
21764
+
21765
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:58:23 -0500
21766
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21767
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21768
+ Completed 500 Internal Server Error in 1ms
21769
+
21770
+ NoMethodError (undefined method `[]' for nil:NilClass):
21771
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:21:in `valid_token?'
21772
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21773
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21774
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21775
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21776
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21777
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21778
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21779
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21780
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21781
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21782
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21783
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21784
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21785
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21786
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21787
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21788
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21789
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21790
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21791
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21792
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21793
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21794
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21795
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21796
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21797
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21798
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21799
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21800
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
21801
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
21802
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21803
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21804
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21805
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21806
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21807
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21808
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21809
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21810
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21811
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21812
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21813
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21814
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21815
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21816
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21817
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21818
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21819
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21820
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21821
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21822
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21823
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21824
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21825
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21826
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21827
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21828
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21829
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21830
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21831
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21832
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21833
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21834
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21835
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21836
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21837
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21838
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21839
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21840
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21841
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21842
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21843
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21844
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21845
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21846
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21847
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21848
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21849
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21850
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21851
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21852
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21853
+ /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'
21854
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21855
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21856
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21857
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21858
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21859
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21860
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21861
+
21862
+
21863
+ 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)
21864
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
21865
+ 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)
21866
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
21867
+
21868
+
21869
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 03:58:38 -0500
21870
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21871
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21872
+ Completed 500 Internal Server Error in 1ms
21873
+
21874
+ NoMethodError (undefined method `[]' for nil:NilClass):
21875
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:21:in `valid_token?'
21876
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
21877
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
21878
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
21879
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
21880
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
21881
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
21882
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
21883
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
21884
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
21885
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
21886
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
21887
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
21888
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
21889
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
21890
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
21891
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
21892
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
21893
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
21894
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
21895
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
21896
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
21897
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
21898
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
21899
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21900
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21901
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21902
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21903
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21904
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
21905
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
21906
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
21907
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
21908
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
21909
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
21910
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21911
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21912
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21913
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21914
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21915
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21916
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
21917
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
21918
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
21919
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
21920
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
21921
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
21922
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
21923
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
21924
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
21925
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
21926
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
21927
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
21928
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
21929
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
21930
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
21931
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
21932
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
21933
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
21934
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
21935
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
21936
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
21937
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
21938
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
21939
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
21940
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21941
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
21942
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
21943
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
21944
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
21945
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
21946
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
21947
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
21948
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
21949
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
21950
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
21951
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
21952
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
21953
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
21954
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
21955
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
21956
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
21957
+ /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'
21958
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
21959
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
21960
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
21961
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
21962
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
21963
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
21964
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
21965
+
21966
+
21967
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
21968
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
21969
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
21970
+ 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 (11.7ms)
21971
+
21972
+
21973
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:01 -0500
21974
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21975
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21976
+ Completed 401 Unauthorized in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms)
21977
+
21978
+
21979
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:07 -0500
21980
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
21981
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
21982
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
21983
+
21984
+
21985
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:00:16 -0500
21986
+
21987
+
21988
+ Started GET "/auth/github/callback?code=ae227cf7664301d7f86d&state=7baccc55da6ae1d6c566969dfd92ad4a3adb95a6b975662e" for 127.0.0.1 at 2014-07-13 04:00:16 -0500
21989
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
21990
+ Parameters: {"code"=>"ae227cf7664301d7f86d", "state"=>"7baccc55da6ae1d6c566969dfd92ad4a3adb95a6b975662e", "provider"=>"github"}
21991
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
21992
+  (0.1ms) begin transaction
21993
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:00:17.455625"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$xdUv1woj1SWsuuDlXWEpIeJ5saA8APsc157IVFgot6boaGNTvdiJ6\",\"expiry\":\"2014-07-27 04:00:17 -0500\"}}"], ["updated_at", "2014-07-13 09:00:17.456365"]]
21994
+  (1.6ms) commit transaction
21995
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.6ms)
21996
+ Completed 200 OK in 68ms (Views: 2.5ms | ActiveRecord: 2.2ms)
21997
+
21998
+
21999
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:18 -0500
22000
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22001
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22002
+  (0.1ms) begin transaction
22003
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"expiry\":\"2014-07-27 04:00:18 -0500\",\"last_token\":\"$2a$10$xdUv1woj1SWsuuDlXWEpIeJ5saA8APsc157IVFgot6boaGNTvdiJ6\",\"updated_at\":\"2014-07-13 04:00:18 -0500\"}}"], ["updated_at", "2014-07-13 09:00:18.506746"]]
22004
+  (0.5ms) commit transaction
22005
+ Completed 200 OK in 133ms (Views: 0.3ms | ActiveRecord: 1.1ms)
22006
+
22007
+
22008
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:19 -0500
22009
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22010
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22011
+  (0.1ms) begin transaction
22012
+ SQL (0.6ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"expiry\":\"2014-07-27 04:00:18 -0500\",\"last_token\":\"$2a$10$xdUv1woj1SWsuuDlXWEpIeJ5saA8APsc157IVFgot6boaGNTvdiJ6\",\"updated_at\":\"2014-07-13 04:00:19 -0500\"}}"], ["updated_at", "2014-07-13 09:00:19.485675"]]
22013
+  (1.7ms) commit transaction
22014
+ Completed 200 OK in 69ms (Views: 0.3ms | ActiveRecord: 2.5ms)
22015
+
22016
+
22017
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:23 -0500
22018
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22019
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22020
+  (0.1ms) begin transaction
22021
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:23 -0500\"}}"], ["updated_at", "2014-07-13 09:00:23.323891"]]
22022
+  (1.7ms) commit transaction
22023
+ Completed 200 OK in 132ms (Views: 0.3ms | ActiveRecord: 2.3ms)
22024
+
22025
+
22026
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:26 -0500
22027
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22028
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22029
+  (0.1ms) begin transaction
22030
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:26 -0500\"}}"], ["updated_at", "2014-07-13 09:00:26.511588"]]
22031
+  (1.9ms) commit transaction
22032
+ Completed 200 OK in 66ms (Views: 0.3ms | ActiveRecord: 2.4ms)
22033
+
22034
+
22035
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:28 -0500
22036
+ Processing by DemoController#members_only as HTML
22037
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22038
+  (0.1ms) begin transaction
22039
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:28 -0500\"}}"], ["updated_at", "2014-07-13 09:00:28.556496"]]
22040
+  (1.9ms) commit transaction
22041
+ Completed 200 OK in 66ms (Views: 0.6ms | ActiveRecord: 2.3ms)
22042
+
22043
+
22044
+
22045
+
22046
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:30 -0500
22047
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:30 -0500
22048
+ Processing by DemoController#members_only as HTML
22049
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22050
+ Processing by DemoController#members_only as HTML
22051
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22052
+  (0.1ms) begin transaction
22053
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:31 -0500\"}}"], ["updated_at", "2014-07-13 09:00:31.016581"]]
22054
+  (1.8ms) commit transaction
22055
+ Completed 200 OK in 66ms (Views: 0.6ms | ActiveRecord: 2.3ms)
22056
+  (0.1ms) begin transaction
22057
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:31 -0500\"}}"], ["updated_at", "2014-07-13 09:00:31.062255"]]
22058
+  (0.5ms) commit transaction
22059
+ Completed 200 OK in 78ms (Views: 0.6ms | ActiveRecord: 1.8ms)
22060
+
22061
+
22062
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:32 -0500
22063
+ Processing by DemoController#members_only as HTML
22064
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22065
+  (0.1ms) begin transaction
22066
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:32 -0500\"}}"], ["updated_at", "2014-07-13 09:00:32.865110"]]
22067
+  (1.8ms) commit transaction
22068
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.3ms)
22069
+
22070
+
22071
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:00:35 -0500
22072
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
22073
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22074
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
22075
+  (0.1ms) begin transaction
22076
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:32 -0500\"}}"], ["updated_at", "2014-07-13 09:00:35.699629"]]
22077
+  (0.4ms) commit transaction
22078
+  (0.0ms) begin transaction
22079
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"}}"], ["updated_at", "2014-07-13 09:00:35.701813"]]
22080
+  (0.5ms) commit transaction
22081
+ Completed 200 OK in 72ms (Views: 0.1ms | ActiveRecord: 1.9ms)
22082
+
22083
+
22084
+ Started GET "/auth/developer?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:00:37 -0500
22085
+
22086
+
22087
+ Started POST "/auth/developer/callback" for 127.0.0.1 at 2014-07-13 04:00:42 -0500
22088
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
22089
+ Parameters: {"first_name"=>"chong", "last_name"=>"bong", "provider"=>"developer"}
22090
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' AND "users"."provider" = 'developer' ORDER BY "users"."id" ASC LIMIT 1
22091
+  (0.1ms) begin transaction
22092
+ Binary data inserted for `string` type on column `encrypted_password`
22093
+ SQL (0.4ms) INSERT INTO "users" ("confirmed_at", "created_at", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?) [["confirmed_at", "2014-07-13 09:00:42.321556"], ["created_at", "2014-07-13 09:00:42.322134"], ["encrypted_password", "$2a$10$KVfVYPaANGynURLgc/gdCOAVHYl8b8NEmqxtjt1PYKb/3aGX.z7Je"], ["provider", "developer"], ["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"expiry\":\"2014-07-27 04:00:42 -0500\"}}"], ["uid", "bong"], ["updated_at", "2014-07-13 09:00:42.322134"]]
22094
+  (1.1ms) commit transaction
22095
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
22096
+ Completed 200 OK in 127ms (Views: 1.5ms | ActiveRecord: 1.8ms)
22097
+
22098
+
22099
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:43 -0500
22100
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22101
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22102
+  (0.1ms) begin transaction
22103
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:43 -0500\"}}"], ["updated_at", "2014-07-13 09:00:43.337314"]]
22104
+  (1.6ms) commit transaction
22105
+ Completed 200 OK in 127ms (Views: 0.3ms | ActiveRecord: 2.1ms)
22106
+
22107
+
22108
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:00:44 -0500
22109
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22110
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22111
+  (0.1ms) begin transaction
22112
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:44 -0500\"}}"], ["updated_at", "2014-07-13 09:00:44.238892"]]
22113
+  (1.6ms) commit transaction
22114
+ Completed 200 OK in 67ms (Views: 0.4ms | ActiveRecord: 2.2ms)
22115
+
22116
+
22117
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:47 -0500
22118
+ Processing by DemoController#members_only as HTML
22119
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22120
+  (0.1ms) begin transaction
22121
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:47 -0500\"}}"], ["updated_at", "2014-07-13 09:00:47.698637"]]
22122
+  (1.6ms) commit transaction
22123
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.0ms)
22124
+
22125
+
22126
+
22127
+
22128
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:49 -0500
22129
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:49 -0500
22130
+ Processing by DemoController#members_only as HTML
22131
+ Processing by DemoController#members_only as HTML
22132
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22133
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22134
+  (0.1ms) begin transaction
22135
+  (0.0ms) begin transaction
22136
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:49 -0500\"}}"], ["updated_at", "2014-07-13 09:00:49.440491"]]
22137
+  (1.5ms) commit transaction
22138
+ SQLite3::IOException: disk I/O error: commit transaction
22139
+ SQL (1.8ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:49 -0500\"}}"], ["updated_at", "2014-07-13 09:00:49.440539"]]
22140
+  (0.3ms) rollback transaction
22141
+ SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction
22142
+ Completed 500 Internal Server Error in 65ms
22143
+  (0.6ms) commit transaction
22144
+ Completed 200 OK in 66ms (Views: 0.5ms | ActiveRecord: 2.6ms)
22145
+
22146
+ ActiveRecord::StatementInvalid (SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction):
22147
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `step'
22148
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `block in each'
22149
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `loop'
22150
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `each'
22151
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `map'
22152
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `block in execute'
22153
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:95:in `prepare'
22154
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:134:in `execute'
22155
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:526:in `rollback'
22156
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `block in rollback_db_transaction'
22157
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
22158
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22159
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
22160
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `rollback_db_transaction'
22161
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:175:in `perform_rollback'
22162
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:114:in `rollback'
22163
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:239:in `rollback_transaction'
22164
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:217:in `rescue in within_new_transaction'
22165
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:214:in `within_new_transaction'
22166
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
22167
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
22168
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
22169
+ activerecord (4.1.2) lib/active_record/transactions.rb:273:in `save!'
22170
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:87:in `extend_batch_buffer'
22171
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:51:in `update_auth_header'
22172
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
22173
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `call'
22174
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `block in halting'
22175
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
22176
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
22177
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
22178
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
22179
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
22180
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
22181
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22182
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
22183
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22184
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
22185
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22186
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
22187
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22188
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
22189
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
22190
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
22191
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22192
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
22193
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
22194
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
22195
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
22196
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22197
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22198
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22199
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22200
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22201
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22202
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22203
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22204
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22205
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22206
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22207
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22208
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
22209
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
22210
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
22211
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
22212
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
22213
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22214
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
22215
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22216
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22217
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
22218
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22219
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22220
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
22221
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
22222
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
22223
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
22224
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22225
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
22226
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22227
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
22228
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22229
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22230
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22231
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22232
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
22233
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
22234
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
22235
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
22236
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
22237
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22238
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22239
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22240
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
22241
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22242
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
22243
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
22244
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
22245
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
22246
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
22247
+ /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'
22248
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
22249
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
22250
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
22251
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
22252
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
22253
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
22254
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
22255
+
22256
+
22257
+ 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)
22258
+ 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)
22259
+ 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)
22260
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
22261
+
22262
+
22263
+
22264
+
22265
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:51 -0500
22266
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:51 -0500
22267
+ Processing by DemoController#members_only as HTML
22268
+ Processing by DemoController#members_only as HTML
22269
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22270
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22271
+  (0.1ms) begin transaction
22272
+  (0.1ms) begin transaction
22273
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:51 -0500\"}}"], ["updated_at", "2014-07-13 09:00:51.372139"]]
22274
+ SQL (1.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:51 -0500\"}}"], ["updated_at", "2014-07-13 09:00:51.372325"]]
22275
+  (1.5ms) commit transaction
22276
+ SQLite3::IOException: disk I/O error: commit transaction
22277
+  (0.2ms) rollback transaction
22278
+ SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction
22279
+ Completed 500 Internal Server Error in 71ms
22280
+  (0.5ms) commit transaction
22281
+ Completed 200 OK in 71ms (Views: 0.8ms | ActiveRecord: 2.4ms)
22282
+
22283
+ ActiveRecord::StatementInvalid (SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction):
22284
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `step'
22285
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `block in each'
22286
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `loop'
22287
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `each'
22288
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `map'
22289
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `block in execute'
22290
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:95:in `prepare'
22291
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:134:in `execute'
22292
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:526:in `rollback'
22293
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `block in rollback_db_transaction'
22294
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
22295
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22296
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
22297
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `rollback_db_transaction'
22298
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:175:in `perform_rollback'
22299
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:114:in `rollback'
22300
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:239:in `rollback_transaction'
22301
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:217:in `rescue in within_new_transaction'
22302
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:214:in `within_new_transaction'
22303
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
22304
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
22305
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
22306
+ activerecord (4.1.2) lib/active_record/transactions.rb:273:in `save!'
22307
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:87:in `extend_batch_buffer'
22308
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:51:in `update_auth_header'
22309
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
22310
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `call'
22311
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `block in halting'
22312
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
22313
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
22314
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
22315
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
22316
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
22317
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
22318
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22319
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
22320
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22321
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
22322
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22323
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
22324
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22325
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
22326
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
22327
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
22328
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22329
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
22330
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
22331
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
22332
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
22333
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22334
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22335
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22336
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22337
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22338
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22339
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22340
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22341
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22342
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22343
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22344
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22345
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
22346
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
22347
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
22348
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
22349
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
22350
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22351
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
22352
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22353
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22354
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
22355
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22356
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22357
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
22358
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
22359
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
22360
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
22361
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22362
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
22363
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22364
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
22365
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22366
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22367
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22368
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22369
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
22370
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
22371
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
22372
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
22373
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
22374
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22375
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22376
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22377
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
22378
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22379
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
22380
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
22381
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
22382
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
22383
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
22384
+ /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'
22385
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
22386
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
22387
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
22388
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
22389
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
22390
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
22391
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
22392
+
22393
+
22394
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
22395
+ 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)
22396
+ 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)
22397
+ 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.7ms)
22398
+
22399
+
22400
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:52 -0500
22401
+ Processing by DemoController#members_only as HTML
22402
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22403
+  (0.1ms) begin transaction
22404
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"expiry\":\"2014-07-27 04:00:43 -0500\",\"last_token\":\"$2a$10$zWj3ZeEnPJjuUaVUDmKu..aPRXzvdmZI5MPzXOdPyFJ/O7971s5AK\",\"updated_at\":\"2014-07-13 04:00:52 -0500\"}}"], ["updated_at", "2014-07-13 09:00:52.980806"]]
22405
+  (1.6ms) commit transaction
22406
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.2ms)
22407
+
22408
+
22409
+
22410
+
22411
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:56 -0500
22412
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:00:56 -0500
22413
+ Processing by DemoController#members_only as HTML
22414
+ Processing by DemoController#members_only as HTML
22415
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22416
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22417
+  (0.1ms) begin transaction
22418
+  (0.1ms) begin transaction
22419
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$ByJKZYt11b2Coo50C6hUs.g/3IRJpEY1PIJzFGtTzkxk3VNe87tSS\",\"expiry\":\"2014-07-27 04:00:56 -0500\",\"last_token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"updated_at\":\"2014-07-13 04:00:56 -0500\"}}"], ["updated_at", "2014-07-13 09:00:56.787618"]]
22420
+  (1.6ms) commit transaction
22421
+ Completed 200 OK in 131ms (Views: 0.8ms | ActiveRecord: 2.1ms)
22422
+ SQL (1.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$m4MxIOK6kL56OsC1YZ/Ulu9bNVq0akQXG/EK4tjMT49QRDbJI61oy\",\"expiry\":\"2014-07-27 04:00:56 -0500\",\"last_token\":\"$2a$10$KpXUDkpCuT83HewXNhja0urBOplWFk7bhZ/NqPt78oQSKq0xGtWNW\",\"updated_at\":\"2014-07-13 04:00:56 -0500\"}}"], ["updated_at", "2014-07-13 09:00:56.788087"]]
22423
+  (0.5ms) commit transaction
22424
+ Completed 200 OK in 132ms (Views: 0.8ms | ActiveRecord: 2.4ms)
22425
+
22426
+
22427
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:01:14 -0500
22428
+ Processing by DemoController#members_only as HTML
22429
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22430
+  (0.1ms) begin transaction
22431
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$mLMLsFBosi4L8CoE0uJNp.n41e6smP/u6pHlru0AXA4si0iV7/sIq\",\"expiry\":\"2014-07-27 04:01:14 -0500\",\"last_token\":\"$2a$10$m4MxIOK6kL56OsC1YZ/Ulu9bNVq0akQXG/EK4tjMT49QRDbJI61oy\",\"updated_at\":\"2014-07-13 04:01:14 -0500\"}}"], ["updated_at", "2014-07-13 09:01:14.536305"]]
22432
+  (1.6ms) commit transaction
22433
+ Completed 200 OK in 126ms (Views: 0.5ms | ActiveRecord: 2.1ms)
22434
+
22435
+
22436
+
22437
+
22438
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:01:16 -0500
22439
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:01:16 -0500
22440
+ Processing by DemoController#members_only as HTML
22441
+ Processing by DemoController#members_only as HTML
22442
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22443
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22444
+  (0.1ms) begin transaction
22445
+  (0.0ms) begin transaction
22446
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$mLMLsFBosi4L8CoE0uJNp.n41e6smP/u6pHlru0AXA4si0iV7/sIq\",\"expiry\":\"2014-07-27 04:01:14 -0500\",\"last_token\":\"$2a$10$m4MxIOK6kL56OsC1YZ/Ulu9bNVq0akQXG/EK4tjMT49QRDbJI61oy\",\"updated_at\":\"2014-07-13 04:01:16 -0500\"}}"], ["updated_at", "2014-07-13 09:01:16.403030"]]
22447
+  (1.5ms) commit transaction
22448
+ SQL (1.8ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$mLMLsFBosi4L8CoE0uJNp.n41e6smP/u6pHlru0AXA4si0iV7/sIq\",\"expiry\":\"2014-07-27 04:01:14 -0500\",\"last_token\":\"$2a$10$m4MxIOK6kL56OsC1YZ/Ulu9bNVq0akQXG/EK4tjMT49QRDbJI61oy\",\"updated_at\":\"2014-07-13 04:01:16 -0500\"}}"], ["updated_at", "2014-07-13 09:01:16.403063"]]
22449
+ SQLite3::IOException: disk I/O error: commit transaction
22450
+  (0.2ms) rollback transaction
22451
+ SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction
22452
+ Completed 500 Internal Server Error in 65ms
22453
+  (0.6ms) commit transaction
22454
+ Completed 200 OK in 66ms (Views: 0.5ms | ActiveRecord: 2.6ms)
22455
+
22456
+ ActiveRecord::StatementInvalid (SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction):
22457
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `step'
22458
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `block in each'
22459
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `loop'
22460
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `each'
22461
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `map'
22462
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `block in execute'
22463
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:95:in `prepare'
22464
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:134:in `execute'
22465
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:526:in `rollback'
22466
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `block in rollback_db_transaction'
22467
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
22468
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22469
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
22470
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `rollback_db_transaction'
22471
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:175:in `perform_rollback'
22472
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:114:in `rollback'
22473
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:239:in `rollback_transaction'
22474
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:217:in `rescue in within_new_transaction'
22475
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:214:in `within_new_transaction'
22476
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
22477
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
22478
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
22479
+ activerecord (4.1.2) lib/active_record/transactions.rb:273:in `save!'
22480
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:87:in `extend_batch_buffer'
22481
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:51:in `update_auth_header'
22482
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
22483
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `call'
22484
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `block in halting'
22485
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
22486
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
22487
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
22488
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
22489
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
22490
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
22491
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22492
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
22493
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22494
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
22495
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22496
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
22497
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22498
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
22499
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
22500
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
22501
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22502
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
22503
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
22504
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
22505
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
22506
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22507
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22508
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22509
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22510
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22511
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22512
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22513
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22514
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22515
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22516
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22517
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22518
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
22519
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
22520
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
22521
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
22522
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
22523
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22524
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
22525
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22526
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22527
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
22528
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22529
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22530
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
22531
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
22532
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
22533
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
22534
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22535
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
22536
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22537
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
22538
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22539
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22540
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22541
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22542
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
22543
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
22544
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
22545
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
22546
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
22547
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22548
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22549
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22550
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
22551
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22552
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
22553
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
22554
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
22555
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
22556
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
22557
+ /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'
22558
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
22559
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
22560
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
22561
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
22562
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
22563
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
22564
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
22565
+
22566
+
22567
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
22568
+ 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 (5.6ms)
22569
+ 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)
22570
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms)
22571
+
22572
+
22573
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:03:03 -0500
22574
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
22575
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'bong' LIMIT 1
22576
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 2 ORDER BY "users"."id" ASC LIMIT 1
22577
+  (0.0ms) begin transaction
22578
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$mLMLsFBosi4L8CoE0uJNp.n41e6smP/u6pHlru0AXA4si0iV7/sIq\",\"expiry\":\"2014-07-27 04:01:14 -0500\",\"last_token\":\"$2a$10$m4MxIOK6kL56OsC1YZ/Ulu9bNVq0akQXG/EK4tjMT49QRDbJI61oy\",\"updated_at\":\"2014-07-13 04:01:16 -0500\"}}"], ["updated_at", "2014-07-13 09:03:03.811372"]]
22579
+  (0.7ms) commit transaction
22580
+  (0.1ms) begin transaction
22581
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"s4xXp5W6Ci3GbqS_ON0NmQ\":{\"token\":\"$2a$10$h2YCfuk2YB4LQjdjZbWWo.U74l.Hjg74XcO08C0LFnwhJjiOQCBBO\",\"expiry\":\"2014-07-27 04:03:03 -0500\",\"last_token\":\"$2a$10$mLMLsFBosi4L8CoE0uJNp.n41e6smP/u6pHlru0AXA4si0iV7/sIq\",\"updated_at\":\"2014-07-13 04:03:03 -0500\"}}"], ["updated_at", "2014-07-13 09:03:03.873188"]]
22582
+  (0.8ms) commit transaction
22583
+ Completed 200 OK in 129ms (Views: 0.1ms | ActiveRecord: 2.5ms)
22584
+
22585
+
22586
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:07:56 -0500
22587
+
22588
+
22589
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:07:56 -0500
22590
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22591
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22592
+ Completed 401 Unauthorized in 12ms (Views: 0.2ms | ActiveRecord: 0.6ms)
22593
+
22594
+
22595
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:07:59 -0500
22596
+
22597
+
22598
+ Started GET "/auth/github/callback?code=6b02246710a8cb655c5e&state=ea0dc3ce05149fa3deea2dc037ef8f054489862aa48bc45f" for 127.0.0.1 at 2014-07-13 04:07:59 -0500
22599
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
22600
+ Parameters: {"code"=>"6b02246710a8cb655c5e", "state"=>"ea0dc3ce05149fa3deea2dc037ef8f054489862aa48bc45f", "provider"=>"github"}
22601
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
22602
+  (0.1ms) begin transaction
22603
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:08:00.187560"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"}}"], ["updated_at", "2014-07-13 09:08:00.188282"]]
22604
+  (1.5ms) commit transaction
22605
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
22606
+ Completed 200 OK in 67ms (Views: 1.6ms | ActiveRecord: 2.1ms)
22607
+
22608
+
22609
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:08:03 -0500
22610
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22611
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22612
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
22613
+
22614
+
22615
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:08:15 -0500
22616
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22617
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22618
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
22619
+
22620
+
22621
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:08:17 -0500
22622
+
22623
+
22624
+ Started GET "/auth/github/callback?code=0bd216c386fd44e94686&state=b2611149cb4a56ccca73d2ba144292cb6e93ad33c16da813" for 127.0.0.1 at 2014-07-13 04:08:17 -0500
22625
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
22626
+ Parameters: {"code"=>"0bd216c386fd44e94686", "state"=>"b2611149cb4a56ccca73d2ba144292cb6e93ad33c16da813", "provider"=>"github"}
22627
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
22628
+  (0.1ms) begin transaction
22629
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:08:18.074464"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"}}"], ["updated_at", "2014-07-13 09:08:18.075248"]]
22630
+  (1.6ms) commit transaction
22631
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
22632
+ Completed 200 OK in 69ms (Views: 2.0ms | ActiveRecord: 2.1ms)
22633
+
22634
+
22635
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:08:27 -0500
22636
+
22637
+
22638
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:08:27 -0500
22639
+ Processing by DemoController#members_only as HTML
22640
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22641
+ Completed 401 Unauthorized in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
22642
+
22643
+
22644
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:09:48 -0500
22645
+ Processing by DemoController#members_only as HTML
22646
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22647
+ Completed 401 Unauthorized in 30762ms (Views: 0.2ms | ActiveRecord: 0.6ms)
22648
+
22649
+
22650
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:10:22 -0500
22651
+
22652
+
22653
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:10:22 -0500
22654
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
22655
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22656
+ Completed 200 OK in 7592ms (Views: 0.2ms | ActiveRecord: 0.2ms)
22657
+
22658
+
22659
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:10:33 -0500
22660
+
22661
+
22662
+ Started GET "/auth/github/callback?code=576d9cdc0b4e1064144e&state=b8c984e527b13630caa284ff34607709ed2b2ab8f5cd0f86" for 127.0.0.1 at 2014-07-13 04:10:34 -0500
22663
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
22664
+ Parameters: {"code"=>"576d9cdc0b4e1064144e", "state"=>"b8c984e527b13630caa284ff34607709ed2b2ab8f5cd0f86", "provider"=>"github"}
22665
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
22666
+  (0.1ms) begin transaction
22667
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:10:34.974591"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"}}"], ["updated_at", "2014-07-13 09:10:34.975301"]]
22668
+  (1.5ms) commit transaction
22669
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
22670
+ Completed 200 OK in 67ms (Views: 1.7ms | ActiveRecord: 2.0ms)
22671
+
22672
+
22673
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:10:38 -0500
22674
+ Processing by DemoController#members_only as HTML
22675
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22676
+ Completed 401 Unauthorized in 57403ms (Views: 0.2ms | ActiveRecord: 0.2ms)
22677
+
22678
+
22679
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:12:06 -0500
22680
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
22681
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22682
+ Completed 200 OK in 4731ms (Views: 0.2ms | ActiveRecord: 0.6ms)
22683
+
22684
+
22685
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:12:17 -0500
22686
+
22687
+
22688
+ Started GET "/auth/github/callback?code=78ea1c9531b219f92aa8&state=daeeff970782aa082d0f292da168a4a517ca548bc6a182f3" for 127.0.0.1 at 2014-07-13 04:12:17 -0500
22689
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
22690
+ Parameters: {"code"=>"78ea1c9531b219f92aa8", "state"=>"daeeff970782aa082d0f292da168a4a517ca548bc6a182f3", "provider"=>"github"}
22691
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
22692
+  (0.1ms) begin transaction
22693
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:12:18.256562"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"}}"], ["updated_at", "2014-07-13 09:12:18.257293"]]
22694
+  (1.7ms) commit transaction
22695
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
22696
+ Completed 200 OK in 66ms (Views: 1.7ms | ActiveRecord: 2.3ms)
22697
+
22698
+
22699
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:13:16 -0500
22700
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
22701
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
22702
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22703
+ Completed 200 OK in 6981ms (Views: 0.3ms | ActiveRecord: 0.5ms)
22704
+
22705
+
22706
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:13:27 -0500
22707
+
22708
+
22709
+ Started GET "/auth/github/callback?code=72297879561f1881b930&state=e52f1666475a84b06a950f80ebf61bb783652077e5dc93ff" for 127.0.0.1 at 2014-07-13 04:13:28 -0500
22710
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
22711
+ Parameters: {"code"=>"72297879561f1881b930", "state"=>"e52f1666475a84b06a950f80ebf61bb783652077e5dc93ff", "provider"=>"github"}
22712
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
22713
+  (0.1ms) begin transaction
22714
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:13:29.551416"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409}}"], ["updated_at", "2014-07-13 09:13:29.554036"]]
22715
+  (1.8ms) commit transaction
22716
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.3ms)
22717
+ Completed 200 OK in 76ms (Views: 7.2ms | ActiveRecord: 2.4ms)
22718
+
22719
+
22720
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:13:33 -0500
22721
+ Processing by DemoController#members_only as HTML
22722
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22723
+ Completed 500 Internal Server Error in 5998ms
22724
+
22725
+ TypeError (no implicit conversion of Fixnum into String):
22726
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:29:in `strptime'
22727
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:29:in `valid_token?'
22728
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
22729
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
22730
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
22731
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
22732
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
22733
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
22734
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
22735
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
22736
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22737
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
22738
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22739
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
22740
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22741
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
22742
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22743
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
22744
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
22745
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
22746
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22747
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
22748
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
22749
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
22750
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
22751
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22752
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22753
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22754
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22755
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22756
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22757
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22758
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22759
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22760
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22761
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22762
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22763
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
22764
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
22765
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
22766
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
22767
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
22768
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22769
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
22770
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22771
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22772
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
22773
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22774
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22775
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
22776
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
22777
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
22778
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
22779
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22780
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
22781
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22782
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
22783
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22784
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22785
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22786
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22787
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
22788
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
22789
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
22790
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
22791
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
22792
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22793
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22794
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22795
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
22796
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22797
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
22798
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
22799
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
22800
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
22801
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
22802
+ /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'
22803
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
22804
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
22805
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
22806
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
22807
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
22808
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
22809
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
22810
+
22811
+
22812
+ 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.7ms)
22813
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
22814
+ 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)
22815
+ 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 (16.4ms)
22816
+
22817
+
22818
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:14:01 -0500
22819
+ Processing by DemoController#members_only as HTML
22820
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22821
+ Completed 500 Internal Server Error in 11ms
22822
+
22823
+ TypeError (no implicit conversion of Fixnum into String):
22824
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `strptime'
22825
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `valid_token?'
22826
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
22827
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
22828
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
22829
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
22830
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
22831
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
22832
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
22833
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
22834
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22835
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
22836
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22837
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
22838
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22839
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
22840
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22841
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
22842
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
22843
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
22844
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22845
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
22846
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
22847
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
22848
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
22849
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22850
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22851
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22852
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22853
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22854
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22855
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22856
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22857
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22858
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22859
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22860
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22861
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
22862
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
22863
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
22864
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
22865
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
22866
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22867
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
22868
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22869
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22870
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
22871
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22872
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22873
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
22874
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
22875
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
22876
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
22877
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22878
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
22879
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22880
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
22881
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22882
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22883
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22884
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22885
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
22886
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
22887
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
22888
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
22889
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
22890
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22891
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22892
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22893
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
22894
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
22895
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
22896
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
22897
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
22898
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
22899
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
22900
+ /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'
22901
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
22902
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
22903
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
22904
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
22905
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
22906
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
22907
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
22908
+
22909
+
22910
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
22911
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
22912
+ 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)
22913
+ 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)
22914
+
22915
+
22916
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:14:18 -0500
22917
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
22918
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
22919
+ Completed 500 Internal Server Error in 1ms
22920
+
22921
+ TypeError (no implicit conversion of Fixnum into String):
22922
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `strptime'
22923
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `valid_token?'
22924
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
22925
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
22926
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
22927
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
22928
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
22929
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
22930
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
22931
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
22932
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
22933
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
22934
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
22935
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
22936
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
22937
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
22938
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
22939
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
22940
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
22941
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
22942
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
22943
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
22944
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
22945
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
22946
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
22947
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22948
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22949
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22950
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22951
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
22952
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
22953
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
22954
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
22955
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
22956
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
22957
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
22958
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22959
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22960
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22961
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22962
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22963
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22964
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
22965
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
22966
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
22967
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
22968
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
22969
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
22970
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
22971
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
22972
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
22973
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
22974
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
22975
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
22976
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
22977
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
22978
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
22979
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
22980
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
22981
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
22982
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
22983
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
22984
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
22985
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
22986
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
22987
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
22988
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
22989
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22990
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
22991
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
22992
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
22993
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
22994
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
22995
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
22996
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
22997
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
22998
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
22999
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23000
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
23001
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23002
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
23003
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
23004
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
23005
+ /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'
23006
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
23007
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
23008
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
23009
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
23010
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
23011
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
23012
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
23013
+
23014
+
23015
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
23016
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
23017
+ 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)
23018
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.0ms)
23019
+
23020
+
23021
+ Started GET "/auth/github?auth_origin_url=http://ng-token-auth.dev/" for 127.0.0.1 at 2014-07-13 04:14:20 -0500
23022
+
23023
+
23024
+ Started GET "/auth/github/callback?code=10f70ee8084bb45b5443&state=0e09508ad9e069c3227bca707a772f43f088b71eba3c3039" for 127.0.0.1 at 2014-07-13 04:14:20 -0500
23025
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
23026
+ Parameters: {"code"=>"10f70ee8084bb45b5443", "state"=>"0e09508ad9e069c3227bca707a772f43f088b71eba3c3039", "provider"=>"github"}
23027
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' ORDER BY "users"."id" ASC LIMIT 1
23028
+  (0.1ms) begin transaction
23029
+ SQL (0.3ms) UPDATE "users" SET "confirmed_at" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["confirmed_at", "2014-07-13 09:14:22.169683"], ["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$Z8oyKYeP8yX4aYrLZI1DCOIyhdEB1u384MHTi0Bkkm07eUm9qFClO\",\"expiry\":1406452462}}"], ["updated_at", "2014-07-13 09:14:22.170379"]]
23030
+  (1.8ms) commit transaction
23031
+ Rendered /Users/lynnhurley/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
23032
+ Completed 200 OK in 68ms (Views: 2.3ms | ActiveRecord: 2.4ms)
23033
+
23034
+
23035
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:14:25 -0500
23036
+ Processing by DemoController#members_only as HTML
23037
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23038
+ Completed 500 Internal Server Error in 1ms
23039
+
23040
+ TypeError (no implicit conversion of Fixnum into String):
23041
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `strptime'
23042
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `valid_token?'
23043
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
23044
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
23045
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
23046
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
23047
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
23048
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
23049
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
23050
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
23051
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
23052
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
23053
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
23054
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
23055
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
23056
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
23057
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
23058
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
23059
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
23060
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
23061
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
23062
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
23063
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
23064
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
23065
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
23066
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
23067
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
23068
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
23069
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
23070
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23071
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23072
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23073
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23074
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23075
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23076
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23077
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23078
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
23079
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
23080
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
23081
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
23082
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
23083
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23084
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
23085
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
23086
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
23087
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
23088
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
23089
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
23090
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
23091
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
23092
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
23093
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
23094
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
23095
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
23096
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23097
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23098
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
23099
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23100
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23101
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
23102
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
23103
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23104
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
23105
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
23106
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
23107
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
23108
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23109
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23110
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
23111
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23112
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
23113
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23114
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
23115
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
23116
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
23117
+ /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'
23118
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
23119
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
23120
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
23121
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
23122
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
23123
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
23124
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
23125
+
23126
+
23127
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
23128
+ 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)
23129
+ 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)
23130
+ 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.4ms)
23131
+
23132
+
23133
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:14:34 -0500
23134
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
23135
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23136
+ Completed 500 Internal Server Error in 1ms
23137
+
23138
+ TypeError (no implicit conversion of Fixnum into String):
23139
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `strptime'
23140
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:27:in `valid_token?'
23141
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:28:in `set_user_by_token'
23142
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
23143
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `call'
23144
+ activesupport (4.1.2) lib/active_support/callbacks.rb:160:in `block in halting'
23145
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
23146
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
23147
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
23148
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
23149
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
23150
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
23151
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
23152
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
23153
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
23154
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
23155
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
23156
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
23157
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
23158
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
23159
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
23160
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
23161
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
23162
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
23163
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
23164
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
23165
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
23166
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
23167
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
23168
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
23169
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
23170
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
23171
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
23172
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
23173
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
23174
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
23175
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
23176
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
23177
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
23178
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
23179
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
23180
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
23181
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
23182
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
23183
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
23184
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23185
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23186
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23187
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23188
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23189
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23190
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23191
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23192
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
23193
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
23194
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
23195
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
23196
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
23197
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23198
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
23199
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
23200
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
23201
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
23202
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
23203
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
23204
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
23205
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
23206
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
23207
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
23208
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
23209
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
23210
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23211
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23212
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
23213
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23214
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23215
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
23216
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
23217
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23218
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
23219
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
23220
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
23221
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
23222
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23223
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23224
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
23225
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23226
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
23227
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23228
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
23229
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
23230
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
23231
+ /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'
23232
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
23233
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
23234
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
23235
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
23236
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
23237
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
23238
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
23239
+
23240
+
23241
+ 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)
23242
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
23243
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
23244
+ 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.4ms)
23245
+
23246
+
23247
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:17:57 -0500
23248
+
23249
+
23250
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:17:57 -0500
23251
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
23252
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23253
+  (0.1ms) begin transaction
23254
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$OBe3VQb40rLYXsNC3Phanui.aYTFzXV05Ii9I47IsRRiUBdKq6w76\",\"expiry\":1406452687,\"last_token\":\"$2a$10$Z8oyKYeP8yX4aYrLZI1DCOIyhdEB1u384MHTi0Bkkm07eUm9qFClO\",\"updated_at\":\"2014-07-13 04:18:07 -0500\"}}"], ["updated_at", "2014-07-13 09:18:07.588954"]]
23255
+  (1.8ms) commit transaction
23256
+ Completed 200 OK in 10190ms (Views: 0.5ms | ActiveRecord: 2.8ms)
23257
+
23258
+
23259
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:12 -0500
23260
+ Processing by DemoController#members_only as HTML
23261
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23262
+  (0.1ms) begin transaction
23263
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"expiry\":1406452700,\"last_token\":\"$2a$10$OBe3VQb40rLYXsNC3Phanui.aYTFzXV05Ii9I47IsRRiUBdKq6w76\",\"updated_at\":\"2014-07-13 04:18:20 -0500\"}}"], ["updated_at", "2014-07-13 09:18:20.906143"]]
23264
+  (1.6ms) commit transaction
23265
+ Completed 200 OK in 8653ms (Views: 0.6ms | ActiveRecord: 2.2ms)
23266
+
23267
+
23268
+ Started OPTIONS "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:28 -0500
23269
+
23270
+
23271
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:28 -0500
23272
+ Processing by DemoController#members_only as HTML
23273
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23274
+  (0.1ms) begin transaction
23275
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:28 -0500\"}}"], ["updated_at", "2014-07-13 09:18:28.371589"]]
23276
+  (1.8ms) commit transaction
23277
+ Completed 200 OK in 136ms (Views: 0.6ms | ActiveRecord: 2.8ms)
23278
+
23279
+
23280
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:30 -0500
23281
+ Processing by DemoController#members_only as HTML
23282
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23283
+  (0.1ms) begin transaction
23284
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:30 -0500\"}}"], ["updated_at", "2014-07-13 09:18:30.644333"]]
23285
+  (1.8ms) commit transaction
23286
+ Completed 200 OK in 68ms (Views: 1.0ms | ActiveRecord: 2.3ms)
23287
+
23288
+
23289
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:32 -0500
23290
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
23291
+ Processing by DemoController#members_only as HTML
23292
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23293
+  (0.1ms) begin transaction
23294
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:32 -0500\"}}"], ["updated_at", "2014-07-13 09:18:32.736330"]]
23295
+  (1.8ms) commit transaction
23296
+ Completed 200 OK in 92ms (Views: 0.7ms | ActiveRecord: 2.7ms)
23297
+
23298
+
23299
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-07-13 04:18:36 -0500
23300
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
23301
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23302
+  (0.1ms) begin transaction
23303
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:36 -0500\"}}"], ["updated_at", "2014-07-13 09:18:36.121083"]]
23304
+  (1.7ms) commit transaction
23305
+ Completed 200 OK in 67ms (Views: 0.3ms | ActiveRecord: 2.2ms)
23306
+
23307
+
23308
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:37 -0500
23309
+ Processing by DemoController#members_only as HTML
23310
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23311
+  (0.1ms) begin transaction
23312
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:38 -0500\"}}"], ["updated_at", "2014-07-13 09:18:38.046640"]]
23313
+  (1.7ms) commit transaction
23314
+ Completed 200 OK in 65ms (Views: 0.5ms | ActiveRecord: 2.2ms)
23315
+
23316
+
23317
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:40 -0500
23318
+
23319
+
23320
+ Started GET "/demo/members_only" for 127.0.0.1 at 2014-07-13 04:18:40 -0500
23321
+ Processing by DemoController#members_only as HTML
23322
+ Processing by DemoController#members_only as HTML
23323
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23324
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23325
+  (0.1ms) begin transaction
23326
+  (0.1ms) begin transaction
23327
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:40 -0500\"}}"], ["updated_at", "2014-07-13 09:18:40.891321"]]
23328
+  (1.6ms) commit transaction
23329
+ SQL (1.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:40 -0500\"}}"], ["updated_at", "2014-07-13 09:18:40.891517"]]
23330
+ SQLite3::IOException: disk I/O error: commit transaction
23331
+  (0.3ms) rollback transaction
23332
+ SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction
23333
+ Completed 500 Internal Server Error in 65ms
23334
+  (0.6ms) commit transaction
23335
+ Completed 200 OK in 66ms (Views: 0.5ms | ActiveRecord: 2.6ms)
23336
+
23337
+ ActiveRecord::StatementInvalid (SQLite3::SQLException: cannot rollback - no transaction is active: rollback transaction):
23338
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `step'
23339
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `block in each'
23340
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `loop'
23341
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `each'
23342
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `map'
23343
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:149:in `block in execute'
23344
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:95:in `prepare'
23345
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:134:in `execute'
23346
+ sqlite3 (1.3.9) lib/sqlite3/database.rb:526:in `rollback'
23347
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `block in rollback_db_transaction'
23348
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
23349
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
23350
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
23351
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:366:in `rollback_db_transaction'
23352
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:175:in `perform_rollback'
23353
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/transaction.rb:114:in `rollback'
23354
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:239:in `rollback_transaction'
23355
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:217:in `rescue in within_new_transaction'
23356
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:214:in `within_new_transaction'
23357
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
23358
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
23359
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
23360
+ activerecord (4.1.2) lib/active_record/transactions.rb:273:in `save!'
23361
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/models/user.rb:87:in `extend_batch_buffer'
23362
+ /Users/lynnhurley/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:51:in `update_auth_header'
23363
+ activesupport (4.1.2) lib/active_support/callbacks.rb:424:in `block in make_lambda'
23364
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `call'
23365
+ activesupport (4.1.2) lib/active_support/callbacks.rb:231:in `block in halting'
23366
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
23367
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
23368
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
23369
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
23370
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
23371
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
23372
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
23373
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
23374
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
23375
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
23376
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
23377
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
23378
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
23379
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
23380
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
23381
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
23382
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
23383
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
23384
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
23385
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
23386
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
23387
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
23388
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
23389
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
23390
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
23391
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23392
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23393
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23394
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23395
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23396
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23397
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
23398
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
23399
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
23400
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
23401
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
23402
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
23403
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
23404
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
23405
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
23406
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
23407
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
23408
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
23409
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
23410
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
23411
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
23412
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
23413
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
23414
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
23415
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
23416
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
23417
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
23418
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
23419
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
23420
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
23421
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
23422
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
23423
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
23424
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
23425
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
23426
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
23427
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
23428
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
23429
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
23430
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
23431
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
23432
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
23433
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
23434
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
23435
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
23436
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
23437
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:155:in `handle'
23438
+ /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'
23439
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
23440
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `each'
23441
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:96:in `block in start'
23442
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `loop'
23443
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:76:in `start'
23444
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/lib/nack/server.rb:12:in `run'
23445
+ /Users/lynnhurley/Library/Application Support/Pow/Versions/0.4.3/node_modules/nack/bin/nack_worker:4:in `<main>'
23446
+
23447
+
23448
+ 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)
23449
+ 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)
23450
+ 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)
23451
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.3ms)
23452
+
23453
+
23454
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-07-13 04:18:50 -0500
23455
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
23456
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
23457
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1 ORDER BY "users"."id" ASC LIMIT 1
23458
+  (0.0ms) begin transaction
23459
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"expiry\":1406452708,\"last_token\":\"$2a$10$RLyop3neMYaVaCVhmZw4Wu3eFAQMtAYdcVJOERvdH47I7l/Oj8J.K\",\"updated_at\":\"2014-07-13 04:18:40 -0500\"}}"], ["updated_at", "2014-07-13 09:18:50.868146"]]
23460
+  (1.8ms) commit transaction
23461
+  (0.1ms) begin transaction
23462
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"P2R0isLEcHWxBgHl81yPdA\":{\"token\":\"$2a$10$R7VbELS4GnUL.K0i7Wwg.OI0JG/j/HO8Ls1WSHt8TAxypvXco2f4G\",\"expiry\":\"2014-07-27 03:43:55 -0500\"},\"I6lZXcW9EjW9CY4_IFMmhQ\":{\"token\":\"$2a$10$2FGNXxTDYKrmTzUqMMSM/.xB7lp0g1gVTxolQs0hUDNc.TBRTa/da\",\"expiry\":\"2014-07-27 03:46:55 -0500\"},\"0jqeqQu1kTHpuQ0xM5kyQA\":{\"token\":\"$2a$10$CLNXpoRTGkQokAOFtwYRAO5rjea1lw0SYLHAoNI5NpDas5zCCVeCS\",\"expiry\":1406451128000,\"last_token\":\"$2a$10$cKbebdeh.UCihVtPiMUZE.Jf8r7yC1hPgoqTZWu.KeIFbVCIu1Cdq\",\"updated_at\":\"2014-07-13 03:52:08 -0500\"},\"IqZMP_FAMpyujUZ2ScMPSg\":{\"token\":\"$2a$10$G3An2qGPT3eu5h7YQOGfsuaJ5qzmVpvi5gzSo/tMSoRU9wia9Xyoe\",\"expiry\":1406451258.1700108,\"last_token\":\"$2a$10$Og1.Cdf4Iq22YfgE8v9mRuz6/IpQFrQagJoa8xF2hDOnOlk2TVRiq\",\"updated_at\":\"2014-07-13 03:54:18 -0500\"},\"QTjjNR2Qa5z2jm4hBMN3Ww\":{\"token\":\"$2a$10$JdG2TW/B9LezC0EUki8E/.pFFeREaoobfSyYHwk3NnEAwJgcjrhm6\",\"expiry\":\"2014-07-27 03:55:59 -0500\",\"last_token\":\"$2a$10$a29uOe4Np79gdbPrfggvZ.DXP2VYaSZgdCVRzCr3QAyg6.rMQzV/y\",\"updated_at\":\"2014-07-13 03:56:14 -0500\"},\"hbr1bR_oAnpXoPbRsNpE1A\":{\"token\":\"$2a$10$rHjyrMsifgYXjI98ErrYbeAD2qrTLs2dgsJ9l6vpM97j6Bnya3NPe\",\"expiry\":\"2014-07-27 04:00:23 -0500\",\"last_token\":\"$2a$10$Ha4kjdHb/f7gF/oHSgKgTehlzRSn/OfEhPrDTvhaIN5tvEFXqvHN2\",\"updated_at\":\"2014-07-13 04:00:35 -0500\"},\"ue7VRvEWCOiDODyUCCX25g\":{\"token\":\"$2a$10$IZML1D3WgeYf9ADgjRqaB.WMwP1.AouwuvddSsd8c50XHc6xx4awK\",\"expiry\":\"2014-07-27 04:08:00 -0500\"},\"uq5r4jwWnuCjFvNV0nQqiQ\":{\"token\":\"$2a$10$KYUiCVxdNyVCFGGX8q/ymuoPFurLlOG8AMpS9SocO51ifAid0zmqW\",\"expiry\":\"2014-07-27 04:08:18 -0500\"},\"0wnLtkSKPUsLzY1ezatjyQ\":{\"token\":\"$2a$10$heEsq9up6cOY7MoIlalBI.V1p5JhSuh.UeHhgtBb2HxTl8/rPbpoe\",\"expiry\":\"2014-07-27 04:10:34 -0500\"},\"Q43xMyWaz08oYkRhP0i3Jw\":{\"token\":\"$2a$10$hjlHa2ewEzJUsQqhEbnAe.qGmvzfmEC4Nz5BotXbVWV/QgM.PhUpC\",\"expiry\":\"2014-07-27 04:12:18 -0500\"},\"qFAq4d25nS3-Vbm3rZg7yA\":{\"token\":\"$2a$10$/DXPGlm807ydBsaEE9mOnOWnA0moYGM/YXrVODA73dIoXk52gOaFS\",\"expiry\":1406452409},\"O6_OKw9QIKxG8hS_NDoOuQ\":{\"token\":\"$2a$10$j7Zjf/fZfIbFkTSPE8ycj..OT7YKZsx77zVV/2YlJUitqG.JZzmxq\",\"expiry\":1406452730,\"last_token\":\"$2a$10$bqIRYV4qaKmy9f2SGqO9c.moieLqST.ub/9T8aioxPoq6m65vtl3O\",\"updated_at\":\"2014-07-13 04:18:50 -0500\"}}"], ["updated_at", "2014-07-13 09:18:50.931426"]]
23463
+  (0.7ms) commit transaction
23464
+ Completed 200 OK in 131ms (Views: 0.2ms | ActiveRecord: 3.6ms)