devise_token_auth 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: e49e3d187551e1d540f633b051d426f4d2985ae4
4
- data.tar.gz: a29240c48f5958c11d810205f5ac1ee5161a5863
3
+ metadata.gz: fc69c96d87d3ae188a64a39fe675deedd78341da
4
+ data.tar.gz: e156302a8fd89576255d8decff2daef9cf67710a
5
5
  SHA512:
6
- metadata.gz: 758f4c6b2b22e691413b059a1580eb1682f0a3c417b6c3e53b7bca91fda461fe867c73aad728daf926a90bcdf473d7cd0b3043c7b1f70edec5e69052ab08de7f
7
- data.tar.gz: c3a110357f32e3ecf433280b0a39f58f058db140f2abd4d3abdd84a8c1842ae9fb6205679ed1ca24a5cab68c8d0a371397ac67eabd1a9a152b46369c115307e7
6
+ metadata.gz: 9721fc3d637ede567a8d2302a5a6a30b010d3ff333546742f1ced8de6bcd92841766c9d7c67ffc4757859f9ab94340fed87066093dd0fcc6b8953f4ad5a92823
7
+ data.tar.gz: f0e8d50b103dfa90d575c82d02303fa4d1172b980fb150683f032e5af05aacfb33929461011158ae8d62bc8794674363d6f30b5d2d2736ce811b2fb48f115d89
@@ -10,7 +10,6 @@ module DeviseTokenAuth
10
10
  @resource = User.new(resource_params)
11
11
  @resource.uid = resource_params[:email]
12
12
  @resource.provider = "email"
13
- @resource.auth_token = SecureRandom.urlsafe_base64(nil, false)
14
13
 
15
14
  if @resource.save
16
15
  render json: {
@@ -3,6 +3,7 @@ module DeviseTokenAuth
3
3
  class SessionsController < Devise::SessionsController
4
4
  prepend_before_filter :require_no_authentication, :only => [:create]
5
5
  include Devise::Controllers::Helpers
6
+ include DeviseTokenAuth::Concerns::SetUserByToken
6
7
 
7
8
  respond_to :json
8
9
 
@@ -16,7 +17,19 @@ module DeviseTokenAuth
16
17
  }, status: 401
17
18
 
18
19
  else
19
- sign_in(:user, resource, store: false)
20
+ @user = resource
21
+
22
+ sign_in(:user, @user, store: false)
23
+
24
+ # create client id
25
+ @client_id = SecureRandom.urlsafe_base64(nil, false)
26
+ @token = SecureRandom.urlsafe_base64(nil, false)
27
+
28
+ @user.tokens[@client_id] = {
29
+ token: BCrypt::Password.create(@token),
30
+ expiry: Time.now + 2.weeks
31
+ }
32
+ @user.save
20
33
 
