devise_token_auth 0.1.31.beta5 → 0.1.31.beta6

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: c1d2d444406eb79df2fe9c6be98842816c1e5007
4
- data.tar.gz: c6519ce1ebbfd7f6edbfc8193880bfa8ded5c399
3
+ metadata.gz: c3867bf1f0b3832fcea72167df4475795e8c7d0b
4
+ data.tar.gz: f1ffcc6b8b61c684de06b17b7ea989c243e924b6
5
5
  SHA512:
6
- metadata.gz: 8984624619a0ff55101655891b7c2dbb061da6504e28cc53f316cf97b16e3abd81d3029232feaae6b3702bd277c35a81732b2e527e78a735f19d07f3607a32be
7
- data.tar.gz: 78631a48d780614c886df9ec21afe5e3dffe3bba129089cd6f921564bf9b65ef32a6c229a73b8bce8eaaeddafd9d75813e1f17d961e864bdd94887912e5cbfa3
6
+ metadata.gz: c90f208ef0c887baf174dbce52f72f38a71abd6693f0b39fb0f292e6c41a5f9aec6aa784ea1b1086701667a58a801297e41c4e5f51fc7f962cd69c6ed70ab662
7
+ data.tar.gz: 6492ea7af169b07c397af27850faf6d7ed5217d29cfcdb2ca6559a240b7a2a07453699f95124f79b90313d1d8a6929b1e11d7ae08073cb60e784e3e4529475d9
@@ -6,10 +6,12 @@ module DeviseTokenAuth::Concerns::User
6
6
  unless self.method_defined?(:devise_modules)
7
7
  devise :database_authenticatable, :registerable,
8
8
  :recoverable, :trackable, :validatable,
9
- :confirmable, :omniauthable
9
+ :confirmable
10
+ else
11
+ self.devise_modules.delete(:omniauthable)
10
12
  end
11
13
 
12
- serialize :tokens, HashWithIndifferentAccess
14
+ serialize :tokens, JSON
13
15
 
14
16
  validates_presence_of :email, if: Proc.new { |u| u.provider == 'email' }
15
17
  validates_presence_of :uid, if: Proc.new { |u| u.provider != 'email' }
@@ -100,32 +102,39 @@ module DeviseTokenAuth::Concerns::User
100
102
 
101
103
 
102
104
  def token_is_current?(token, client_id)
105
+ # ghetto HashWithIndifferentAccess
106
+ expiry = self.tokens[client_id]['expiry'] || self.tokens[client_id][:expiry]
107
+ token_hash = self.tokens[client_id]['token'] || self.tokens[client_id][:token]
108
+
103
109
  return true if (
104
110
  # ensure that expiry and token are set
105
- self.tokens[client_id]['expiry'] and
106
- self.tokens[client_id]['token'] and
111
+ expiry and token and
107
112
 
108
113
  # ensure that the token has not yet expired
109
- DateTime.strptime(self.tokens[client_id]['expiry'].to_s, '%s') > Time.now and
114
+ DateTime.strptime(expiry.to_s, '%s') > Time.now and
110
115
 
111
116
  # ensure that the token is valid
112
- BCrypt::Password.new(self.tokens[client_id]['token']) == token
117
+ BCrypt::Password.new(token_hash) == token
113
118
  )
114
119
  end
115
120
 
116
121
 
117
122
  # allow batch requests to use the previous token
118
123
  def token_can_be_reused?(token, client_id)
124
+ # ghetto HashWithIndifferentAccess
125
+ updated_at = self.tokens[client_id]['updated_at'] || self.tokens[client_id][:updated_at]
126
+ last_token = self.tokens[client_id]['last_token'] || self.tokens[client_id][:last_token]
127
+
128
+
119
129
  return true if (
120
130
  # ensure that the last token and its creation time exist
121
- self.tokens[client_id]['updated_at'] and
122
- self.tokens[client_id]['last_token'] and
131
+ updated_at and last_token and
123
132
 
124
133
  # ensure that previous token falls within the batch buffer throttle time of the last request
125
- self.tokens[client_id]['updated_at'] > Time.now - DeviseTokenAuth.batch_request_buffer_throttle and
134
+ updated_at > Time.now - DeviseTokenAuth.batch_request_buffer_throttle and
126
135
 
127
136
  # ensure that the token is valid
128
- BCrypt::Password.new(self.tokens[client_id]['last_token']) == token
137
+ BCrypt::Password.new(last_token) == token
129
138
  )
130
139
  end
131
140
 
@@ -193,11 +193,4 @@ Devise.setup do |config|
193
193
 
194
194
  # don't serialize tokens
195
195
  Devise::Models::Authenticatable::BLACKLIST_FOR_SERIALIZATION << :tokens
196
-
197
- # mounted routes will point to this
198
- Rails.application.config.after_initialize do
199
- if defined?(::OmniAuth)
200
- ::OmniAuth::config.path_prefix = config.omniauth_path_prefix = DeviseTokenAuth.omniauth_prefix
201
- end
202
- end
203
196
  end
data/config/routes.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  Rails.application.routes.draw do
2
2
  if defined?(::OmniAuth)
3
- get "#{::OmniAuth::config.path_prefix}/:provider/callback", to: "devise_token_auth/omniauth_callbacks#redirect_callbacks"
3
+ get "#{DeviseTokenAuth.omniauth_prefix}/:provider/callback", to: "devise_token_auth/omniauth_callbacks#redirect_callbacks"
4
4
  end
5
5
  end
@@ -21,5 +21,11 @@ module DeviseTokenAuth
21
21
 
22
22
  def self.setup(&block)
23
23
  yield self
24
+
25
+ Rails.application.config.after_initialize do
26
+ if defined?(::OmniAuth)
27
+ ::OmniAuth::config.path_prefix = Devise.omniauth_path_prefix = self.omniauth_prefix
28
+ end
29
+ end
24
30
  end
25
31
  end
@@ -17,8 +17,7 @@ module ActionDispatch::Routing
17
17
  controllers = {:sessions => sessions_ctrl,
18
18
  :registrations => registrations_ctrl,
19
19
  :passwords => passwords_ctrl,
20
- :confirmations => confirmations_ctrl,
21
- :omniauth_callbacks => omniauth_ctrl}
20
+ :confirmations => confirmations_ctrl}
22
21
 
23
22
  # remove any unwanted devise modules
24
23
  opts[:skip].each{|item| controllers.delete(item)}
@@ -28,8 +27,7 @@ module ActionDispatch::Routing
28
27
  :module => :devise,
29
28
  :path => "#{opts[:at]}",
30
29
  :controllers => controllers,
31
- :skip => opts[:skip]
32
-
30
+ :skip => opts[:skip] + [:omniauth_callbacks]
33
31
 
34
32
  unnest_namespace do
35
33
  # get full url path as if it were namespaced
@@ -51,8 +49,8 @@ module ActionDispatch::Routing
51
49
 
52
50
  # omniauth routes. only define if omniauth is installed and not skipped.
53
51
  if defined?(::OmniAuth) and not opts[:skip].include?(:omniauth_callbacks)
54
- match "#{full_path}/failure", controller: "#{omniauth_ctrl}", action: "omniauth_failure", via: [:get]
55
- match "#{full_path}/:provider/callback", controller: "#{omniauth_ctrl}", action: "omniauth_success", via: [:get]
52
+ match "#{full_path}/failure", controller: omniauth_ctrl, action: "omniauth_failure", via: [:get]
53
+ match "#{full_path}/:provider/callback", controller: omniauth_ctrl, action: "omniauth_success", via: [:get]
56
54
 
57
55
  # preserve the resource class thru oauth authentication by setting name of
58
56
  # resource as "resource_class" param
@@ -63,8 +61,10 @@ module ActionDispatch::Routing
63
61
  # append name of current resource
64
62
  qs["resource_class"] = [resource]
65
63
 
64
+ set_omniauth_path_prefix!(DeviseTokenAuth.omniauth_prefix)
65
+
66
66
  # re-construct the path for omniauth
67
- "#{::OmniAuth::config.path_prefix}/#{params[:provider]}?#{{}.tap {|hash| qs.each{|k, v| hash[k] = v.first}}.to_param}"
67
+ "#{::OmniAuth.config.path_prefix}/#{params[:provider]}?#{{}.tap {|hash| qs.each{|k, v| hash[k] = v.first}}.to_param}"
68
68
  }, via: [:get]
69
69
  end
70
70
  end
@@ -1,3 +1,3 @@
1
1
  module DeviseTokenAuth
2
- VERSION = "0.1.31.beta5"
2
+ VERSION = "0.1.31.beta6"
3
3
  end
Binary file
Binary file
@@ -6716,3 +6716,3817 @@ DEPRECATION WARNING: Defining a route where `to` is a controller without an acti
6716
6716
  DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: :devise_token_auth/token_validations/validate_token` to `controller: :devise_token_auth/token_validations/validate_token`. (called from block in mount_devise_token_auth_for at /Users/lynn/Code/Auth/devise_token_auth/lib/devise_token_auth/rails/routes.rb:35)
6717
6717
  DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: :devise_token_auth/omniauth_callbacks/omniauth_failure` to `controller: :devise_token_auth/omniauth_callbacks/omniauth_failure`. (called from block in mount_devise_token_auth_for at /Users/lynn/Code/Auth/devise_token_auth/lib/devise_token_auth/rails/routes.rb:39)
6718
6718
  DEPRECATION WARNING: Defining a route where `to` is a controller without an action is deprecated. Please change `to: :/devise_token_auth/token_validations` to `controller: :/devise_token_auth/token_validations`. (called from block in mount_devise_token_auth_for at /Users/lynn/Code/Auth/devise_token_auth/lib/devise_token_auth/rails/routes.rb:34)
6719
+
6720
+
6721
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-05 11:48:35 -0600
6722
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
6723
+
6724
+
6725
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:48:35 -0600
6726
+
6727
+
6728
+ Started GET "/omniauth/github/callback?code=aa57a3b26bae4066f53e&state=cde638c79e5f7f47b071614fe75bc2170ad39afa6167cc67" for 127.0.0.1 at 2015-01-05 11:48:35 -0600
6729
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
6730
+ Parameters: {"code"=>"aa57a3b26bae4066f53e", "state"=>"cde638c79e5f7f47b071614fe75bc2170ad39afa6167cc67", "provider"=>"github"}
6731
+ Redirected to https://devise-token-auth.dev/auth/github/callback
6732
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
6733
+
6734
+
6735
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-05 11:48:36 -0600
6736
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
6737
+ Parameters: {"provider"=>"github"}
6738
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
6739
+ Completed 500 Internal Server Error in 85ms
6740
+
6741
+ IndexError (string not matched):
6742
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `[]='
6743
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `omniauth_success'
6744
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6745
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
6746
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
6747
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6748
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
6749
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
6750
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
6751
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
6752
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
6753
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
6754
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
6755
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
6756
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
6757
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
6758
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
6759
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
6760
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
6761
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6762
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
6763
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6764
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
6765
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6766
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6767
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6768
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
6769
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
6770
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
6771
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6772
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
6773
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
6774
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
6775
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
6776
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
6777
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
6778
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
6779
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
6780
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
6781
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6782
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6783
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6784
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6785
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6786
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6787
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6788
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6789
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
6790
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
6791
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
6792
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
6793
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
6794
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
6795
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
6796
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6797
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
6798
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
6799
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
6800
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6801
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
6802
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
6803
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
6804
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6805
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
6806
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
6807
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
6808
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
6809
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6810
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6811
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
6812
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6813
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6814
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
6815
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
6816
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6817
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
6818
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
6819
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
6820
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6821
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
6822
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
6823
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6824
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
6825
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
6826
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
6827
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
6828
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
6829
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
6830
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
6831
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
6832
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
6833
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
6834
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
6835
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
6836
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
6837
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
6838
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
6839
+
6840
+
6841
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
6842
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
6843
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
6844
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (20.2ms)
6845
+
6846
+
6847
+ Started POST "/auth" for 127.0.0.1 at 2015-01-05 11:49:06 -0600
6848
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
6849
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
6850
+ Unpermitted parameters: confirm_success_url, config_name, registration
6851
+ Unpermitted parameters: confirm_success_url, config_name, registration
6852
+  (0.1ms) begin transaction
6853
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "test@test.com"]]
6854
+  (0.0ms) rollback transaction
6855
+ Completed 403 Forbidden in 389ms (Views: 0.7ms | ActiveRecord: 0.3ms)
6856
+
6857
+
6858
+ Started POST "/auth" for 127.0.0.1 at 2015-01-05 11:49:17 -0600
6859
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
6860
+ Parameters: {"email"=>"t@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"t@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
6861
+ Unpermitted parameters: confirm_success_url, config_name, registration
6862
+ Unpermitted parameters: confirm_success_url, config_name, registration
6863
+  (0.1ms) begin transaction
6864
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "t@test.com"]]
6865
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "2e6c5c35867c868c0300ea1396469322eca6fb3b66309a9cc030873f3edfd7d4"]]
6866
+ SQL (0.4ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "provider", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["tokens", nil], ["email", "t@test.com"], ["encrypted_password", "$2a$10$6DOr8WZhuSjP.nditr4fV.NmVaEdjxAkKmn3.bX4CTlAnxE.4aK9y"], ["provider", "email"], ["uid", "t@test.com"], ["created_at", "2015-01-05 17:49:17.236337"], ["updated_at", "2015-01-05 17:49:17.236337"], ["confirmation_token", "2e6c5c35867c868c0300ea1396469322eca6fb3b66309a9cc030873f3edfd7d4"], ["confirmation_sent_at", "2015-01-05 17:49:17.419054"]]
6867
+  (1.9ms) commit transaction
6868
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (4.1ms)
6869
+
6870
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 153.1ms
6871
+
6872
+ Sent mail to t@test.com (7.3ms)
6873
+ Date: Mon, 05 Jan 2015 11:49:17 -0600
6874
+ From: please-change-me-at-config-initializers-devise@example.com
6875
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
6876
+ To: t@test.com
6877
+ Message-ID: <54aace9d8f9a7_16a973fd965001be8374d2@tests-MacBook-Pro-2.local.mail>
6878
+ Subject: Confirmation instructions
6879
+ Mime-Version: 1.0
6880
+ Content-Type: text/html;
6881
+ charset=UTF-8
6882
+ Content-Transfer-Encoding: 7bit
6883
+ client-config: default
6884
+ redirect-url: http://ng-token-auth.dev/
6885
+
6886
+ <p>Welcome t@test.com!</p>
6887
+
6888
+ <p>You can confirm your account email through the link below:</p>
6889
+
6890
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?config=default&confirmation_token=pEtFM2nb83sttZnxUzM-&redirect_url=http%3A%2F%2Fng-token-auth.dev%2F">Confirm my account</a></p>
6891
+
6892
+ Completed 500 Internal Server Error in 428ms
6893
+
6894
+ Errno::ECONNREFUSED (Connection refused - connect(2) for "localhost" port 1025):
6895
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/net/smtp.rb:541:in `initialize'
6896
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/net/smtp.rb:541:in `open'
6897
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/net/smtp.rb:541:in `tcp_socket'
6898
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/net/smtp.rb:551:in `block in do_start'
6899
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/timeout.rb:91:in `block in timeout'
6900
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/timeout.rb:101:in `call'
6901
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/timeout.rb:101:in `timeout'
6902
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/net/smtp.rb:550:in `do_start'
6903
+ /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/2.1.0/net/smtp.rb:520:in `start'
6904
+ mail (2.6.3) lib/mail/network/delivery_methods/smtp.rb:112:in `deliver!'
6905
+ mail (2.6.3) lib/mail/message.rb:2141:in `do_delivery'
6906
+ mail (2.6.3) lib/mail/message.rb:236:in `block in deliver'
6907
+ actionmailer (4.2.0) lib/action_mailer/base.rb:543:in `block in deliver_mail'
6908
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
6909
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6910
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
6911
+ actionmailer (4.2.0) lib/action_mailer/base.rb:541:in `deliver_mail'
6912
+ mail (2.6.3) lib/mail/message.rb:236:in `deliver'
6913
+ actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:85:in `deliver_now'
6914
+ devise (3.4.1) lib/devise/models/authenticatable.rb:176:in `send_devise_notification'
6915
+ /Users/lynn/Code/Auth/devise_token_auth/app/models/devise_token_auth/concerns/user.rb:57:in `send_confirmation_instructions'
6916
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/registrations_controller.rb:33:in `create'
6917
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
6918
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
6919
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
6920
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
6921
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
6922
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
6923
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
6924
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call'
6925
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
6926
+ activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `call'
6927
+ activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `block in halting_and_conditional'
6928
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
6929
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
6930
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
6931
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
6932
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
6933
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
6934
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
6935
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
6936
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
6937
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
6938
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
6939
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
6940
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
6941
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
6942
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6943
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
6944
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
6945
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
6946
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
6947
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
6948
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
6949
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
6950
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
6951
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
6952
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
6953
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
6954
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
6955
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
6956
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
6957
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
6958
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6959
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6960
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6961
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6962
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6963
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6964
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
6965
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
6966
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
6967
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
6968
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
6969
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
6970
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
6971
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
6972
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
6973
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
6974
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
6975
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
6976
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
6977
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
6978
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
6979
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
6980
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
6981
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
6982
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
6983
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
6984
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
6985
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
6986
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
6987
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
6988
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
6989
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
6990
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
6991
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
6992
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
6993
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
6994
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
6995
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
6996
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
6997
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
6998
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
6999
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7000
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7001
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7002
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7003
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7004
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7005
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7006
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7007
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7008
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7009
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7010
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7011
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7012
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7013
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7014
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7015
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7016
+
7017
+
7018
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.4ms)
7019
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.3ms)
7020
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
7021
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.8ms)
7022
+
7023
+
7024
+ Started POST "/auth" for 127.0.0.1 at 2015-01-05 11:49:50 -0600
7025
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
7026
+ Parameters: {"email"=>"t@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"t@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
7027
+ Unpermitted parameters: confirm_success_url, config_name, registration
7028
+ Unpermitted parameters: confirm_success_url, config_name, registration
7029
+  (0.1ms) begin transaction
7030
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "t@test.com"]]
7031
+  (0.0ms) rollback transaction
7032
+ Completed 403 Forbidden in 75ms (Views: 0.4ms | ActiveRecord: 0.2ms)
7033
+
7034
+
7035
+ Started POST "/auth" for 127.0.0.1 at 2015-01-05 11:49:57 -0600
7036
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
7037
+ Parameters: {"email"=>"t2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default", "registration"=>{"email"=>"t2@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://ng-token-auth.dev/", "config_name"=>"default"}}
7038
+ Unpermitted parameters: confirm_success_url, config_name, registration
7039
+ Unpermitted parameters: confirm_success_url, config_name, registration
7040
+  (0.1ms) begin transaction
7041
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "t2@test.com"]]
7042
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "97e993fa6bea88b5a140b4ed2ecec919c5f17cd037dd9c184fab6b73be83abda"]]
7043
+ SQL (0.3ms) INSERT INTO "users" ("tokens", "email", "encrypted_password", "provider", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["tokens", nil], ["email", "t2@test.com"], ["encrypted_password", "$2a$10$1LeRyo/cdj1.TPUJBvXuSeGymvT.b.3fKENYrl2g0ohT2iiuqsWhO"], ["provider", "email"], ["uid", "t2@test.com"], ["created_at", "2015-01-05 17:49:57.665033"], ["updated_at", "2015-01-05 17:49:57.665033"], ["confirmation_token", "97e993fa6bea88b5a140b4ed2ecec919c5f17cd037dd9c184fab6b73be83abda"], ["confirmation_sent_at", "2015-01-05 17:49:57.668214"]]
7044
+  (1.0ms) commit transaction
7045
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (2.2ms)
7046
+
7047
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 8.5ms
7048
+
7049
+ Sent mail to t2@test.com (160.1ms)
7050
+ Date: Mon, 05 Jan 2015 11:49:57 -0600
7051
+ From: please-change-me-at-config-initializers-devise@example.com
7052
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
7053
+ To: t2@test.com
7054
+ Message-ID: <54aacec5a6ea8_16a973fd965001be8375d7@tests-MacBook-Pro-2.local.mail>
7055
+ Subject: Confirmation instructions
7056
+ Mime-Version: 1.0
7057
+ Content-Type: text/html;
7058
+ charset=UTF-8
7059
+ Content-Transfer-Encoding: 7bit
7060
+ client-config: default
7061
+ redirect-url: http://ng-token-auth.dev/
7062
+
7063
+ <p>Welcome t2@test.com!</p>
7064
+
7065
+ <p>You can confirm your account email through the link below:</p>
7066
+
7067
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?config=default&confirmation_token=3dxtzmBmNkNacwMZexgN&redirect_url=http%3A%2F%2Fng-token-auth.dev%2F">Confirm my account</a></p>
7068
+
7069
+ Completed 200 OK in 252ms (Views: 0.3ms | ActiveRecord: 1.5ms)
7070
+
7071
+
7072
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2015-01-05 11:50:10 -0600
7073
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
7074
+ Parameters: {"email"=>"t2@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"t2@test.com", "password"=>"[FILTERED]"}}
7075
+ Unpermitted parameter: session
7076
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE (uid='t2@test.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT 1
7077
+ Unpermitted parameter: session
7078
+ Unpermitted parameter: session
7079
+ Unpermitted parameter: session
7080
+ Completed 401 Unauthorized in 69ms (Views: 0.2ms | ActiveRecord: 0.3ms)
7081
+
7082
+
7083
+ Started GET "/auth/confirmation?config=default&confirmation_token=3dxtzmBmNkNacwMZexgN&redirect_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-05 11:50:30 -0600
7084
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
7085
+ Parameters: {"config"=>"default", "confirmation_token"=>"3dxtzmBmNkNacwMZexgN", "redirect_url"=>"http://ng-token-auth.dev/"}
7086
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "97e993fa6bea88b5a140b4ed2ecec919c5f17cd037dd9c184fab6b73be83abda"]]
7087
+  (0.0ms) begin transaction
7088
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "confirmation_token" = ?, "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["confirmation_token", nil], ["confirmed_at", "2015-01-05 17:50:30.039256"], ["updated_at", "2015-01-05 17:50:30.041168"], ["id", 23]]
7089
+  (1.9ms) commit transaction
7090
+  (0.1ms) begin transaction
7091
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "confirmation_token" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nDwEQFNusb0wnPByQZHO2Dg: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n token: !ruby/string:BCrypt::Password\n str: \"$2a$10$QueUL1Eo69vOps3cVIdv/./UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$QueUL1Eo69vOps3cVIdv/.\"\n checksum: \"/UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n expiry: 1421689830\n"], ["confirmation_token", "3dxtzmBmNkNacwMZexgN"], ["updated_at", "2015-01-05 17:50:30.112663"], ["id", 23]]
7092
+  (0.9ms) commit transaction
7093
+ Redirected to http://ng-token-auth.dev/#?account_confirmation_success=true&client_id=DwEQFNusb0wnPByQZHO2Dg&config=default&expiry=1421689830&token=spN4O_WIcMN-2HNHp5B0LQ&uid=t2%40test.com
7094
+ Completed 302 Found in 87ms (ActiveRecord: 3.7ms)
7095
+
7096
+
7097
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2015-01-05 11:50:31 -0600
7098
+ Processing by DeviseTokenAuth::TokenValidationsController#validate_token as HTML
7099
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
7100
+  (0.1ms) begin transaction
7101
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 23]]
7102
+ SQL (2.7ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nDwEQFNusb0wnPByQZHO2Dg: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n token: !ruby/string:BCrypt::Password\n str: \"$2a$10$i//MCs0BjwYl9w19RlSLMO7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$i//MCs0BjwYl9w19RlSLMO\"\n checksum: 7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\n expiry: 1421689831\n last_token: !ruby/string:BCrypt::Password\n str: \"$2a$10$QueUL1Eo69vOps3cVIdv/./UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$QueUL1Eo69vOps3cVIdv/.\"\n checksum: \"/UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n updated_at: 2015-01-05 11:50:31.154382000 -06:00\n"], ["updated_at", "2015-01-05 17:50:31.170163"], ["id", 23]]
7103
+  (2.0ms) commit transaction
7104
+ Completed 200 OK in 177ms (Views: 0.3ms | ActiveRecord: 5.2ms)
7105
+
7106
+
7107
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-05 11:50:35 -0600
7108
+ Processing by DemoUserController#members_only as HTML
7109
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
7110
+  (0.1ms) begin transaction
7111
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 23]]
7112
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nDwEQFNusb0wnPByQZHO2Dg: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n token: !ruby/string:BCrypt::Password\n str: \"$2a$10$i//MCs0BjwYl9w19RlSLMO7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$i//MCs0BjwYl9w19RlSLMO\"\n checksum: 7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\n expiry: 1421689831\n last_token: !ruby/string:BCrypt::Password\n str: \"$2a$10$QueUL1Eo69vOps3cVIdv/./UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$QueUL1Eo69vOps3cVIdv/.\"\n checksum: \"/UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n updated_at: 2015-01-05 11:50:35.144214000 -06:00\n"], ["updated_at", "2015-01-05 17:50:35.160919"], ["id", 23]]
7113
+  (1.6ms) commit transaction
7114
+ Completed 200 OK in 98ms (Views: 1.2ms | ActiveRecord: 2.2ms)
7115
+
7116
+
7117
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-05 11:50:37 -0600
7118
+ Processing by DemoUserController#members_only as HTML
7119
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
7120
+  (0.1ms) begin transaction
7121
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 23]]
7122
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nDwEQFNusb0wnPByQZHO2Dg: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n token: !ruby/string:BCrypt::Password\n str: \"$2a$10$i//MCs0BjwYl9w19RlSLMO7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$i//MCs0BjwYl9w19RlSLMO\"\n checksum: 7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\n expiry: 1421689831\n last_token: !ruby/string:BCrypt::Password\n str: \"$2a$10$QueUL1Eo69vOps3cVIdv/./UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$QueUL1Eo69vOps3cVIdv/.\"\n checksum: \"/UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n updated_at: 2015-01-05 11:50:37.555849000 -06:00\n"], ["updated_at", "2015-01-05 17:50:37.564840"], ["id", 23]]
7123
+  (1.6ms) commit transaction
7124
+ Completed 200 OK in 88ms (Views: 0.8ms | ActiveRecord: 2.2ms)
7125
+
7126
+
7127
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-05 11:50:39 -0600
7128
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7129
+ Processing by DemoUserController#members_only as HTML
7130
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
7131
+  (0.1ms) begin transaction
7132
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 23]]
7133
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nDwEQFNusb0wnPByQZHO2Dg: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n token: !ruby/string:BCrypt::Password\n str: \"$2a$10$i//MCs0BjwYl9w19RlSLMO7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$i//MCs0BjwYl9w19RlSLMO\"\n checksum: 7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\n expiry: 1421689831\n last_token: !ruby/string:BCrypt::Password\n str: \"$2a$10$QueUL1Eo69vOps3cVIdv/./UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$QueUL1Eo69vOps3cVIdv/.\"\n checksum: \"/UECwcSq5XrPzcUxlTdoyvlVZ3SA8Xu\"\n updated_at: 2015-01-05 11:50:40.057277000 -06:00\n"], ["updated_at", "2015-01-05 17:50:40.066066"], ["id", 23]]
7134
+  (2.5ms) commit transaction
7135
+ Completed 200 OK in 141ms (Views: 1.0ms | ActiveRecord: 3.9ms)
7136
+
7137
+
7138
+ Started PUT "/auth/password" for 127.0.0.1 at 2015-01-05 11:50:54 -0600
7139
+ Processing by DeviseTokenAuth::PasswordsController#update as HTML
7140
+ Parameters: {"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}
7141
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
7142
+  (0.1ms) begin transaction
7143
+ SQL (0.3ms) UPDATE "users" SET "encrypted_password" = ?, "updated_at" = ? WHERE "users"."id" = ? [["encrypted_password", "$2a$10$g4nHm0/oiTavn6/mmm4YM.n9qmuRypRIP9vBNtFMTvO8fs65i72Du"], ["updated_at", "2015-01-05 17:50:54.423342"], ["id", 23]]
7144
+  (17.4ms) commit transaction
7145
+  (0.1ms) begin transaction
7146
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 23]]
7147
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "--- !ruby/hash:ActiveSupport::HashWithIndifferentAccess\nDwEQFNusb0wnPByQZHO2Dg: !ruby/hash:ActiveSupport::HashWithIndifferentAccess\n token: !ruby/string:BCrypt::Password\n str: \"$2a$10$DFQ6ERVNym51lGYKJZc8m.1c2od0/a0pQvXhYLoIGt7eHphDkL7cy\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$DFQ6ERVNym51lGYKJZc8m.\"\n checksum: 1c2od0/a0pQvXhYLoIGt7eHphDkL7cy\n expiry: 1421689854\n last_token: !ruby/string:BCrypt::Password\n str: \"$2a$10$i//MCs0BjwYl9w19RlSLMO7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\"\n version: !ruby/string:BCrypt::Password 2a\n cost: 10\n salt: \"$2a$10$i//MCs0BjwYl9w19RlSLMO\"\n checksum: 7Lz75Gymy91Kwn1yRehfqkSlPP0dVt2\n updated_at: 2015-01-05 11:50:54.512929000 -06:00\n"], ["updated_at", "2015-01-05 17:50:54.525098"], ["id", 23]]
7148
+  (2.0ms) commit transaction
7149
+ Completed 200 OK in 254ms (Views: 0.6ms | ActiveRecord: 20.4ms)
7150
+
7151
+
7152
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2015-01-05 11:51:25 -0600
7153
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
7154
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
7155
+  (0.1ms) begin transaction
7156
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", nil], ["updated_at", "2015-01-05 17:51:25.907118"], ["id", 23]]
7157
+  (2.0ms) commit transaction
7158
+ Completed 200 OK in 81ms (Views: 0.2ms | ActiveRecord: 2.5ms)
7159
+
7160
+
7161
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:51:31 -0600
7162
+
7163
+
7164
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:51:31 -0600
7165
+
7166
+
7167
+ Started GET "/" for 127.0.0.1 at 2015-01-05 11:51:53 -0600
7168
+ Processing by Rails::WelcomeController#index as HTML
7169
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.7ms)
7170
+ Completed 200 OK in 3ms (Views: 3.4ms | ActiveRecord: 0.0ms)
7171
+
7172
+
7173
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:53:44 -0600
7174
+
7175
+
7176
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:55:22 -0600
7177
+
7178
+
7179
+ Started GET "/omniauth/github/callback?code=88a10e0036d59ac5761e&state=b96c224dde9543014bfdd26932bdd74122d4e531115309fc" for 127.0.0.1 at 2015-01-05 11:55:22 -0600
7180
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
7181
+ Parameters: {"code"=>"88a10e0036d59ac5761e", "state"=>"b96c224dde9543014bfdd26932bdd74122d4e531115309fc", "provider"=>"github"}
7182
+ Redirected to https://devise-token-auth.dev/auth/github/callback
7183
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
7184
+
7185
+
7186
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-05 11:55:23 -0600
7187
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
7188
+ Parameters: {"provider"=>"github"}
7189
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
7190
+ Completed 500 Internal Server Error in 64ms
7191
+
7192
+ IndexError (string not matched):
7193
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `[]='
7194
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `omniauth_success'
7195
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
7196
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
7197
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
7198
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
7199
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
7200
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
7201
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
7202
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
7203
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
7204
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
7205
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
7206
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
7207
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
7208
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
7209
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
7210
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
7211
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
7212
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7213
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
7214
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7215
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
7216
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7217
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7218
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7219
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
7220
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
7221
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
7222
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7223
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
7224
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
7225
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
7226
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
7227
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
7228
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
7229
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
7230
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
7231
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
7232
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7233
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7234
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7235
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7236
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7237
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7238
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7239
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7240
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
7241
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7242
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7243
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7244
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
7245
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
7246
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
7247
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7248
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
7249
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
7250
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
7251
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7252
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
7253
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
7254
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
7255
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7256
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
7257
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
7258
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
7259
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
7260
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7261
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7262
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
7263
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7264
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7265
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7266
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7267
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7268
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7269
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7270
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7271
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7272
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7273
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7274
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7275
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7276
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7277
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7278
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7279
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7280
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7281
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7282
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7283
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7284
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7285
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7286
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7287
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7288
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7289
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7290
+
7291
+
7292
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
7293
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
7294
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
7295
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.8ms)
7296
+
7297
+
7298
+ Started GET "/auth/facebook?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:55:51 -0600
7299
+
7300
+
7301
+ Started GET "/omniauth/facebook?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:55:51 -0600
7302
+
7303
+
7304
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:56:48 -0600
7305
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7306
+
7307
+
7308
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:56:48 -0600
7309
+
7310
+
7311
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:57:52 -0600
7312
+
7313
+
7314
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:57:52 -0600
7315
+
7316
+
7317
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:59:04 -0600
7318
+
7319
+
7320
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:59:04 -0600
7321
+
7322
+
7323
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:59:26 -0600
7324
+
7325
+
7326
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:59:26 -0600
7327
+
7328
+
7329
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 11:59:46 -0600
7330
+
7331
+
7332
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 11:59:47 -0600
7333
+
7334
+
7335
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 12:07:33 -0600
7336
+
7337
+
7338
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 12:07:33 -0600
7339
+
7340
+
7341
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 12:08:17 -0600
7342
+
7343
+
7344
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 12:08:17 -0600
7345
+
7346
+
7347
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 12:08:29 -0600
7348
+
7349
+
7350
+ Started GET "/omniauth/github/callback?code=9f1047944931b9461ff8&state=cabf5be4de9bc222847a66bdc177b99b62dfe5998a9cd0ac" for 127.0.0.1 at 2015-01-05 12:08:29 -0600
7351
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
7352
+ Parameters: {"code"=>"9f1047944931b9461ff8", "state"=>"cabf5be4de9bc222847a66bdc177b99b62dfe5998a9cd0ac", "provider"=>"github"}
7353
+ Redirected to https://devise-token-auth.dev/auth/github/callback
7354
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
7355
+
7356
+
7357
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-05 12:08:29 -0600
7358
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
7359
+ Parameters: {"provider"=>"github"}
7360
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
7361
+ Completed 500 Internal Server Error in 88ms
7362
+
7363
+ IndexError (string not matched):
7364
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `[]='
7365
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `omniauth_success'
7366
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
7367
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
7368
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
7369
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
7370
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
7371
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
7372
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
7373
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
7374
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
7375
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
7376
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
7377
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
7378
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
7379
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
7380
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
7381
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
7382
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
7383
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
7384
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
7385
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
7386
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
7387
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
7388
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
7389
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
7390
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
7391
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
7392
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
7393
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
7394
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
7395
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
7396
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
7397
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
7398
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
7399
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
7400
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
7401
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
7402
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
7403
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7404
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7405
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7406
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7407
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7408
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7409
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
7410
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
7411
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
7412
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
7413
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
7414
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
7415
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
7416
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
7417
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
7418
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
7419
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
7420
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
7421
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
7422
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
7423
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
7424
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
7425
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
7426
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
7427
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
7428
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
7429
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
7430
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
7431
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
7432
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
7433
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
7434
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7435
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7436
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7437
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7438
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7439
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7440
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7441
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7442
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7443
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7444
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7445
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7446
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7447
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7448
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7449
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7450
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7451
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7452
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7453
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7454
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7455
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7456
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7457
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7458
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7459
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7460
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7461
+
7462
+
7463
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.4ms)
7464
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
7465
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
7466
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.6ms)
7467
+
7468
+
7469
+ Started GET "/" for 127.0.0.1 at 2015-01-05 12:08:56 -0600
7470
+ Processing by Rails::WelcomeController#index as HTML
7471
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.6ms)
7472
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
7473
+
7474
+
7475
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-05 12:09:49 -0600
7476
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7477
+
7478
+
7479
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-05 12:09:49 -0600
7480
+
7481
+
7482
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:04:19 -0600
7483
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
7484
+
7485
+
7486
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:04:19 -0600
7487
+
7488
+
7489
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:04:56 -0600
7490
+
7491
+
7492
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:04:58 -0600
7493
+
7494
+
7495
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:04:58 -0600
7496
+
7497
+
7498
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:04:59 -0600
7499
+
7500
+
7501
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:04:59 -0600
7502
+
7503
+
7504
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:00 -0600
7505
+
7506
+
7507
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:00 -0600
7508
+
7509
+
7510
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:00 -0600
7511
+
7512
+
7513
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:01 -0600
7514
+
7515
+
7516
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:01 -0600
7517
+
7518
+
7519
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:02 -0600
7520
+
7521
+
7522
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:02 -0600
7523
+
7524
+
7525
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:03 -0600
7526
+
7527
+
7528
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:04 -0600
7529
+
7530
+
7531
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:05:04 -0600
7532
+
7533
+
7534
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:06:30 -0600
7535
+
7536
+
7537
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:09:46 -0600
7538
+
7539
+
7540
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:11:47 -0600
7541
+
7542
+
7543
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:11:54 -0600
7544
+
7545
+
7546
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:11:54 -0600
7547
+
7548
+
7549
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:12:52 -0600
7550
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7551
+
7552
+
7553
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:13:06 -0600
7554
+
7555
+
7556
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:13:07 -0600
7557
+
7558
+
7559
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:26:26 -0600
7560
+
7561
+
7562
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:26:35 -0600
7563
+
7564
+
7565
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:26:42 -0600
7566
+
7567
+
7568
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:27:15 -0600
7569
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7570
+
7571
+
7572
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:27:15 -0600
7573
+
7574
+
7575
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:28:12 -0600
7576
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7577
+
7578
+
7579
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:28:15 -0600
7580
+
7581
+
7582
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:28:15 -0600
7583
+
7584
+
7585
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:30:19 -0600
7586
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7587
+
7588
+
7589
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:30:19 -0600
7590
+
7591
+
7592
+ Started GET "/godfuckingdammit" for 127.0.0.1 at 2015-01-06 22:30:47 -0600
7593
+
7594
+ ActionController::RoutingError (No route matches [GET] "/godfuckingdammit"):
7595
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7596
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7597
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7598
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7599
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7600
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7601
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7602
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7603
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7604
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7605
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7606
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7607
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7608
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7609
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7610
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7611
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7612
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7613
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7614
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7615
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7616
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7617
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7618
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7619
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7620
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7621
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7622
+
7623
+
7624
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
7625
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms)
7626
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.6ms)
7627
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms)
7628
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (108.1ms)
7629
+
7630
+
7631
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:31:40 -0600
7632
+
7633
+
7634
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:31:41 -0600
7635
+
7636
+
7637
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:31:41 -0600
7638
+
7639
+
7640
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:31:45 -0600
7641
+
7642
+
7643
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:31:45 -0600
7644
+
7645
+
7646
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:35:24 -0600
7647
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7648
+
7649
+
7650
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:35:24 -0600
7651
+
7652
+
7653
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:46:21 -0600
7654
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7655
+
7656
+
7657
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-06 22:46:24 -0600
7658
+
7659
+
7660
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-06 22:46:24 -0600
7661
+
7662
+
7663
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:04:55 -0600
7664
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7665
+
7666
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
7667
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7668
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7669
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7670
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7671
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7672
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7673
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7674
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7675
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7676
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7677
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7678
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7679
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7680
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7681
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7682
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7683
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7684
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7685
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7686
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7687
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7688
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7689
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7690
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7691
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7692
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7693
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7694
+
7695
+
7696
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
7697
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.4ms)
7698
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.6ms)
7699
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms)
7700
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (135.6ms)
7701
+
7702
+
7703
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:05:29 -0600
7704
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7705
+
7706
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
7707
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7708
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7709
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7710
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7711
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7712
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7713
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7714
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7715
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7716
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7717
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7718
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7719
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7720
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7721
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7722
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7723
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7724
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7725
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7726
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7727
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7728
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7729
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7730
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7731
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7732
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7733
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7734
+
7735
+
7736
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
7737
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms)
7738
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.8ms)
7739
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
7740
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.7ms)
7741
+
7742
+
7743
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:05:31 -0600
7744
+
7745
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
7746
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7747
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7748
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7749
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7750
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7751
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7752
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7753
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7754
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7755
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7756
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7757
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7758
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7759
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7760
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7761
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7762
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7763
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7764
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7765
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7766
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7767
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7768
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7769
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7770
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7771
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7772
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7773
+
7774
+
7775
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
7776
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.0ms)
7777
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
7778
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms)
7779
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.0ms)
7780
+
7781
+
7782
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:09:15 -0600
7783
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7784
+
7785
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
7786
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7787
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7788
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7789
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7790
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7791
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7792
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7793
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7794
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7795
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7796
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7797
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7798
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7799
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7800
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7801
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7802
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7803
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7804
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7805
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7806
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7807
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7808
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7809
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7810
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7811
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7812
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7813
+
7814
+
7815
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
7816
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.2ms)
7817
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
7818
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.1ms)
7819
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (125.5ms)
7820
+
7821
+
7822
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:10:36 -0600
7823
+
7824
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
7825
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7826
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7827
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7828
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7829
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7830
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7831
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7832
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7833
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7834
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7835
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7836
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7837
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7838
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7839
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7840
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7841
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7842
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7843
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7844
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7845
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7846
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7847
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7848
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7849
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7850
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7851
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7852
+
7853
+
7854
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
7855
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms)
7856
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.4ms)
7857
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms)
7858
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.5ms)
7859
+
7860
+
7861
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:11:00 -0600
7862
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7863
+
7864
+
7865
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:11:00 -0600
7866
+
7867
+
7868
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:12:24 -0600
7869
+
7870
+
7871
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:12:24 -0600
7872
+
7873
+
7874
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:12:37 -0600
7875
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7876
+
7877
+
7878
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:13:08 -0600
7879
+
7880
+
7881
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:14:02 -0600
7882
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
7883
+
7884
+
7885
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:14:04 -0600
7886
+
7887
+
7888
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:14:19 -0600
7889
+
7890
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
7891
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
7892
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7893
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7894
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7895
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7896
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7897
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7898
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7899
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7900
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7901
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7902
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
7903
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
7904
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
7905
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
7906
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
7907
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
7908
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
7909
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
7910
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
7911
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
7912
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
7913
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
7914
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
7915
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
7916
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
7917
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
7918
+
7919
+
7920
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
7921
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms)
7922
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.1ms)
7923
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.2ms)
7924
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (102.9ms)
7925
+
7926
+
7927
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:28:16 -0600
7928
+
7929
+ SystemExit (exit):
7930
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:38:in `exit'
7931
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:38:in `block in initialize'
7932
+ pry (0.10.1) lib/pry/repl.rb:198:in `call'
7933
+ pry (0.10.1) lib/pry/repl.rb:198:in `readline'
7934
+ pry (0.10.1) lib/pry/repl.rb:198:in `block in input_readline'
7935
+ pry (0.10.1) lib/pry/input_lock.rb:115:in `call'
7936
+ pry (0.10.1) lib/pry/input_lock.rb:115:in `interruptible_region'
7937
+ pry (0.10.1) lib/pry/repl.rb:197:in `input_readline'
7938
+ pry (0.10.1) lib/pry/repl.rb:183:in `block in read_line'
7939
+ pry (0.10.1) lib/pry/repl.rb:129:in `handle_read_errors'
7940
+ pry (0.10.1) lib/pry/repl.rb:170:in `read_line'
7941
+ pry (0.10.1) lib/pry/repl.rb:98:in `read'
7942
+ pry (0.10.1) lib/pry/repl.rb:68:in `block in repl'
7943
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
7944
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
7945
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
7946
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
7947
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
7948
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
7949
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
7950
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
7951
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
7952
+ pry (0.10.1) lib/pry/core_extensions.rb:43:in `pry'
7953
+ /Users/lynn/Code/Auth/devise_token_auth/config/routes.rb:3:in `block in <top (required)>'
7954
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:423:in `instance_exec'
7955
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:423:in `eval_block'
7956
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:401:in `draw'
7957
+ /Users/lynn/Code/Auth/devise_token_auth/config/routes.rb:1:in `<top (required)>'
7958
+ activesupport (4.2.0) lib/active_support/dependencies.rb:268:in `load'
7959
+ activesupport (4.2.0) lib/active_support/dependencies.rb:268:in `block in load'
7960
+ activesupport (4.2.0) lib/active_support/dependencies.rb:240:in `load_dependency'
7961
+ activesupport (4.2.0) lib/active_support/dependencies.rb:268:in `load'
7962
+ railties (4.2.0) lib/rails/application/routes_reloader.rb:40:in `block in load_paths'
7963
+ railties (4.2.0) lib/rails/application/routes_reloader.rb:40:in `each'
7964
+ railties (4.2.0) lib/rails/application/routes_reloader.rb:40:in `load_paths'
7965
+ railties (4.2.0) lib/rails/application/routes_reloader.rb:16:in `reload!'
7966
+ railties (4.2.0) lib/rails/application/routes_reloader.rb:26:in `block in updater'
7967
+ activesupport (4.2.0) lib/active_support/file_update_checker.rb:75:in `call'
7968
+ activesupport (4.2.0) lib/active_support/file_update_checker.rb:75:in `execute'
7969
+ railties (4.2.0) lib/rails/application/routes_reloader.rb:7:in `execute'
7970
+ railties (4.2.0) lib/rails/application/finisher.rb:81:in `block (2 levels) in <module:Finisher>'
7971
+ activesupport (4.2.0) lib/active_support/callbacks.rb:441:in `instance_exec'
7972
+ activesupport (4.2.0) lib/active_support/callbacks.rb:441:in `block in make_lambda'
7973
+ activesupport (4.2.0) lib/active_support/callbacks.rb:189:in `call'
7974
+ activesupport (4.2.0) lib/active_support/callbacks.rb:189:in `block in simple'
7975
+ activesupport (4.2.0) lib/active_support/callbacks.rb:190:in `call'
7976
+ activesupport (4.2.0) lib/active_support/callbacks.rb:190:in `block in simple'
7977
+ activesupport (4.2.0) lib/active_support/callbacks.rb:190:in `call'
7978
+ activesupport (4.2.0) lib/active_support/callbacks.rb:190:in `block in simple'
7979
+ activesupport (4.2.0) lib/active_support/callbacks.rb:190:in `call'
7980
+ activesupport (4.2.0) lib/active_support/callbacks.rb:190:in `block in simple'
7981
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
7982
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
7983
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_prepare_callbacks'
7984
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
7985
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:83:in `prepare!'
7986
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:71:in `call'
7987
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
7988
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
7989
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
7990
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
7991
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
7992
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
7993
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
7994
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
7995
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
7996
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
7997
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
7998
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
7999
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8000
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8001
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8002
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8003
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8004
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8005
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8006
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8007
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8008
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8009
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8010
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8011
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8012
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8013
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8014
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8015
+
8016
+
8017
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
8018
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
8019
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
8020
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.0ms)
8021
+
8022
+
8023
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:30:14 -0600
8024
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8025
+
8026
+
8027
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:30:14 -0600
8028
+
8029
+
8030
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:32:08 -0600
8031
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8032
+
8033
+
8034
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:32:08 -0600
8035
+
8036
+
8037
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:32:55 -0600
8038
+
8039
+
8040
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:32:55 -0600
8041
+
8042
+
8043
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:33:36 -0600
8044
+
8045
+
8046
+ Started GET "/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:33:36 -0600
8047
+
8048
+
8049
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:33:48 -0600
8050
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8051
+
8052
+
8053
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:33:48 -0600
8054
+
8055
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8056
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8057
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8058
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8059
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8060
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8061
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8062
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8063
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8064
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8065
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8066
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8067
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8068
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8069
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8070
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8071
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8072
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8073
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8074
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8075
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8076
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8077
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8078
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8079
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8080
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8081
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8082
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8083
+
8084
+
8085
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
8086
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.6ms)
8087
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.7ms)
8088
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.3ms)
8089
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (113.2ms)
8090
+
8091
+
8092
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:38:03 -0600
8093
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8094
+
8095
+
8096
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:38:03 -0600
8097
+
8098
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8099
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8100
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8101
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8102
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8103
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8104
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8105
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8106
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8107
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8108
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8109
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8110
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8111
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8112
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8113
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8114
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8115
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8116
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8117
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8118
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8119
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8120
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8121
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8122
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8123
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8124
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8125
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8126
+
8127
+
8128
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
8129
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.5ms)
8130
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.2ms)
8131
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.3ms)
8132
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (107.6ms)
8133
+
8134
+
8135
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:39:24 -0600
8136
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8137
+
8138
+
8139
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:39:24 -0600
8140
+
8141
+
8142
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:40:16 -0600
8143
+
8144
+
8145
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:40:16 -0600
8146
+
8147
+
8148
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:40:27 -0600
8149
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8150
+
8151
+
8152
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:40:27 -0600
8153
+
8154
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8155
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8156
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8157
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8158
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8159
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8160
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8161
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8162
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8163
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8164
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8165
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8166
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8167
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8168
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8169
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8170
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8171
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8172
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8173
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8174
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8175
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8176
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8177
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8178
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8179
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8180
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8181
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8182
+
8183
+
8184
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
8185
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.6ms)
8186
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.6ms)
8187
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.5ms)
8188
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.3ms)
8189
+
8190
+
8191
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:43:33 -0600
8192
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
8193
+
8194
+
8195
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:43:34 -0600
8196
+
8197
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8198
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8199
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8200
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8201
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8202
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8203
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8204
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8205
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8206
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8207
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8208
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8209
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8210
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8211
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8212
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8213
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8214
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8215
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8216
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8217
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8218
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8219
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8220
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8221
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8222
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8223
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8224
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8225
+
8226
+
8227
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
8228
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.0ms)
8229
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.9ms)
8230
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.7ms)
8231
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (116.1ms)
8232
+
8233
+
8234
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:47:28 -0600
8235
+
8236
+
8237
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:47:28 -0600
8238
+
8239
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8240
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8241
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8242
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8243
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8244
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8245
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8246
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8247
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8248
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8249
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8250
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8251
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8252
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8253
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8254
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8255
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8256
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8257
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8258
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8259
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8260
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8261
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8262
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8263
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8264
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8265
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8266
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8267
+
8268
+
8269
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
8270
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms)
8271
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
8272
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
8273
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (92.4ms)
8274
+
8275
+
8276
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:48:23 -0600
8277
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8278
+
8279
+
8280
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:48:23 -0600
8281
+
8282
+
8283
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:49:18 -0600
8284
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8285
+
8286
+
8287
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:49:18 -0600
8288
+
8289
+
8290
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 00:49:55 -0600
8291
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8292
+
8293
+
8294
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 00:49:55 -0600
8295
+
8296
+
8297
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:05:28 -0600
8298
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8299
+
8300
+
8301
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:05:39 -0600
8302
+
8303
+
8304
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:06:06 -0600
8305
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8306
+
8307
+
8308
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:09:41 -0600
8309
+
8310
+ SystemExit (exit):
8311
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
8312
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
8313
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
8314
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8315
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8316
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8317
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8318
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
8319
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
8320
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
8321
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
8322
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8323
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8324
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8325
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8326
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
8327
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
8328
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
8329
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
8330
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
8331
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
8332
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
8333
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
8334
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
8335
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
8336
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
8337
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
8338
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
8339
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
8340
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
8341
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
8342
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
8343
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
8344
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
8345
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
8346
+ /Users/lynn/Code/Auth/devise_token_auth/lib/devise_token_auth/rails/routes.rb:64:in `block (3 levels) in mount_devise_token_auth_for'
8347
+ actionpack (4.2.0) lib/action_dispatch/routing/redirection.rb:52:in `call'
8348
+ actionpack (4.2.0) lib/action_dispatch/routing/redirection.rb:52:in `path'
8349
+ actionpack (4.2.0) lib/action_dispatch/routing/redirection.rb:26:in `serve'
8350
+ actionpack (4.2.0) lib/action_dispatch/routing/redirection.rb:21:in `call'
8351
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
8352
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
8353
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
8354
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
8355
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
8356
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
8357
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8358
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
8359
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8360
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
8361
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8362
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
8363
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8364
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
8365
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8366
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8367
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8368
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
8369
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
8370
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
8371
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8372
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
8373
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
8374
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
8375
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8376
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
8377
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
8378
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
8379
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8380
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
8381
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
8382
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
8383
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
8384
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8385
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8386
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
8387
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8388
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8389
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8390
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8391
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8392
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8393
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8394
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8395
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8396
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8397
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8398
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8399
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8400
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8401
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8402
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8403
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8404
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8405
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8406
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8407
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8408
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8409
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8410
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8411
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8412
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8413
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8414
+
8415
+
8416
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.8ms)
8417
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
8418
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms)
8419
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (28.1ms)
8420
+
8421
+
8422
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:12:58 -0600
8423
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8424
+
8425
+
8426
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:12:58 -0600
8427
+
8428
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8429
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8430
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8431
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8432
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8433
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8434
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8435
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8436
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8437
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8438
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8439
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8440
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8441
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8442
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8443
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8444
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8445
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8446
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8447
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8448
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8449
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8450
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8451
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8452
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8453
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8454
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8455
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8456
+
8457
+
8458
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
8459
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.8ms)
8460
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.9ms)
8461
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms)
8462
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (111.2ms)
8463
+
8464
+
8465
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:15:25 -0600
8466
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8467
+
8468
+
8469
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:15:25 -0600
8470
+
8471
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8472
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8473
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8474
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8475
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8476
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8477
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8478
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8479
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8480
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8481
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8482
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8483
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8484
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8485
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8486
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8487
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8488
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8489
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8490
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8491
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8492
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8493
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8494
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8495
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8496
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8497
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8498
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8499
+
8500
+
8501
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
8502
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (5.9ms)
8503
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (37.2ms)
8504
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.7ms)
8505
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (150.2ms)
8506
+
8507
+
8508
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:16:07 -0600
8509
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8510
+
8511
+
8512
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:16:25 -0600
8513
+
8514
+ ActionController::RoutingError (No route matches [GET] "/omniauth/github"):
8515
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
8516
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8517
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8518
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8519
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8520
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8521
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8522
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8523
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8524
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8525
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8526
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8527
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8528
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8529
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8530
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8531
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8532
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8533
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8534
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8535
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8536
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8537
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8538
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8539
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8540
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8541
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8542
+
8543
+
8544
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
8545
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (6.1ms)
8546
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
8547
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.8ms)
8548
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (106.8ms)
8549
+
8550
+
8551
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:17:10 -0600
8552
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8553
+
8554
+
8555
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:17:10 -0600
8556
+
8557
+
8558
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:18:31 -0600
8559
+
8560
+
8561
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:18:31 -0600
8562
+
8563
+
8564
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:22:58 -0600
8565
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8566
+
8567
+ SystemExit (exit):
8568
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
8569
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
8570
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
8571
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8572
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8573
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8574
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8575
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
8576
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
8577
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
8578
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
8579
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8580
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8581
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8582
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8583
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
8584
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
8585
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
8586
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
8587
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
8588
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
8589
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
8590
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
8591
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
8592
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
8593
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
8594
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
8595
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
8596
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
8597
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
8598
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
8599
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
8600
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
8601
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
8602
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
8603
+ omniauth (1.2.2) lib/omniauth/strategy.rb:380:in `request_path'
8604
+ omniauth (1.2.2) lib/omniauth/strategy.rb:240:in `on_request_path?'
8605
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
8606
+ omniauth (1.2.2) lib/omniauth/strategy.rb:179:in `call!'
8607
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8608
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
8609
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8610
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
8611
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8612
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
8613
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8614
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8615
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8616
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
8617
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
8618
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
8619
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8620
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
8621
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
8622
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
8623
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8624
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
8625
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
8626
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
8627
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8628
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
8629
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
8630
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
8631
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
8632
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8633
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8634
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
8635
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8636
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8637
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8638
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8639
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8640
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8641
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8642
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8643
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8644
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8645
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8646
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8647
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8648
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8649
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8650
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8651
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8652
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8653
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8654
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8655
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8656
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8657
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8658
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8659
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8660
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8661
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8662
+
8663
+
8664
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
8665
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
8666
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.3ms)
8667
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (29.9ms)
8668
+
8669
+
8670
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:24:46 -0600
8671
+
8672
+ SystemExit (exit):
8673
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
8674
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
8675
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
8676
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8677
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8678
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8679
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8680
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
8681
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
8682
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
8683
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
8684
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8685
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8686
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8687
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8688
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
8689
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
8690
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
8691
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
8692
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
8693
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
8694
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
8695
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
8696
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
8697
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
8698
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
8699
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
8700
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
8701
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
8702
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
8703
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
8704
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
8705
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
8706
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
8707
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
8708
+ omniauth (1.2.2) lib/omniauth/strategy.rb:380:in `request_path'
8709
+ omniauth (1.2.2) lib/omniauth/strategy.rb:240:in `on_request_path?'
8710
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
8711
+ omniauth (1.2.2) lib/omniauth/strategy.rb:179:in `call!'
8712
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8713
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
8714
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8715
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8716
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8717
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
8718
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
8719
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
8720
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8721
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
8722
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
8723
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
8724
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8725
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
8726
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
8727
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
8728
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8729
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
8730
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
8731
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
8732
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
8733
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8734
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8735
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
8736
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8737
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8738
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8739
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8740
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8741
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8742
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8743
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8744
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8745
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8746
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8747
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8748
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8749
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8750
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8751
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8752
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8753
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8754
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8755
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8756
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8757
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8758
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8759
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8760
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8761
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8762
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8763
+
8764
+
8765
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
8766
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
8767
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
8768
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.4ms)
8769
+
8770
+
8771
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:25:23 -0600
8772
+
8773
+ SystemExit (exit):
8774
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
8775
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
8776
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
8777
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8778
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8779
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8780
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8781
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
8782
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
8783
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
8784
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
8785
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8786
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8787
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8788
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8789
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
8790
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
8791
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
8792
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
8793
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
8794
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
8795
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
8796
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
8797
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
8798
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
8799
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
8800
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
8801
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
8802
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
8803
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
8804
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
8805
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
8806
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
8807
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
8808
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
8809
+ omniauth (1.2.2) lib/omniauth/strategy.rb:380:in `request_path'
8810
+ omniauth (1.2.2) lib/omniauth/strategy.rb:240:in `on_request_path?'
8811
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
8812
+ omniauth (1.2.2) lib/omniauth/strategy.rb:182:in `call!'
8813
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8814
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
8815
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8816
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8817
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8818
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
8819
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
8820
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
8821
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8822
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
8823
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
8824
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
8825
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8826
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
8827
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
8828
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
8829
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8830
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
8831
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
8832
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
8833
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
8834
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8835
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8836
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
8837
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8838
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8839
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8840
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8841
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8842
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8843
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8844
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8845
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8846
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8847
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8848
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8849
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8850
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8851
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8852
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8853
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8854
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8855
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8856
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8857
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8858
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8859
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8860
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8861
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8862
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8863
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8864
+
8865
+
8866
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
8867
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
8868
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.7ms)
8869
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.5ms)
8870
+
8871
+
8872
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:25:58 -0600
8873
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8874
+
8875
+ SystemExit (exit):
8876
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
8877
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
8878
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
8879
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8880
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8881
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8882
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8883
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
8884
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
8885
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
8886
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
8887
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8888
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8889
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8890
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8891
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
8892
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
8893
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
8894
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
8895
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
8896
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
8897
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
8898
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
8899
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
8900
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
8901
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
8902
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
8903
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
8904
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
8905
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
8906
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
8907
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
8908
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
8909
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
8910
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
8911
+ omniauth (1.2.2) lib/omniauth/strategy.rb:366:in `path_prefix'
8912
+ omniauth (1.2.2) lib/omniauth/strategy.rb:381:in `request_path'
8913
+ omniauth (1.2.2) lib/omniauth/strategy.rb:240:in `on_request_path?'
8914
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
8915
+ omniauth (1.2.2) lib/omniauth/strategy.rb:179:in `call!'
8916
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
8917
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
8918
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
8919
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
8920
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
8921
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
8922
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
8923
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
8924
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
8925
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
8926
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
8927
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
8928
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
8929
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
8930
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
8931
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
8932
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
8933
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
8934
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
8935
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
8936
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
8937
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
8938
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
8939
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
8940
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
8941
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
8942
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
8943
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
8944
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
8945
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
8946
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
8947
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
8948
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
8949
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
8950
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
8951
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
8952
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
8953
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
8954
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
8955
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
8956
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
8957
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
8958
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
8959
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
8960
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
8961
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
8962
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
8963
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
8964
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
8965
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
8966
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
8967
+
8968
+
8969
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.1ms)
8970
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
8971
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.3ms)
8972
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.2ms)
8973
+
8974
+
8975
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:28:46 -0600
8976
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
8977
+
8978
+ SystemExit (exit):
8979
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
8980
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
8981
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
8982
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8983
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8984
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8985
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8986
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
8987
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
8988
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
8989
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
8990
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
8991
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
8992
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
8993
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
8994
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
8995
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
8996
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
8997
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
8998
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
8999
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
9000
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
9001
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
9002
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
9003
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
9004
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
9005
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
9006
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
9007
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
9008
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
9009
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
9010
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
9011
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
9012
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
9013
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
9014
+ omniauth (1.2.2) lib/omniauth/strategy.rb:366:in `path_prefix'
9015
+ omniauth (1.2.2) lib/omniauth/strategy.rb:388:in `callback_path'
9016
+ omniauth (1.2.2) lib/omniauth/strategy.rb:245:in `on_callback_path?'
9017
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
9018
+ omniauth (1.2.2) lib/omniauth/strategy.rb:179:in `call!'
9019
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9020
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9021
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9022
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9023
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9024
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9025
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9026
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9027
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9028
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9029
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9030
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9031
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9032
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9033
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9034
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9035
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9036
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9037
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9038
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9039
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9040
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9041
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9042
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9043
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9044
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9045
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9046
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9047
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9048
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9049
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9050
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9051
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9052
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9053
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9054
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9055
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9056
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9057
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9058
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9059
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9060
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9061
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9062
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9063
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9064
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9065
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9066
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9067
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9068
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9069
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9070
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9071
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9072
+
9073
+
9074
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.5ms)
9075
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
9076
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.7ms)
9077
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (26.7ms)
9078
+
9079
+
9080
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:30:18 -0600
9081
+
9082
+ SystemExit (exit):
9083
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
9084
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
9085
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
9086
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
9087
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
9088
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
9089
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
9090
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
9091
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
9092
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
9093
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
9094
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
9095
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
9096
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
9097
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
9098
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
9099
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
9100
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
9101
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
9102
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
9103
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
9104
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
9105
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
9106
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
9107
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
9108
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
9109
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
9110
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
9111
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
9112
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
9113
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
9114
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
9115
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
9116
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
9117
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
9118
+ omniauth (1.2.2) lib/omniauth/strategy.rb:366:in `path_prefix'
9119
+ omniauth (1.2.2) lib/omniauth/strategy.rb:388:in `callback_path'
9120
+ omniauth (1.2.2) lib/omniauth/strategy.rb:245:in `on_callback_path?'
9121
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
9122
+ omniauth (1.2.2) lib/omniauth/strategy.rb:179:in `call!'
9123
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9124
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9125
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9126
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9127
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9128
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9129
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9130
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9131
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9132
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9133
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9134
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9135
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9136
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9137
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9138
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9139
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9140
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9141
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9142
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9143
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9144
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9145
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9146
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9147
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9148
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9149
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9150
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9151
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9152
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9153
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9154
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9155
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9156
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9157
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9158
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9159
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9160
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9161
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9162
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9163
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9164
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9165
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9166
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9167
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9168
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9169
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9170
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9171
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9172
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9173
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9174
+
9175
+
9176
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
9177
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms)
9178
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
9179
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.9ms)
9180
+
9181
+
9182
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:30:49 -0600
9183
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9184
+
9185
+
9186
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:30:49 -0600
9187
+
9188
+ SystemExit (exit):
9189
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `exit'
9190
+ pry (0.10.1) lib/pry/commands/exit_program.rb:16:in `process'
9191
+ pry (0.10.1) lib/pry/command.rb:582:in `call'
9192
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
9193
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
9194
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
9195
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
9196
+ pry (0.10.1) lib/pry/command.rb:248:in `run'
9197
+ pry (0.10.1) lib/pry/command_set.rb:218:in `block in alias_command'
9198
+ pry (0.10.1) lib/pry/command.rb:495:in `instance_exec'
9199
+ pry (0.10.1) lib/pry/command.rb:495:in `call'
9200
+ pry (0.10.1) lib/pry/command.rb:456:in `call_with_hooks'
9201
+ pry (0.10.1) lib/pry/command.rb:427:in `call_safely'
9202
+ pry (0.10.1) lib/pry/command.rb:369:in `process_line'
9203
+ pry (0.10.1) lib/pry/command_set.rb:393:in `process_line'
9204
+ pry (0.10.1) lib/pry/pry_instance.rb:404:in `process_command'
9205
+ pry (0.10.1) lib/pry/pry_instance.rb:435:in `process_command_safely'
9206
+ pry (0.10.1) lib/pry/pry_instance.rb:272:in `handle_line'
9207
+ pry (0.10.1) lib/pry/pry_instance.rb:243:in `block (2 levels) in eval'
9208
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `catch'
9209
+ pry (0.10.1) lib/pry/pry_instance.rb:242:in `block in eval'
9210
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `catch'
9211
+ pry (0.10.1) lib/pry/pry_instance.rb:241:in `eval'
9212
+ pry (0.10.1) lib/pry/repl.rb:77:in `block in repl'
9213
+ pry (0.10.1) lib/pry/repl.rb:67:in `loop'
9214
+ pry (0.10.1) lib/pry/repl.rb:67:in `repl'
9215
+ pry (0.10.1) lib/pry/repl.rb:38:in `block in start'
9216
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `call'
9217
+ pry (0.10.1) lib/pry/input_lock.rb:61:in `__with_ownership'
9218
+ pry (0.10.1) lib/pry/input_lock.rb:79:in `with_ownership'
9219
+ pry (0.10.1) lib/pry/repl.rb:38:in `start'
9220
+ pry (0.10.1) lib/pry/repl.rb:15:in `start'
9221
+ pry (0.10.1) lib/pry/pry_class.rb:169:in `start'
9222
+ pry-remote (0.1.8) lib/pry-remote.rb:209:in `run'
9223
+ pry-remote (0.1.8) lib/pry-remote.rb:320:in `remote_pry'
9224
+ omniauth (1.2.2) lib/omniauth/strategy.rb:366:in `path_prefix'
9225
+ omniauth (1.2.2) lib/omniauth/strategy.rb:381:in `request_path'
9226
+ omniauth (1.2.2) lib/omniauth/strategy.rb:240:in `on_request_path?'
9227
+ omniauth (1.2.2) lib/omniauth/strategy.rb:233:in `on_auth_path?'
9228
+ omniauth (1.2.2) lib/omniauth/strategy.rb:182:in `call!'
9229
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9230
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9231
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9232
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9233
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9234
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9235
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9236
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9237
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9238
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9239
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9240
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9241
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9242
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9243
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9244
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9245
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9246
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9247
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9248
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9249
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9250
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9251
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9252
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9253
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9254
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9255
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9256
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9257
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9258
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9259
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9260
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9261
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9262
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9263
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9264
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9265
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9266
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9267
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9268
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9269
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9270
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9271
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9272
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9273
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9274
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9275
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9276
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9277
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9278
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9279
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9280
+
9281
+
9282
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms)
9283
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms)
9284
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (10.2ms)
9285
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (28.2ms)
9286
+
9287
+
9288
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:32:03 -0600
9289
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9290
+
9291
+
9292
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:32:03 -0600
9293
+
9294
+
9295
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:40:23 -0600
9296
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9297
+
9298
+
9299
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:40:23 -0600
9300
+
9301
+
9302
+ Started GET "/omniauth/github/callback?error=redirect_uri_mismatch&error_description=The+redirect_uri+MUST+match+the+registered+callback+URL+for+this+application.&error_uri=https%3A%2F%2Fdeveloper.github.com%2Fv3%2Foauth%2F%23redirect-uri-mismatch&state=5b30d20a1de049b3a73c2e98f3033176504cb1cd95409bbf" for 127.0.0.1 at 2015-01-07 01:42:47 -0600
9303
+ Processing by Devise::OmniauthCallbacksController#failure as HTML
9304
+ Parameters: {"error"=>"redirect_uri_mismatch", "error_description"=>"The redirect_uri MUST match the registered callback URL for this application.", "error_uri"=>"https://developer.github.com/v3/oauth/#redirect-uri-mismatch", "state"=>"5b30d20a1de049b3a73c2e98f3033176504cb1cd95409bbf"}
9305
+ Redirected to https://devise-token-auth.dev/auth/sign_in
9306
+ Completed 302 Found in 328ms (ActiveRecord: 0.0ms)
9307
+
9308
+
9309
+ Started GET "/auth/sign_in" for 127.0.0.1 at 2015-01-07 01:42:47 -0600
9310
+
9311
+ AbstractController::ActionNotFound (The action 'new' could not be found for DeviseTokenAuth::SessionsController):
9312
+ actionpack (4.2.0) lib/abstract_controller/base.rb:132:in `process'
9313
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
9314
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
9315
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
9316
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
9317
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
9318
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9319
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
9320
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
9321
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
9322
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
9323
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
9324
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
9325
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9326
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9327
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9328
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9329
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9330
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9331
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9332
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9333
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9334
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9335
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9336
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9337
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9338
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9339
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9340
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9341
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9342
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9343
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9344
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9345
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9346
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9347
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9348
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9349
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9350
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9351
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9352
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9353
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9354
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9355
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9356
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9357
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9358
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9359
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9360
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9361
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9362
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9363
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9364
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9365
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9366
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9367
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9368
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9369
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9370
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9371
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9372
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9373
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9374
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9375
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9376
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9377
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9378
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9379
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9380
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9381
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9382
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9383
+
9384
+
9385
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/unknown_action.html.erb within rescues/layout (1.7ms)
9386
+
9387
+
9388
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:48:18 -0600
9389
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9390
+
9391
+
9392
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:48:18 -0600
9393
+
9394
+
9395
+ Started GET "/auth/facebook?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:49:12 -0600
9396
+
9397
+
9398
+ Started GET "/omniauth/facebook?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:49:12 -0600
9399
+
9400
+
9401
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:49:59 -0600
9402
+
9403
+
9404
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:49:59 -0600
9405
+
9406
+
9407
+ Started GET "/auth/github?auth_origin_url=https%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:51:41 -0600
9408
+
9409
+
9410
+ Started GET "/omniauth/github?auth_origin_url=https%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:51:41 -0600
9411
+
9412
+
9413
+ Started GET "/auth/github?auth_origin_url=https%3A%2F%2Fng-token-auth.dev%2F" for 127.0.0.1 at 2015-01-07 01:52:06 -0600
9414
+
9415
+
9416
+ Started GET "/omniauth/github?auth_origin_url=https%3A%2F%2Fng-token-auth.dev%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:52:06 -0600
9417
+
9418
+
9419
+ Started GET "/mangs/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2Fmulti-user" for 127.0.0.1 at 2015-01-07 01:52:24 -0600
9420
+
9421
+
9422
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2Fmulti-user&resource_class=Mang" for 127.0.0.1 at 2015-01-07 01:52:24 -0600
9423
+
9424
+
9425
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 01:52:39 -0600
9426
+
9427
+
9428
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:52:39 -0600
9429
+
9430
+
9431
+ Started GET "/" for ::1 at 2015-01-07 01:52:58 -0600
9432
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9433
+ Processing by Rails::WelcomeController#index as HTML
9434
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (1.9ms)
9435
+ Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
9436
+
9437
+
9438
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 01:53:15 -0600
9439
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
9440
+
9441
+
9442
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 01:53:15 -0600
9443
+
9444
+
9445
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:24:00 -0600
9446
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
9447
+
9448
+
9449
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:24:00 -0600
9450
+
9451
+
9452
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:24:40 -0600
9453
+
9454
+
9455
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:26:24 -0600
9456
+
9457
+
9458
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:26:24 -0600
9459
+
9460
+
9461
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:30:06 -0600
9462
+
9463
+
9464
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:30:06 -0600
9465
+
9466
+
9467
+ Started GET "/omniauth/github/callback?code=ff2609244ba80f8b4911&state=afb4c2912e18a8e447e5a9dc4e2b5ed0ae6310ac636102e3" for 127.0.0.1 at 2015-01-07 03:30:12 -0600
9468
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
9469
+ Parameters: {"code"=>"ff2609244ba80f8b4911", "state"=>"afb4c2912e18a8e447e5a9dc4e2b5ed0ae6310ac636102e3", "provider"=>"github"}
9470
+ Redirected to https://devise-token-auth.dev/auth/github/callback
9471
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
9472
+
9473
+
9474
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:30:14 -0600
9475
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
9476
+ Parameters: {"provider"=>"github"}
9477
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
9478
+ Completed 500 Internal Server Error in 95ms
9479
+
9480
+ IndexError (string not matched):
9481
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `[]='
9482
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `omniauth_success'
9483
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
9484
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
9485
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
9486
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
9487
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9488
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9489
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
9490
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9491
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9492
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9493
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9494
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
9495
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
9496
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
9497
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9498
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
9499
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
9500
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
9501
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
9502
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9503
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
9504
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
9505
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
9506
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9507
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
9508
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
9509
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
9510
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
9511
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
9512
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
9513
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9514
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
9515
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
9516
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
9517
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
9518
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
9519
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
9520
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9521
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9522
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9523
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9524
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9525
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9526
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9527
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9528
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9529
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9530
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9531
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9532
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9533
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9534
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9535
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9536
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9537
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9538
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9539
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9540
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9541
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9542
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9543
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9544
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9545
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9546
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9547
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9548
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9549
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9550
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9551
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9552
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9553
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9554
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9555
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9556
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9557
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9558
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9559
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9560
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9561
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9562
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9563
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9564
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9565
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9566
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9567
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9568
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9569
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9570
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9571
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9572
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9573
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9574
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9575
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9576
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9577
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9578
+
9579
+
9580
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.2ms)
9581
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
9582
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
9583
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (22.6ms)
9584
+
9585
+
9586
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:30:46 -0600
9587
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
9588
+
9589
+
9590
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:30:46 -0600
9591
+
9592
+
9593
+ Started GET "/omniauth/github/callback?code=9d3c1ee95e45e0fd3632&state=de0bbaab7f428401252b558ae435c4cc758baffc0f8ba7cb" for 127.0.0.1 at 2015-01-07 03:30:46 -0600
9594
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
9595
+ Parameters: {"code"=>"9d3c1ee95e45e0fd3632", "state"=>"de0bbaab7f428401252b558ae435c4cc758baffc0f8ba7cb", "provider"=>"github"}
9596
+ Redirected to https://devise-token-auth.dev/auth/github/callback
9597
+ Completed 302 Found in 2ms (ActiveRecord: 0.0ms)
9598
+
9599
+
9600
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:30:47 -0600
9601
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
9602
+ Parameters: {"provider"=>"github"}
9603
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
9604
+ Completed 500 Internal Server Error in 84ms
9605
+
9606
+ IndexError (string not matched):
9607
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `[]='
9608
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `omniauth_success'
9609
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
9610
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
9611
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
9612
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
9613
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9614
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9615
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
9616
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9617
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9618
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9619
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9620
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
9621
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
9622
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
9623
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9624
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
9625
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
9626
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
9627
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
9628
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9629
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
9630
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
9631
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
9632
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9633
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
9634
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
9635
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
9636
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
9637
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
9638
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
9639
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9640
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
9641
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
9642
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
9643
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
9644
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
9645
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
9646
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9647
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9648
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9649
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9650
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9651
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9652
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9653
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9654
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9655
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9656
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9657
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9658
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9659
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9660
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9661
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9662
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9663
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9664
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9665
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9666
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9667
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9668
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9669
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9670
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9671
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9672
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9673
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9674
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9675
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9676
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9677
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9678
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9679
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9680
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9681
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9682
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9683
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9684
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9685
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9686
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9687
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9688
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9689
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9690
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9691
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9692
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9693
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9694
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9695
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9696
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9697
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9698
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9699
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9700
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9701
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9702
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9703
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9704
+
9705
+
9706
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.3ms)
9707
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.2ms)
9708
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
9709
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.0ms)
9710
+
9711
+
9712
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:32:29 -0600
9713
+
9714
+
9715
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:32:29 -0600
9716
+
9717
+
9718
+ Started GET "/omniauth/github/callback?code=b42289dd8786bd179f8d&state=2bc6c9f0d714a8c548ffb8ec590ab6ec0a881b778fcf3f67" for 127.0.0.1 at 2015-01-07 03:32:30 -0600
9719
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
9720
+ Parameters: {"code"=>"b42289dd8786bd179f8d", "state"=>"2bc6c9f0d714a8c548ffb8ec590ab6ec0a881b778fcf3f67", "provider"=>"github"}
9721
+ Redirected to https://devise-token-auth.dev/auth/github/callback
9722
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9723
+
9724
+
9725
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:32:32 -0600
9726
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
9727
+ Parameters: {"provider"=>"github"}
9728
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
9729
+ Completed 500 Internal Server Error in 64ms
9730
+
9731
+ IndexError (string not matched):
9732
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `[]='
9733
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:48:in `omniauth_success'
9734
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
9735
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
9736
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
9737
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
9738
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9739
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9740
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
9741
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9742
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9743
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9744
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9745
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
9746
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
9747
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
9748
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9749
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
9750
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
9751
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
9752
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
9753
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9754
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
9755
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
9756
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
9757
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9758
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
9759
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
9760
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
9761
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
9762
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
9763
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
9764
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9765
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
9766
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
9767
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
9768
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
9769
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
9770
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
9771
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9772
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9773
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9774
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9775
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9776
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9777
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9778
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9779
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9780
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9781
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9782
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9783
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9784
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9785
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9786
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9787
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9788
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9789
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9790
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9791
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9792
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9793
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9794
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9795
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9796
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9797
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9798
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9799
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9800
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9801
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9802
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9803
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9804
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9805
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9806
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9807
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9808
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9809
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9810
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9811
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9812
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9813
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9814
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9815
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9816
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9817
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9818
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9819
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9820
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9821
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9822
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9823
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9824
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9825
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9826
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9827
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9828
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9829
+
9830
+
9831
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.7ms)
9832
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.1ms)
9833
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
9834
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.8ms)
9835
+
9836
+
9837
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:33:21 -0600
9838
+
9839
+
9840
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:33:21 -0600
9841
+
9842
+
9843
+ Started GET "/omniauth/github/callback?code=2c0b69a1839db358f539&state=79f7843d11ef13df4871f3e7a6712098bcd5a6c8a763f58c" for 127.0.0.1 at 2015-01-07 03:33:21 -0600
9844
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
9845
+ Parameters: {"code"=>"2c0b69a1839db358f539", "state"=>"79f7843d11ef13df4871f3e7a6712098bcd5a6c8a763f58c", "provider"=>"github"}
9846
+ Redirected to https://devise-token-auth.dev/auth/github/callback
9847
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9848
+
9849
+
9850
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:33:22 -0600
9851
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
9852
+ Parameters: {"provider"=>"github"}
9853
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
9854
+ Completed 500 Internal Server Error in 47479ms
9855
+
9856
+ IndexError (string not matched):
9857
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:50:in `[]='
9858
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:50:in `omniauth_success'
9859
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
9860
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
9861
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
9862
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
9863
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9864
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9865
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
9866
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9867
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9868
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9869
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9870
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
9871
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
9872
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
9873
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9874
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
9875
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
9876
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
9877
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
9878
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
9879
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
9880
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
9881
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
9882
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
9883
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
9884
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
9885
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
9886
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
9887
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
9888
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
9889
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
9890
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
9891
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
9892
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
9893
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
9894
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
9895
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
9896
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9897
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9898
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9899
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9900
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9901
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9902
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
9903
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
9904
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
9905
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
9906
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
9907
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
9908
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
9909
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
9910
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
9911
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
9912
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
9913
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
9914
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
9915
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
9916
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
9917
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
9918
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
9919
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
9920
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
9921
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
9922
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
9923
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9924
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
9925
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
9926
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
9927
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
9928
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
9929
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
9930
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
9931
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
9932
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
9933
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
9934
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
9935
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
9936
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
9937
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
9938
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
9939
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
9940
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
9941
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
9942
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
9943
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
9944
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
9945
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
9946
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
9947
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
9948
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
9949
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
9950
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
9951
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
9952
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
9953
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
9954
+
9955
+
9956
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.4ms)
9957
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.3ms)
9958
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
9959
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.0ms)
9960
+
9961
+
9962
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:35:24 -0600
9963
+
9964
+
9965
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:35:24 -0600
9966
+
9967
+
9968
+ Started GET "/omniauth/github/callback?code=f02f6f18e22205a78a98&state=9a078e2171d98568779ab815a27c094943da68bb7a638f19" for 127.0.0.1 at 2015-01-07 03:35:25 -0600
9969
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
9970
+ Parameters: {"code"=>"f02f6f18e22205a78a98", "state"=>"9a078e2171d98568779ab815a27c094943da68bb7a638f19", "provider"=>"github"}
9971
+ Redirected to https://devise-token-auth.dev/auth/github/callback
9972
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
9973
+
9974
+
9975
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:35:27 -0600
9976
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
9977
+ Parameters: {"provider"=>"github"}
9978
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
9979
+ Completed 500 Internal Server Error in 311246ms
9980
+
9981
+ IndexError (string not matched):
9982
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:50:in `[]='
9983
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb:50:in `omniauth_success'
9984
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
9985
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
9986
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
9987
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
9988
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9989
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
9990
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
9991
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9992
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9993
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
9994
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
9995
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
9996
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
9997
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
9998
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
9999
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
10000
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
10001
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
10002
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
10003
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10004
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
10005
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
10006
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
10007
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10008
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
10009
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
10010
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
10011
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
10012
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
10013
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
10014
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10015
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
10016
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:49:in `serve'
10017
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
10018
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
10019
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
10020
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
10021
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10022
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10023
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10024
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10025
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10026
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10027
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10028
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10029
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
10030
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
10031
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
10032
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
10033
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
10034
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
10035
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
10036
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
10037
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
10038
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
10039
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
10040
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
10041
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
10042
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
10043
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
10044
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
10045
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
10046
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
10047
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
10048
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
10049
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10050
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
10051
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
10052
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
10053
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
10054
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
10055
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
10056
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
10057
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
10058
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
10059
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
10060
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
10061
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
10062
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
10063
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
10064
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
10065
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
10066
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
10067
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
10068
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
10069
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
10070
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
10071
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
10072
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
10073
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
10074
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
10075
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
10076
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
10077
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
10078
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
10079
+
10080
+
10081
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms)
10082
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
10083
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
10084
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (17.2ms)
10085
+
10086
+
10087
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:40:46 -0600
10088
+
10089
+
10090
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:40:46 -0600
10091
+
10092
+
10093
+ Started GET "/omniauth/github/callback?code=1884e47ea1888284cd1a&state=4291eca97eaf79febc311bb52a450d205b8ccba5d7342771" for 127.0.0.1 at 2015-01-07 03:40:47 -0600
10094
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
10095
+ Parameters: {"code"=>"1884e47ea1888284cd1a", "state"=>"4291eca97eaf79febc311bb52a450d205b8ccba5d7342771", "provider"=>"github"}
10096
+ Redirected to https://devise-token-auth.dev/auth/github/callback
10097
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
10098
+
10099
+
10100
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:40:48 -0600
10101
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
10102
+ Parameters: {"provider"=>"github"}
10103
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
10104
+  (0.1ms) begin transaction
10105
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "image" = ?, "confirmed_at" = ?, "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"1AZFCi-YvOZxSOMOdGL9vA\":{\"token\":\"$2a$10$9EORvjZaU/ad3xwlb2KKx.VCo8wZ0rs4LqUvOcRUkkBmihhZZ.3J.\",\"expiry\":1421833248}}"], ["image", "https://avatars.githubusercontent.com/u/468037?v=3"], ["confirmed_at", "2015-01-07 09:40:57.245251"], ["last_sign_in_at", "2015-01-07 09:40:57.246192"], ["current_sign_in_at", "2015-01-07 09:40:57.246192"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2015-01-07 09:40:57.250871"], ["id", 5]]
10106
+  (1.1ms) commit transaction
10107
+  (0.0ms) begin transaction
10108
+  (0.0ms) commit transaction
10109
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.7ms)
10110
+ Completed 200 OK in 8544ms (Views: 4.8ms | ActiveRecord: 2.6ms)
10111
+
10112
+
10113
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2015-01-07 03:57:51 -0600
10114
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10115
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
10116
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10117
+  (0.1ms) begin transaction
10118
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2015-01-07 09:57:51.226298"], ["id", 5]]
10119
+  (2.1ms) commit transaction
10120
+ Completed 200 OK in 104ms (Views: 0.2ms | ActiveRecord: 3.2ms)
10121
+
10122
+
10123
+ Started POST "/auth" for 127.0.0.1 at 2015-01-07 03:58:04 -0600
10124
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
10125
+ Parameters: {"email"=>"t9@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"purple", "confirm_success_url"=>"http://ng-token-auth.dev/#/", "config_name"=>"default", "registration"=>{"email"=>"t9@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "favorite_color"=>"purple", "confirm_success_url"=>"http://ng-token-auth.dev/#/", "config_name"=>"default"}}
10126
+ Unpermitted parameters: confirm_success_url, config_name, registration
10127
+ Unpermitted parameters: confirm_success_url, config_name, registration
10128
+  (0.1ms) begin transaction
10129
+  (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."provider" = ? AND "users"."email" = ? [["provider", "email"], ["email", "t9@test.com"]]
10130
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "3db2a4295ec183035ee8e574b75f77ab335b67a1b8706880a0f05ed97959a730"]]
10131
+ SQL (0.4ms) INSERT INTO "users" ("email", "encrypted_password", "favorite_color", "tokens", "provider", "uid", "created_at", "updated_at", "confirmation_token", "confirmation_sent_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["email", "t9@test.com"], ["encrypted_password", "$2a$10$TYa.MehrIhFn8M/sOTJKSeSXM9JUbr6y7v6lXvpjah5Vb7x.30Hjq"], ["favorite_color", "purple"], ["tokens", "{}"], ["provider", "email"], ["uid", "t9@test.com"], ["created_at", "2015-01-07 09:58:04.935036"], ["updated_at", "2015-01-07 09:58:04.935036"], ["confirmation_token", "3db2a4295ec183035ee8e574b75f77ab335b67a1b8706880a0f05ed97959a730"], ["confirmation_sent_at", "2015-01-07 09:58:05.131529"]]
10132
+  (2.2ms) commit transaction
10133
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise/mailer/confirmation_instructions.html.erb (4.4ms)
10134
+
10135
+ Devise::Mailer#confirmation_instructions: processed outbound mail in 439.4ms
10136
+
10137
+ Sent mail to t9@test.com (139.9ms)
10138
+ Date: Wed, 07 Jan 2015 03:58:05 -0600
10139
+ From: please-change-me-at-config-initializers-devise@example.com
10140
+ Reply-To: please-change-me-at-config-initializers-devise@example.com
10141
+ To: t9@test.com
10142
+ Message-ID: <54ad032d8f493_f8733ff219065be4738c6@tests-MacBook-Pro-2.local.mail>
10143
+ Subject: Confirmation instructions
10144
+ Mime-Version: 1.0
10145
+ Content-Type: text/html;
10146
+ charset=UTF-8
10147
+ Content-Transfer-Encoding: 7bit
10148
+ client-config: default
10149
+ redirect-url: http://ng-token-auth.dev/#/
10150
+
10151
+ <p>Welcome t9@test.com!</p>
10152
+
10153
+ <p>You can confirm your account email through the link below:</p>
10154
+
10155
+ <p><a href="http://devise-token-auth.dev/auth/confirmation?config=default&confirmation_token=YWJnssHTJyxUgxMHbraY&redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F">Confirm my account</a></p>
10156
+
10157
+ Completed 200 OK in 860ms (Views: 0.3ms | ActiveRecord: 3.0ms)
10158
+
10159
+
10160
+ Started GET "/auth/confirmation?config=default&confirmation_token=YWJnssHTJyxUgxMHbraY&redirect_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:58:28 -0600
10161
+ Processing by DeviseTokenAuth::ConfirmationsController#show as HTML
10162
+ Parameters: {"config"=>"default", "confirmation_token"=>"YWJnssHTJyxUgxMHbraY", "redirect_url"=>"http://ng-token-auth.dev/#/"}
10163
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."confirmation_token" = ? ORDER BY "users"."id" ASC LIMIT 1 [["confirmation_token", "3db2a4295ec183035ee8e574b75f77ab335b67a1b8706880a0f05ed97959a730"]]
10164
+  (0.1ms) begin transaction
10165
+ SQL (0.4ms) UPDATE "users" SET "confirmation_token" = ?, "confirmed_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["confirmation_token", nil], ["confirmed_at", "2015-01-07 09:58:28.199055"], ["updated_at", "2015-01-07 09:58:28.200709"], ["id", 24]]
10166
+  (2.1ms) commit transaction
10167
+  (0.1ms) begin transaction
10168
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "confirmation_token" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJ1eIlgQrRwWmpvuFCAXLw\":{\"token\":\"$2a$10$p.qz/Ng.I.soDUAgFW4UAe0vEzzCSncANaDTp1gdD8tnklubQUSsC\",\"expiry\":1421834308}}"], ["confirmation_token", "YWJnssHTJyxUgxMHbraY"], ["updated_at", "2015-01-07 09:58:28.274187"], ["id", 24]]
10169
+  (1.1ms) commit transaction
10170
+ Redirected to http://ng-token-auth.dev/#/?account_confirmation_success=true&client_id=nJ1eIlgQrRwWmpvuFCAXLw&config=default&expiry=&token=0yuVyqlJ8Fbs2dR6_lNAbQ&uid=t9%40test.com
10171
+ Completed 302 Found in 85ms (ActiveRecord: 4.3ms)
10172
+
10173
+
10174
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2015-01-07 03:58:29 -0600
10175
+ Processing by DeviseTokenAuth::TokenValidationsController#validate_token as HTML
10176
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t9@test.com"]]
10177
+  (0.1ms) begin transaction
10178
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
10179
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJ1eIlgQrRwWmpvuFCAXLw\":{\"token\":\"$2a$10$vayHdhCuJffI2e6qAErLae8De92Xx.q5GzSt9CLmLc0MHnHkPRKrK\",\"expiry\":1421834309,\"last_token\":\"$2a$10$p.qz/Ng.I.soDUAgFW4UAe0vEzzCSncANaDTp1gdD8tnklubQUSsC\",\"updated_at\":\"2015-01-07T03:58:29.149-06:00\"}}"], ["updated_at", "2015-01-07 09:58:29.153643"], ["id", 24]]
10180
+  (1.9ms) commit transaction
10181
+ Completed 200 OK in 139ms (Views: 0.2ms | ActiveRecord: 2.7ms)
10182
+
10183
+
10184
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-07 03:58:32 -0600
10185
+ Processing by DemoUserController#members_only as HTML
10186
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t9@test.com"]]
10187
+  (0.1ms) begin transaction
10188
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 24]]
10189
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJ1eIlgQrRwWmpvuFCAXLw\":{\"token\":\"$2a$10$vayHdhCuJffI2e6qAErLae8De92Xx.q5GzSt9CLmLc0MHnHkPRKrK\",\"expiry\":1421834309,\"last_token\":\"$2a$10$p.qz/Ng.I.soDUAgFW4UAe0vEzzCSncANaDTp1gdD8tnklubQUSsC\",\"updated_at\":\"2015-01-07T03:58:32.860-06:00\"}}"], ["updated_at", "2015-01-07 09:58:32.863908"], ["id", 24]]
10190
+  (2.0ms) commit transaction
10191
+ Completed 200 OK in 76ms (Views: 1.0ms | ActiveRecord: 2.5ms)
10192
+
10193
+
10194
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-07 03:58:35 -0600
10195
+ Processing by DemoUserController#members_only as HTML
10196
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t9@test.com"]]
10197
+  (0.1ms) begin transaction
10198
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
10199
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJ1eIlgQrRwWmpvuFCAXLw\":{\"token\":\"$2a$10$vayHdhCuJffI2e6qAErLae8De92Xx.q5GzSt9CLmLc0MHnHkPRKrK\",\"expiry\":1421834309,\"last_token\":\"$2a$10$p.qz/Ng.I.soDUAgFW4UAe0vEzzCSncANaDTp1gdD8tnklubQUSsC\",\"updated_at\":\"2015-01-07T03:58:35.072-06:00\"}}"], ["updated_at", "2015-01-07 09:58:35.077126"], ["id", 24]]
10200
+  (1.9ms) commit transaction
10201
+ Completed 200 OK in 76ms (Views: 0.9ms | ActiveRecord: 2.4ms)
10202
+
10203
+
10204
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-07 03:58:37 -0600
10205
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
10206
+ Processing by DemoUserController#members_only as HTML
10207
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t9@test.com"]]
10208
+  (0.1ms) begin transaction
10209
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
10210
+ SQL (0.4ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJ1eIlgQrRwWmpvuFCAXLw\":{\"token\":\"$2a$10$vayHdhCuJffI2e6qAErLae8De92Xx.q5GzSt9CLmLc0MHnHkPRKrK\",\"expiry\":1421834309,\"last_token\":\"$2a$10$p.qz/Ng.I.soDUAgFW4UAe0vEzzCSncANaDTp1gdD8tnklubQUSsC\",\"updated_at\":\"2015-01-07T03:58:37.542-06:00\"}}"], ["updated_at", "2015-01-07 09:58:37.547653"], ["id", 24]]
10211
+  (2.1ms) commit transaction
10212
+ Completed 200 OK in 118ms (Views: 1.1ms | ActiveRecord: 3.5ms)
10213
+
10214
+
10215
+ Started PUT "/auth" for 127.0.0.1 at 2015-01-07 03:58:46 -0600
10216
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
10217
+ Parameters: {"favorite_color"=>"pink", "registration"=>{"favorite_color"=>"pink"}}
10218
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t9@test.com"]]
10219
+ Unpermitted parameter: registration
10220
+  (0.1ms) begin transaction
10221
+ SQL (1.0ms) UPDATE "users" SET "favorite_color" = ?, "updated_at" = ? WHERE "users"."id" = ? [["favorite_color", "pink"], ["updated_at", "2015-01-07 09:58:46.553052"], ["id", 24]]
10222
+  (0.6ms) commit transaction
10223
+  (0.0ms) begin transaction
10224
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 24]]
10225
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"nJ1eIlgQrRwWmpvuFCAXLw\":{\"token\":\"$2a$10$kUnu94jhQ6E5CuG/dX0RyuMl.fDFra3Ryf3ECrGrU45N/U4U2Dtwe\",\"expiry\":1421834326,\"last_token\":\"$2a$10$vayHdhCuJffI2e6qAErLae8De92Xx.q5GzSt9CLmLc0MHnHkPRKrK\",\"updated_at\":\"2015-01-07T03:58:46.622-06:00\"}}"], ["updated_at", "2015-01-07 09:58:46.626102"], ["id", 24]]
10226
+  (0.8ms) commit transaction
10227
+ Completed 200 OK in 149ms (Views: 0.3ms | ActiveRecord: 3.0ms)
10228
+
10229
+
10230
+ Started DELETE "/auth" for 127.0.0.1 at 2015-01-07 03:58:53 -0600
10231
+ Processing by DeviseTokenAuth::RegistrationsController#destroy as HTML
10232
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t9@test.com"]]
10233
+  (0.1ms) begin transaction
10234
+ SQL (0.5ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 24]]
10235
+  (2.8ms) commit transaction
10236
+ Completed 200 OK in 67ms (Views: 0.2ms | ActiveRecord: 3.5ms)
10237
+
10238
+
10239
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2015-01-07 03:59:02 -0600
10240
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
10241
+ Parameters: {"email"=>"t9@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"t9@test.com", "password"=>"[FILTERED]"}}
10242
+ Unpermitted parameter: session
10243
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid='t9@test.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT 1
10244
+ Completed 401 Unauthorized in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
10245
+
10246
+
10247
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2015-01-07 03:59:08 -0600
10248
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
10249
+ Parameters: {"email"=>"t2@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"t2@test.com", "password"=>"[FILTERED]"}}
10250
+ Unpermitted parameter: session
10251
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid='t2@test.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT 1
10252
+ Unpermitted parameter: session
10253
+ Unpermitted parameter: session
10254
+ Unpermitted parameter: session
10255
+ Completed 401 Unauthorized in 67ms (Views: 0.2ms | ActiveRecord: 0.2ms)
10256
+
10257
+
10258
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2015-01-07 03:59:17 -0600
10259
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
10260
+ Parameters: {"email"=>"t2@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"t2@test.com", "password"=>"[FILTERED]"}}
10261
+ Unpermitted parameter: session
10262
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE (uid='t2@test.com' AND provider='email') ORDER BY "users"."id" ASC LIMIT 1
10263
+ Unpermitted parameter: session
10264
+ Unpermitted parameter: session
10265
+ Unpermitted parameter: session
10266
+  (0.1ms) begin transaction
10267
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lFBmuq0yUqVPBfRnwj_7wA\":{\"token\":\"$2a$10$RYY5mUZBY0X64BlMf26EZexyhAiUz5ZhSyyMV6cwHWXI6fEF6vwqC\",\"expiry\":1421834357}}"], ["updated_at", "2015-01-07 09:59:17.181741"], ["id", 23]]
10268
+  (1.8ms) commit transaction
10269
+  (0.0ms) begin transaction
10270
+ SQL (0.3ms) UPDATE "users" SET "last_sign_in_at" = ?, "current_sign_in_at" = ?, "last_sign_in_ip" = ?, "current_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["last_sign_in_at", "2015-01-07 09:59:17.187500"], ["current_sign_in_at", "2015-01-07 09:59:17.187500"], ["last_sign_in_ip", "127.0.0.1"], ["current_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2015-01-07 09:59:17.191581"], ["id", 23]]
10271
+  (0.7ms) commit transaction
10272
+  (0.0ms) begin transaction
10273
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 23]]
10274
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"lFBmuq0yUqVPBfRnwj_7wA\":{\"token\":\"$2a$10$mILualZYVmd57e/Lcjhs/.efyabpUSQbhq2y857WRkh8UK5YHzXhG\",\"expiry\":1421834357,\"last_token\":\"$2a$10$RYY5mUZBY0X64BlMf26EZexyhAiUz5ZhSyyMV6cwHWXI6fEF6vwqC\",\"updated_at\":\"2015-01-07T03:59:17.257-06:00\"}}"], ["updated_at", "2015-01-07 09:59:17.262697"], ["id", 23]]
10275
+  (0.8ms) commit transaction
10276
+ Completed 200 OK in 216ms (Views: 0.2ms | ActiveRecord: 4.7ms)
10277
+
10278
+
10279
+ Started DELETE "/auth" for 127.0.0.1 at 2015-01-07 03:59:22 -0600
10280
+ Processing by DeviseTokenAuth::RegistrationsController#destroy as HTML
10281
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "t2@test.com"]]
10282
+  (0.1ms) begin transaction
10283
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 23]]
10284
+  (2.2ms) commit transaction
10285
+ Completed 200 OK in 68ms (Views: 0.2ms | ActiveRecord: 2.7ms)
10286
+
10287
+
10288
+ Started GET "/auth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F" for 127.0.0.1 at 2015-01-07 03:59:25 -0600
10289
+
10290
+
10291
+ Started GET "/omniauth/github?auth_origin_url=http%3A%2F%2Fng-token-auth.dev%2F%23%2F&resource_class=User" for 127.0.0.1 at 2015-01-07 03:59:25 -0600
10292
+
10293
+
10294
+ Started GET "/omniauth/github/callback?code=a9833dfabee121cbf527&state=e9f94739d02a9eab4be9936ac5c9f06092c3c5ea27c1cd4d" for 127.0.0.1 at 2015-01-07 03:59:26 -0600
10295
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#redirect_callbacks as HTML
10296
+ Parameters: {"code"=>"a9833dfabee121cbf527", "state"=>"e9f94739d02a9eab4be9936ac5c9f06092c3c5ea27c1cd4d", "provider"=>"github"}
10297
+ Redirected to https://devise-token-auth.dev/auth/github/callback
10298
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
10299
+
10300
+
10301
+ Started GET "/auth/github/callback" for 127.0.0.1 at 2015-01-07 03:59:28 -0600
10302
+ Processing by DeviseTokenAuth::OmniauthCallbacksController#omniauth_success as HTML
10303
+ Parameters: {"provider"=>"github"}
10304
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? AND "users"."provider" = ? ORDER BY "users"."id" ASC LIMIT 1 [["uid", "468037"], ["provider", "github"]]
10305
+  (0.1ms) begin transaction
10306
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "confirmed_at" = ?, "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9bDrrrY-t8WwNULcpI9jMA\":{\"token\":\"$2a$10$RggnDTLPvLjj.KE10S3BOO8x2m8tDHwvGTQ7eVn9aWZCqQWwIbZpC\",\"expiry\":1421834368}}"], ["confirmed_at", "2015-01-07 09:59:28.507880"], ["current_sign_in_at", "2015-01-07 09:59:28.508713"], ["sign_in_count", 2], ["updated_at", "2015-01-07 09:59:28.512635"], ["id", 5]]
10307
+  (1.9ms) commit transaction
10308
+  (0.0ms) begin transaction
10309
+  (0.1ms) commit transaction
10310
+ Rendered /Users/lynn/Code/Auth/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.6ms)
10311
+ Completed 200 OK in 95ms (Views: 9.0ms | ActiveRecord: 2.6ms)
10312
+
10313
+
10314
+ Started PUT "/auth" for 127.0.0.1 at 2015-01-07 03:59:37 -0600
10315
+ Processing by DeviseTokenAuth::RegistrationsController#update as HTML
10316
+ Parameters: {"favorite_color"=>"red", "registration"=>{"favorite_color"=>"red"}}
10317
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10318
+ Unpermitted parameter: registration
10319
+  (0.1ms) begin transaction
10320
+ SQL (0.3ms) UPDATE "users" SET "favorite_color" = ?, "updated_at" = ? WHERE "users"."id" = ? [["favorite_color", "red"], ["updated_at", "2015-01-07 09:59:37.429436"], ["id", 5]]
10321
+  (2.0ms) commit transaction
10322
+  (0.0ms) begin transaction
10323
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 5]]
10324
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9bDrrrY-t8WwNULcpI9jMA\":{\"token\":\"$2a$10$S18vXAol8AvaYD1KPf25bectFvzq0XPcYQlKjav3U8eaGaCxHeKAy\",\"expiry\":1421834377,\"last_token\":\"$2a$10$RggnDTLPvLjj.KE10S3BOO8x2m8tDHwvGTQ7eVn9aWZCqQWwIbZpC\",\"updated_at\":\"2015-01-07T03:59:37.501-06:00\"}}"], ["updated_at", "2015-01-07 09:59:37.504201"], ["id", 5]]
10325
+  (1.0ms) commit transaction
10326
+ Completed 200 OK in 147ms (Views: 0.3ms | ActiveRecord: 3.9ms)
10327
+
10328
+
10329
+ Started GET "/auth/validate_token" for 127.0.0.1 at 2015-01-07 03:59:40 -0600
10330
+ Processing by DeviseTokenAuth::TokenValidationsController#validate_token as HTML
10331
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10332
+  (0.1ms) begin transaction
10333
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
10334
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9bDrrrY-t8WwNULcpI9jMA\":{\"token\":\"$2a$10$S18vXAol8AvaYD1KPf25bectFvzq0XPcYQlKjav3U8eaGaCxHeKAy\",\"expiry\":1421834377,\"last_token\":\"$2a$10$RggnDTLPvLjj.KE10S3BOO8x2m8tDHwvGTQ7eVn9aWZCqQWwIbZpC\",\"updated_at\":\"2015-01-07T03:59:40.754-06:00\"}}"], ["updated_at", "2015-01-07 09:59:40.757542"], ["id", 5]]
10335
+  (2.3ms) commit transaction
10336
+ Completed 200 OK in 139ms (Views: 0.2ms | ActiveRecord: 2.8ms)
10337
+
10338
+
10339
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-07 03:59:43 -0600
10340
+ Processing by DemoUserController#members_only as HTML
10341
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10342
+  (0.1ms) begin transaction
10343
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 5]]
10344
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9bDrrrY-t8WwNULcpI9jMA\":{\"token\":\"$2a$10$S18vXAol8AvaYD1KPf25bectFvzq0XPcYQlKjav3U8eaGaCxHeKAy\",\"expiry\":1421834377,\"last_token\":\"$2a$10$RggnDTLPvLjj.KE10S3BOO8x2m8tDHwvGTQ7eVn9aWZCqQWwIbZpC\",\"updated_at\":\"2015-01-07T03:59:44.040-06:00\"}}"], ["updated_at", "2015-01-07 09:59:44.043282"], ["id", 5]]
10345
+  (2.1ms) commit transaction
10346
+ Completed 200 OK in 140ms (Views: 1.0ms | ActiveRecord: 2.8ms)
10347
+
10348
+
10349
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-07 03:59:45 -0600
10350
+ Processing by DemoUserController#members_only as HTML
10351
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10352
+
10353
+
10354
+ Started GET "/demo/members_only" for 127.0.0.1 at 2015-01-07 03:59:45 -0600
10355
+ Processing by DemoUserController#members_only as HTML
10356
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10357
+  (0.1ms) begin transaction
10358
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 5]]
10359
+  (0.1ms) begin transaction
10360
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1  [["id", 5]]
10361
+ SQL (0.2ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9bDrrrY-t8WwNULcpI9jMA\":{\"token\":\"$2a$10$S18vXAol8AvaYD1KPf25bectFvzq0XPcYQlKjav3U8eaGaCxHeKAy\",\"expiry\":1421834377,\"last_token\":\"$2a$10$RggnDTLPvLjj.KE10S3BOO8x2m8tDHwvGTQ7eVn9aWZCqQWwIbZpC\",\"updated_at\":\"2015-01-07T03:59:46.066-06:00\"}}"], ["updated_at", "2015-01-07 09:59:46.069145"], ["id", 5]]
10362
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{\"9bDrrrY-t8WwNULcpI9jMA\":{\"token\":\"$2a$10$S18vXAol8AvaYD1KPf25bectFvzq0XPcYQlKjav3U8eaGaCxHeKAy\",\"expiry\":1421834377,\"last_token\":\"$2a$10$RggnDTLPvLjj.KE10S3BOO8x2m8tDHwvGTQ7eVn9aWZCqQWwIbZpC\",\"updated_at\":\"2015-01-07T03:59:46.070-06:00\"}}"], ["updated_at", "2015-01-07 09:59:46.073212"], ["id", 5]]
10363
+ SQLite3::BusyException: database is locked: UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ?
10364
+  (0.1ms) rollback transaction
10365
+  (38.4ms) commit transaction
10366
+ Completed 200 OK in 171ms (Views: 0.9ms | ActiveRecord: 38.9ms)
10367
+ Completed 500 Internal Server Error in 167ms
10368
+
10369
+ ActiveRecord::StatementInvalid (SQLite3::BusyException: database is locked: UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ?):
10370
+ sqlite3 (1.3.10) lib/sqlite3/statement.rb:108:in `step'
10371
+ sqlite3 (1.3.10) lib/sqlite3/statement.rb:108:in `block in each'
10372
+ sqlite3 (1.3.10) lib/sqlite3/statement.rb:107:in `loop'
10373
+ sqlite3 (1.3.10) lib/sqlite3/statement.rb:107:in `each'
10374
+ activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:318:in `to_a'
10375
+ activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:318:in `block in exec_query'
10376
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:466:in `block in log'
10377
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10378
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:460:in `log'
10379
+ activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:297:in `exec_query'
10380
+ activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:323:in `exec_delete'
10381
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:114:in `update'
10382
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `update'
10383
+ activerecord (4.2.0) lib/active_record/relation.rb:88:in `_update_record'
10384
+ activerecord (4.2.0) lib/active_record/persistence.rb:512:in `_update_record'
10385
+ activerecord (4.2.0) lib/active_record/locking/optimistic.rb:70:in `_update_record'
10386
+ activerecord (4.2.0) lib/active_record/attribute_methods/dirty.rb:123:in `_update_record'
10387
+ activerecord (4.2.0) lib/active_record/callbacks.rb:310:in `block in _update_record'
10388
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
10389
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
10390
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
10391
+ activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `call'
10392
+ activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `block in halting_and_conditional'
10393
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
10394
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
10395
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_update_callbacks'
10396
+ activerecord (4.2.0) lib/active_record/callbacks.rb:310:in `_update_record'
10397
+ activerecord (4.2.0) lib/active_record/timestamp.rb:70:in `_update_record'
10398
+ activerecord (4.2.0) lib/active_record/persistence.rb:501:in `create_or_update'
10399
+ activerecord (4.2.0) lib/active_record/callbacks.rb:302:in `block in create_or_update'
10400
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
10401
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
10402
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
10403
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
10404
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
10405
+ activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `call'
10406
+ activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `block in halting_and_conditional'
10407
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
10408
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
10409
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_save_callbacks'
10410
+ activerecord (4.2.0) lib/active_record/callbacks.rb:302:in `create_or_update'
10411
+ activerecord (4.2.0) lib/active_record/persistence.rb:142:in `save!'
10412
+ activerecord (4.2.0) lib/active_record/validations.rb:43:in `save!'
10413
+ activerecord (4.2.0) lib/active_record/attribute_methods/dirty.rb:29:in `save!'
10414
+ activerecord (4.2.0) lib/active_record/transactions.rb:291:in `block in save!'
10415
+ activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status'
10416
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:211:in `transaction'
10417
+ activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction'
10418
+ activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status'
10419
+ activerecord (4.2.0) lib/active_record/transactions.rb:291:in `save!'
10420
+ /Users/lynn/Code/Auth/devise_token_auth/app/models/devise_token_auth/concerns/user.rb:194:in `extend_batch_buffer'
10421
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:74:in `block in update_auth_header'
10422
+ activerecord (4.2.0) lib/active_record/locking/pessimistic.rb:72:in `block in with_lock'
10423
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction'
10424
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction'
10425
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction'
10426
+ activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction'
10427
+ activerecord (4.2.0) lib/active_record/transactions.rb:277:in `transaction'
10428
+ activerecord (4.2.0) lib/active_record/locking/pessimistic.rb:70:in `with_lock'
10429
+ /Users/lynn/Code/Auth/devise_token_auth/app/controllers/devise_token_auth/concerns/set_user_by_token.rb:57:in `update_auth_header'
10430
+ activesupport (4.2.0) lib/active_support/callbacks.rb:427:in `block in make_lambda'
10431
+ activesupport (4.2.0) lib/active_support/callbacks.rb:236:in `call'
10432
+ activesupport (4.2.0) lib/active_support/callbacks.rb:236:in `block in halting'
10433
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
10434
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
10435
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
10436
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
10437
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
10438
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
10439
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
10440
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
10441
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
10442
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
10443
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
10444
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
10445
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
10446
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
10447
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
10448
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
10449
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
10450
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
10451
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
10452
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
10453
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
10454
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
10455
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
10456
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
10457
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
10458
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
10459
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
10460
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10461
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10462
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10463
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10464
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10465
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10466
+ omniauth (1.2.2) lib/omniauth/strategy.rb:186:in `call!'
10467
+ omniauth (1.2.2) lib/omniauth/strategy.rb:164:in `call'
10468
+ omniauth (1.2.2) lib/omniauth/builder.rb:59:in `call'
10469
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
10470
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
10471
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
10472
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
10473
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
10474
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
10475
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
10476
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
10477
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
10478
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
10479
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
10480
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
10481
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
10482
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
10483
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
10484
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
10485
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
10486
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
10487
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
10488
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
10489
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
10490
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
10491
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
10492
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
10493
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
10494
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
10495
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
10496
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
10497
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
10498
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
10499
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
10500
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
10501
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
10502
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
10503
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
10504
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
10505
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
10506
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
10507
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
10508
+ rack-cors (0.3.1) lib/rack/cors.rb:72:in `call'
10509
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:155:in `handle'
10510
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:109:in `rescue in block (2 levels) in start'
10511
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:106:in `block (2 levels) in start'
10512
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `each'
10513
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:96:in `block in start'
10514
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `loop'
10515
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:76:in `start'
10516
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/lib/nack/server.rb:12:in `run'
10517
+ /Users/lynn/Library/Application Support/Pow/Versions/0.5.0/node_modules/nack/bin/nack_worker:4:in `<main>'
10518
+
10519
+
10520
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms)
10521
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (4.1ms)
10522
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
10523
+ Rendered /Users/lynn/.rbenv/versions/2.1.3/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (25.7ms)
10524
+
10525
+
10526
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2015-01-07 03:59:48 -0600
10527
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
10528
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = ? LIMIT 1 [["uid", "468037"]]
10529
+  (0.1ms) begin transaction
10530
+ SQL (0.3ms) UPDATE "users" SET "tokens" = ?, "updated_at" = ? WHERE "users"."id" = ? [["tokens", "{}"], ["updated_at", "2015-01-07 09:59:49.066784"], ["id", 5]]
10531
+  (1.9ms) commit transaction
10532
+ Completed 200 OK in 140ms (Views: 0.2ms | ActiveRecord: 2.4ms)