21
34
  render json: {
22
35
  success: true,
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
Binary file
@@ -8820,3 +8820,463 @@ Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
8820
8820
  Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:32:07 -0500
8821
8821
  Processing by TestController#members_only as HTML
8822
8822
  Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
8823
+
8824
+
8825
+ Started OPTIONS "/auth/sign_in" for 127.0.0.1 at 2014-06-30 23:44:38 -0500
8826
+
8827
+
8828
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-06-30 23:44:38 -0500
8829
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
8830
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
8831
+ Unpermitted parameters: session
8832
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
8833
+ Completed 401 Unauthorized in 7ms (Views: 0.3ms | ActiveRecord: 0.3ms)
8834
+
8835
+
8836
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-30 23:44:48 -0500
8837
+
8838
+
8839
+ Started POST "/auth" for 127.0.0.1 at 2014-06-30 23:44:48 -0500
8840
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
8841
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
8842
+ Unpermitted parameters: registration
8843
+ Unpermitted parameters: registration
8844
+ Completed 500 Internal Server Error in 63ms
8845
+
8846
+ NoMethodError (undefined method `auth_token=' for #<User:0x007fea6f33f8b8>):
8847
+ activemodel (4.1.2) lib/active_model/attribute_methods.rb:435:in `method_missing'
8848
+ activerecord (4.1.2) lib/active_record/attribute_methods.rb:208:in `method_missing'
8849
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/registrations_controller.rb:13:in `create'
8850
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
8851
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
8852
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
8853
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
8854
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
8855
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
8856
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
8857
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
8858
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
8859
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
8860
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
8861
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
8862
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
8863
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
8864
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
8865
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
8866
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
8867
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
8868
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
8869
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
8870
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
8871
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
8872
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
8873
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
8874
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
8875
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
8876
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
8877
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
8878
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
8879
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
8880
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
8881
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
8882
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
8883
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
8884
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
8885
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8886
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
8887
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
8888
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
8889
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
8890
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
8891
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
8892
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
8893
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
8894
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
8895
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
8896
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8897
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8898
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8899
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8900
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
8901
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
8902
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
8903
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
8904
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8905
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8906
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8907
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
8908
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
8909
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
8910
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8911
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
8912
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
8913
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
8914
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8915
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
8916
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
8917
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
8918
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8919
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
8920
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8921
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8922
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
8923
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8924
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8925
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
8926
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
8927
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8928
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
8929
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
8930
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
8931
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8932
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
8933
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
8934
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
8935
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8936
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
8937
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
8938
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
8939
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
8940
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
8941
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
8942
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
8943
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
8944
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
8945
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
8946
+
8947
+
8948
+ 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)
8949
+ 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)
8950
+ 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)
8951
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.8ms)
8952
+
8953
+
8954
+ Started POST "/auth" for 127.0.0.1 at 2014-06-30 23:46:00 -0500
8955
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
8956
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
8957
+ Unpermitted parameters: registration
8958
+ Unpermitted parameters: registration
8959
+  (0.1ms) begin transaction
8960
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
8961
+ Binary data inserted for `string` type on column `encrypted_password`
8962
+ SQL (0.3ms) INSERT INTO "users" ("confirm_success_url", "created_at", "email", "encrypted_password", "provider", "tokens", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["confirm_success_url", "http://localhost:7777/"], ["created_at", "2014-07-01 04:46:00.258115"], ["email", "test@test.com"], ["encrypted_password", "$2a$10$QH5PHhpcm2R.KbSYEQoGkOKLVx0NEy5GXTUKhAzTt6Y8q4jS/SYxe"], ["provider", "email"], ["tokens", "{}"], ["uid", "test@test.com"], ["updated_at", "2014-07-01 04:46:00.258115"]]
8963
+  (0.8ms) commit transaction
8964
+ Completed 200 OK in 111ms (Views: 0.3ms | ActiveRecord: 1.8ms)
8965
+
8966
+
8967
+ Started POST "/auth" for 127.0.0.1 at 2014-06-30 23:46:05 -0500
8968
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
8969
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
8970
+ Unpermitted parameters: registration
8971
+ Unpermitted parameters: registration
8972
+  (0.1ms) begin transaction
8973
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
8974
+  (0.1ms) rollback transaction
8975
+ Completed 403 Forbidden in 75ms (Views: 0.3ms | ActiveRecord: 0.2ms)
8976
+
8977
+
8978
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-06-30 23:46:15 -0500
8979
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
8980
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
8981
+ Unpermitted parameters: session
8982
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
8983
+  (0.1ms) begin transaction
8984
+ Binary data inserted for `string` type on column `current_sign_in_ip`
8985
+ Binary data inserted for `string` type on column `last_sign_in_ip`
8986
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:46:15.747468"], ["current_sign_in_ip", "127.0.0.1"], ["last_sign_in_at", "2014-07-01 04:46:15.747468"], ["last_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["tokens", "{}"], ["updated_at", "2014-07-01 04:46:15.747979"]]
8987
+  (1.7ms) commit transaction
8988
+ Completed 200 OK in 67ms (Views: 0.3ms | ActiveRecord: 2.2ms)
8989
+
8990
+
8991
+ Started OPTIONS "/test/members_only" for 127.0.0.1 at 2014-06-30 23:46:21 -0500
8992
+
8993
+
8994
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:46:21 -0500
8995
+ Processing by TestController#members_only as HTML
8996
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
8997
+
8998
+
8999
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-06-30 23:48:46 -0500
9000
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
9001
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
9002
+ Unpermitted parameters: session
9003
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
9004
+  (0.1ms) begin transaction
9005
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:48:46.611318"], ["sign_in_count", 2], ["tokens", "{}"], ["updated_at", "2014-07-01 04:48:46.611880"]]
9006
+  (1.9ms) commit transaction
9007
+ Completed 500 Internal Server Error in 86ms
9008
+
9009
+ NoMethodError (undefined method `tokens' for nil:NilClass):
9010
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/sessions_controller.rb:26:in `create'
9011
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
9012
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
9013
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
9014
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
9015
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
9016
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
9017
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
9018
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
9019
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
9020
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
9021
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
9022
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
9023
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
9024
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
9025
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
9026
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `call'
9027
+ activesupport (4.1.2) lib/active_support/callbacks.rb:149:in `block in halting_and_conditional'
9028
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
9029
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
9030
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
9031
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
9032
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
9033
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
9034
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9035
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
9036
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
9037
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
9038
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9039
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
9040
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
9041
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
9042
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
9043
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
9044
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
9045
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
9046
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
9047
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
9048
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
9049
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
9050
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
9051
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
9052
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
9053
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
9054
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
9055
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
9056
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
9057
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
9058
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
9059
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
9060
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
9061
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
9062
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
9063
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
9064
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
9065
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
9066
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
9067
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9068
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9069
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9070
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
9071
+ rack (1.5.2) lib/rack/conditionalget.rb:35:in `call'
9072
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
9073
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9074
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
9075
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
9076
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
9077
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9078
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
9079
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
9080
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
9081
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9082
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
9083
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9084
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9085
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
9086
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9087
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9088
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
9089
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
9090
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9091
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
9092
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
9093
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
9094
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9095
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
9096
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
9097
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
9098
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
9099
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
9100
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
9101
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
9102
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
9103
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
9104
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
9105
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
9106
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
9107
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
9108
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
9109
+
9110
+
9111
+ 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)
9112
+ 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)
9113
+ 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)
9114
+ 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)
9115
+
9116
+
9117
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-06-30 23:49:34 -0500
9118
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
9119
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
9120
+ Unpermitted parameters: session
9121
+ User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
9122
+  (0.1ms) begin transaction
9123
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:34.596724"], ["last_sign_in_at", "2014-07-01 04:48:46.611318"], ["sign_in_count", 3], ["tokens", "{}"], ["updated_at", "2014-07-01 04:49:34.597298"]]
9124
+  (0.6ms) commit transaction
9125
+  (0.1ms) begin transaction
9126
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$yMrxHu7YwRxGkjMONVxOPuSmCoGlYK0T7a3Zh57xbd3AMa9l3Cp1O\",\"expiry\":\"2014-07-14 23:49:34 -0500\"}}"], ["updated_at", "2014-07-01 04:49:34.659782"]]
9127
+  (0.5ms) commit transaction
9128
+  (0.1ms) begin transaction
9129
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$n3Igii8nF7Vf3UyTDz.hyu96UZt7TDIjiMoCEV76spCYiNsMfpyyC\",\"expiry\":\"2014-07-14 23:49:34 -0500\"}}"], ["updated_at", "2014-07-01 04:49:34.723464"]]
9130
+  (2.5ms) commit transaction
9131
+ Completed 200 OK in 209ms (Views: 0.3ms | ActiveRecord: 7.7ms)
9132
+
9133
+
9134
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:49:41 -0500
9135
+ Processing by TestController#members_only as HTML
9136
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9137
+  (0.1ms) begin transaction
9138
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:41.956765"], ["last_sign_in_at", "2014-07-01 04:49:34.596724"], ["sign_in_count", 4], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$n3Igii8nF7Vf3UyTDz.hyu96UZt7TDIjiMoCEV76spCYiNsMfpyyC\",\"expiry\":\"2014-07-14 23:49:34 -0500\"}}"], ["updated_at", "2014-07-01 04:49:41.957299"]]
9139
+  (1.6ms) commit transaction
9140
+  (0.1ms) begin transaction
9141
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$R9eRiwEnQlszw0Q4whgolurgBSj4XRzuCBwKdlMHCdzrGLDOyIwii\",\"expiry\":\"2014-07-14 23:49:42 -0500\"}}"], ["updated_at", "2014-07-01 04:49:42.021360"]]
9142
+  (0.6ms) commit transaction
9143
+ Completed 200 OK in 129ms (Views: 0.4ms | ActiveRecord: 2.9ms)
9144
+
9145
+
9146
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:49:45 -0500
9147
+ Processing by TestController#members_only as HTML
9148
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9149
+  (0.1ms) begin transaction
9150
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:45.391303"], ["last_sign_in_at", "2014-07-01 04:49:41.956765"], ["sign_in_count", 5], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$R9eRiwEnQlszw0Q4whgolurgBSj4XRzuCBwKdlMHCdzrGLDOyIwii\",\"expiry\":\"2014-07-14 23:49:42 -0500\"}}"], ["updated_at", "2014-07-01 04:49:45.391793"]]
9151
+  (1.8ms) commit transaction
9152
+  (0.1ms) begin transaction
9153
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$DWTXlbUCF9vCKDNcAV5gdu9b8nonlQIqTAllH9vCVhzleKHdrKvHO\",\"expiry\":\"2014-07-14 23:49:45 -0500\"}}"], ["updated_at", "2014-07-01 04:49:45.474807"]]
9154
+  (0.6ms) commit transaction
9155
+ Completed 200 OK in 149ms (Views: 0.4ms | ActiveRecord: 3.2ms)
9156
+
9157
+
9158
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:49:48 -0500
9159
+ Processing by TestController#members_only as HTML
9160
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9161
+  (0.1ms) begin transaction
9162
+ SQL (0.2ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:48.502853"], ["last_sign_in_at", "2014-07-01 04:49:45.391303"], ["sign_in_count", 6], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$DWTXlbUCF9vCKDNcAV5gdu9b8nonlQIqTAllH9vCVhzleKHdrKvHO\",\"expiry\":\"2014-07-14 23:49:45 -0500\"}}"], ["updated_at", "2014-07-01 04:49:48.503327"]]
9163
+  (0.6ms) commit transaction
9164
+  (0.1ms) begin transaction
9165
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$5h4hMYisgE8KETS7dW75deZX/xOlXaZBZHZKq9eQzDSj8dljg8Ptq\",\"expiry\":\"2014-07-14 23:49:48 -0500\"}}"], ["updated_at", "2014-07-01 04:49:48.566133"]]
9166
+  (0.5ms) commit transaction
9167
+ Completed 200 OK in 126ms (Views: 0.4ms | ActiveRecord: 2.0ms)
9168
+
9169
+
9170
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:49:51 -0500
9171
+ Processing by TestController#members_only as HTML
9172
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9173
+  (0.1ms) begin transaction
9174
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:51.652433"], ["last_sign_in_at", "2014-07-01 04:49:48.502853"], ["sign_in_count", 7], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$5h4hMYisgE8KETS7dW75deZX/xOlXaZBZHZKq9eQzDSj8dljg8Ptq\",\"expiry\":\"2014-07-14 23:49:48 -0500\"}}"], ["updated_at", "2014-07-01 04:49:51.652913"]]
9175
+  (2.0ms) commit transaction
9176
+  (0.1ms) begin transaction
9177
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$9qU/UliTsKIe7XA7YMveLOboceqPkB0MHZPBEUWKGcRBzdfaVyO9S\",\"expiry\":\"2014-07-14 23:49:51 -0500\"}}"], ["updated_at", "2014-07-01 04:49:51.728508"]]
9178
+  (0.6ms) commit transaction
9179
+ Completed 200 OK in 139ms (Views: 0.4ms | ActiveRecord: 3.5ms)
9180
+
9181
+
9182
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:49:55 -0500
9183
+
9184
+
9185
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:49:56 -0500
9186
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
9187
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9188
+  (0.1ms) begin transaction
9189
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:56.179761"], ["last_sign_in_at", "2014-07-01 04:49:51.652433"], ["sign_in_count", 8], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$9qU/UliTsKIe7XA7YMveLOboceqPkB0MHZPBEUWKGcRBzdfaVyO9S\",\"expiry\":\"2014-07-14 23:49:51 -0500\"}}"], ["updated_at", "2014-07-01 04:49:56.180466"]]
9190
+  (2.0ms) commit transaction
9191
+  (0.1ms) begin transaction
9192
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$gsg2.7Had5cFwxv0Nq1gDux7NOhzG5rOTWiNR0MGmwubiz8Ay/k1u\",\"expiry\":\"2014-07-14 23:49:56 -0500\"}}"], ["updated_at", "2014-07-01 04:49:56.247989"]]
9193
+  (0.8ms) commit transaction
9194
+ Completed 200 OK in 136ms (Views: 0.5ms | ActiveRecord: 3.7ms)
9195
+
9196
+
9197
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:49:57 -0500
9198
+ Processing by TestController#members_only as HTML
9199
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9200
+  (0.1ms) begin transaction
9201
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:49:58.049706"], ["last_sign_in_at", "2014-07-01 04:49:56.179761"], ["sign_in_count", 9], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$gsg2.7Had5cFwxv0Nq1gDux7NOhzG5rOTWiNR0MGmwubiz8Ay/k1u\",\"expiry\":\"2014-07-14 23:49:56 -0500\"}}"], ["updated_at", "2014-07-01 04:49:58.050187"]]
9202
+  (2.3ms) commit transaction
9203
+  (0.1ms) begin transaction
9204
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$MNFGn5.m9U9XicOUmeEjB.uQ/BRRJ2oH0KQnDdpR8Y2aAmOLdk5V6\",\"expiry\":\"2014-07-14 23:49:58 -0500\"}}"], ["updated_at", "2014-07-01 04:49:58.126090"]]
9205
+  (0.8ms) commit transaction
9206
+ Completed 200 OK in 140ms (Views: 0.5ms | ActiveRecord: 3.9ms)
9207
+
9208
+
9209
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:50:01 -0500
9210
+
9211
+
9212
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-30 23:50:01 -0500
9213
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
9214
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = 'test@test.com' LIMIT 1
9215
+  (0.1ms) begin transaction
9216
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["current_sign_in_at", "2014-07-01 04:50:01.979810"], ["last_sign_in_at", "2014-07-01 04:49:58.049706"], ["sign_in_count", 10], ["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$MNFGn5.m9U9XicOUmeEjB.uQ/BRRJ2oH0KQnDdpR8Y2aAmOLdk5V6\",\"expiry\":\"2014-07-14 23:49:58 -0500\"}}"], ["updated_at", "2014-07-01 04:50:01.980330"]]
9217
+  (1.6ms) commit transaction
9218
+  (0.0ms) begin transaction
9219
+ SQL (0.1ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$MNFGn5.m9U9XicOUmeEjB.uQ/BRRJ2oH0KQnDdpR8Y2aAmOLdk5V6\",\"expiry\":\"2014-07-14 23:49:58 -0500\"}}"], ["updated_at", "2014-07-01 04:50:01.983397"]]
9220
+  (0.5ms) commit transaction
9221
+  (0.1ms) begin transaction
9222
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["tokens", "{\"Cl6P1Nq0KEyhLq-O7PxaGg\":{\"token\":\"$2a$10$C/1ySdfCEd9l5e5eotR1q.OhOa.T9oVoQs5DFn9VoozUb.N3/WjYe\",\"expiry\":\"2014-07-14 23:50:02 -0500\"}}"], ["updated_at", "2014-07-01 04:50:02.046057"]]
9223
+  (0.6ms) commit transaction
9224
+ Completed 200 OK in 129ms (Views: 0.1ms | ActiveRecord: 3.6ms)
9225
+
9226
+
9227
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:50:03 -0500
9228
+ Processing by TestController#members_only as HTML
9229
+ Completed 401 Unauthorized in 0ms (Views: 0.1ms | ActiveRecord: 0.0ms)
9230
+
9231
+
9232
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-30 23:50:07 -0500
9233
+
9234
+
9235
+ Started GET "/auth/github/callback?code=7af8a4f9dce4c2b4369d&state=461b6a758f70283f52cf73b41a3eb8524a17e07078adc569" for 127.0.0.1 at 2014-06-30 23:50:07 -0500
9236
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
9237
+ Parameters: {"code"=>"7af8a4f9dce4c2b4369d", "state"=>"461b6a758f70283f52cf73b41a3eb8524a17e07078adc569", "provider"=>"github"}
9238
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
9239
+  (0.1ms) begin transaction
9240
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$NdCvURIs0lvrMtyb/hwHcOmK3mDWQhcJYXWNOFYS1KSE0lWozVMH.\",\"expiry\":\"2014-07-14 23:50:09 -0500\"}}"], ["updated_at", "2014-07-01 04:50:09.160683"]]
9241
+  (0.7ms) commit transaction
9242
+  (0.0ms) begin transaction
9243
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$NdCvURIs0lvrMtyb/hwHcOmK3mDWQhcJYXWNOFYS1KSE0lWozVMH.\",\"expiry\":\"2014-07-14 23:50:09 -0500\"}}"], ["updated_at", "2014-07-01 04:50:09.178324"]]
9244
+  (0.6ms) commit transaction
9245
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
9246
+ Completed 200 OK in 84ms (Views: 1.7ms | ActiveRecord: 2.2ms)
9247
+
9248
+
9249
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:50:12 -0500
9250
+ Processing by TestController#members_only as HTML
9251
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
9252
+  (0.1ms) begin transaction
9253
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:50:12.396588"], ["last_sign_in_at", "2014-07-01 04:31:59.604297"], ["sign_in_count", 21], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$NdCvURIs0lvrMtyb/hwHcOmK3mDWQhcJYXWNOFYS1KSE0lWozVMH.\",\"expiry\":\"2014-07-14 23:50:09 -0500\"}}"], ["updated_at", "2014-07-01 04:50:12.397080"]]
9254
+  (1.8ms) commit transaction
9255
+  (0.1ms) begin transaction
9256
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$lCQC2eBLLbEAqDOfmi0.luUmyGbkdEsaRL/dSWtQ8FYVRNVGGKWQ.\",\"expiry\":\"2014-07-14 23:50:12 -0500\"}}"], ["updated_at", "2014-07-01 04:50:12.476291"]]
9257
+  (0.8ms) commit transaction
9258
+ Completed 200 OK in 154ms (Views: 0.6ms | ActiveRecord: 3.4ms)
9259
+
9260
+
9261
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2014-06-30 23:50:15 -0500
9262
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
9263
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
9264
+  (0.1ms) begin transaction
9265
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:50:15.991261"], ["last_sign_in_at", "2014-07-01 04:50:12.396588"], ["sign_in_count", 22], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$lCQC2eBLLbEAqDOfmi0.luUmyGbkdEsaRL/dSWtQ8FYVRNVGGKWQ.\",\"expiry\":\"2014-07-14 23:50:12 -0500\"}}"], ["updated_at", "2014-07-01 04:50:15.991723"]]
9266
+  (0.7ms) commit transaction
9267
+  (0.1ms) begin transaction
9268
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$x6xtaTv1/AjHRqvdisiy1OmdAuif/gkNaJpcRtEKlDxHMncPLDfmu\",\"expiry\":\"2014-07-14 23:50:16 -0500\"}}"], ["updated_at", "2014-07-01 04:50:16.072811"]]
9269
+  (0.7ms) commit transaction
9270
+ Completed 200 OK in 166ms (Views: 0.8ms | ActiveRecord: 2.3ms)
9271
+
9272
+
9273
+ Started GET "/test/members_only" for 127.0.0.1 at 2014-06-30 23:50:17 -0500
9274
+ Processing by TestController#members_only as HTML
9275
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' LIMIT 1
9276
+  (0.1ms) begin transaction
9277
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "last_sign_in_at" = ?, "sign_in_count" = ?, "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-07-01 04:50:17.833075"], ["last_sign_in_at", "2014-07-01 04:50:15.991261"], ["sign_in_count", 23], ["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$x6xtaTv1/AjHRqvdisiy1OmdAuif/gkNaJpcRtEKlDxHMncPLDfmu\",\"expiry\":\"2014-07-14 23:50:16 -0500\"}}"], ["updated_at", "2014-07-01 04:50:17.833569"]]
9278
+  (2.0ms) commit transaction
9279
+  (0.1ms) begin transaction
9280
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["tokens", "{\"BCknj1mMOe5EC2teV7gCUA\":\"FWr_xtDSjDBa-rbttVO5TA\",\"test\":\"bang\",\"qPd_p8jb87n0qaItB3OkHg\":\"$2a$10$clFi91Rcjp8FzI3vejq6ZuTMovwEjl2Uyg1aLT.c0o1NpGFzeIPSC\",\"dPsMa22fATPBeD9tiZMPQQ\":\"$2a$10$waP72qzcaa2fR637odJ70udAVlGtZiWvC24.QCUJWwLEbQUMmkGjq\",\"4ZkphrWN2TdUm5ecxvT4IA\":\"$2a$10$jIEpglKfH20XiYytrRLMNe8XMns0hXbTHO3yYRoQq0P.XPqcSFv/6\",\"S9i_DeW7ibC2NqKTZontow\":\"$2a$10$JvoA5XMA2txzp0P.tirBOuGwvjg5CZs86VK/dlmjSFxva/TmcU47O\",\"CVW3IA1cwOha9DFX_NU0wQ\":\"$2a$10$K0S3m6lcXW8ctI9TNwbvM.Uj8/En9Y1pHw3.RNENtGMEjTjWAzWIC\",\"khKYTEn6P5Rg0Hw0YvQ6wA\":{\"token\":\"$2a$10$IS258ND/YEymZpzKYLY.1OCSlrFCsiW8ZWdtIyvkQc/ht6Eu0ifWi\",\"expiry\":\"2014-07-14 23:23:14 -0500\"},\"Q83v5Wwjk1ytln1Zl0IQjQ\":{\"token\":\"$2a$10$I/wpSDRhLVUpYzKwTTQuI.XXlhWYz4nyWzCxwiD1XI/c/jIDyTqG2\",\"expiry\":\"2014-07-14 23:24:11 -0500\"},\"EFk09-tpS03qv9tZ3cRokg\":{\"token\":\"$2a$10$Ap8zljKcwhTJfhYsXQGIFuR8ZfhrO7qOUnP368MVCu2bNVDfgePLe\",\"expiry\":\"2014-07-14 23:27:02 -0500\"},\"gYDp6xK2BeGpHn9-NbtsaA\":{\"token\":\"$2a$10$PSCWrPpEMFSZeUv.6FE4dOjAb/a5YcaimbH4Ykc4yMTM35FzcErp.\",\"expiry\":\"2014-07-14 23:29:16 -0500\"},\"8ydX0xUFhYu8sCiROLYLig\":{\"token\":\"$2a$10$2FORLOZnWtk1m0SNlRxDCOg5tzDchvCMJVu822YDOX0bc6254zDUK\",\"expiry\":\"2014-07-14 23:31:59 -0500\"},\"wwMjRZ2y7RfiPFEqGdbGOA\":{\"token\":\"$2a$10$0X1YGbIPYAgBHvn/wyS/a.9UQTj7H0F6P4LCQjkOWCsIWZoh9tYrC\",\"expiry\":\"2014-07-14 23:50:17 -0500\"}}"], ["updated_at", "2014-07-01 04:50:17.914340"]]
9281
+  (0.6ms) commit transaction
9282
+ Completed 200 OK in 158ms (Views: 0.6ms | ActiveRecord: 3.4ms)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: devise_token_auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lynn Hurley