omniauth-rails 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +47 -3
  3. data/Rakefile +1 -0
  4. data/app/assets/stylesheets/omniauth/rails/application.css +11 -12
  5. data/app/controllers/omniauth/rails/{require_authentication.rb → authentication_concern.rb} +13 -3
  6. data/app/controllers/omniauth/rails/{require_authorization.rb → authorization_concern.rb} +13 -4
  7. data/app/controllers/omniauth/rails/controllers_concern.rb +11 -0
  8. data/app/controllers/omniauth/rails/flash.rb +2 -21
  9. data/app/models/omniauth/rails/authentication_request.rb +5 -2
  10. data/app/views/omniauth/rails/forbidden.html +1 -0
  11. data/app/views/omniauth/rails/sessions/destroy.html.erb +3 -3
  12. data/config/initializers/omniauth_rails.rb +1 -34
  13. data/lib/omniauth/rails.rb +2 -0
  14. data/lib/omniauth/rails/configuration.rb +5 -1
  15. data/lib/omniauth/rails/configurator.rb +103 -0
  16. data/lib/omniauth/rails/engine.rb +13 -0
  17. data/lib/omniauth/rails/provider.rb +20 -0
  18. data/lib/omniauth/rails/provider/google_oauth2.rb +34 -0
  19. data/lib/omniauth/rails/version.rb +1 -1
  20. data/lib/tasks/mutant.rake +8 -0
  21. data/spec/controllers/application_controller_spec.rb +0 -1
  22. data/spec/controllers/authentication_concern_spec.rb +40 -0
  23. data/spec/examples.txt +20 -15
  24. data/spec/lib/omniauth/rails/configurator_spec.rb +45 -0
  25. data/spec/models/omniauth/rails/authorization_types/emails_spec.rb +0 -2
  26. data/spec/models/omniauth/rails/authorization_types/regex_spec.rb +0 -2
  27. data/spec/rails_helper_for_engine.rb +1 -1
  28. data/spec/spec_helper.rb +2 -0
  29. data/spec/test_app/app/controllers/private_controller.rb +0 -1
  30. data/spec/test_app/config/application.rb +1 -0
  31. data/spec/test_app/config/omniauth_rails.yml +6 -0
  32. data/spec/test_app/config/routes.rb +0 -3
  33. data/spec/test_app/log/development.log +2333 -0
  34. data/spec/test_app/log/test.log +50737 -0
  35. data/spec/test_app/spec/requests/private_controller_spec.rb +33 -6
  36. data/spec/test_app/spec/requests/sessions_controller_spec.rb +11 -9
  37. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/7w/7wvYXBtPYrpJ0AsySxiCGKfyqkX-mahHfSlLe8bkKLg.cache +1 -0
  38. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Em/EmJbUP6PHR0uxNqWjp0TDKiG2j-89vsmX0dfwbmvzkc.cache +0 -0
  39. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/HS/HScCeVhpnmJmuQX7s7oOUbEmBL2KWC40o78iLC-3e3M.cache +1 -0
  40. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/O7/O7W_v6SN36f1tRfV6clZc10p24T7-Ihb3_totn6VrVA.cache +0 -0
  41. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/S-/S-cHz0vJ4VrdXCUiB5fP9TR5Viz885rz10Wgix-urAA.cache +0 -0
  42. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/WJ/WJhc1q0sGH7WcpvF09oA0iw4iAdiQkHerW6hdCHwxHo.cache +0 -0
  43. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/jK/jK2TgENQlNR4Qvt28Euq9dEK5k_UQuVSbofD4vWeTno.cache +0 -0
  44. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n0/n0Kk2o2xNYUkuiXPYuld9V2t6GRLzY5YfDfnqdfKlRo.cache +1 -0
  45. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/nF/nFB84MNiFDrMN0WelMUdomScBrhYdJ4b8LPhXT3v8C4.cache +1 -0
  46. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/xW/xW2O0qRLEOz9w_8VDiVMAztr-N8UrUvx8v5EEV7mFBU.cache +0 -0
  47. data/spec/test_app/tmp/cache/assets/sprockets/v3.0/yb/ybtAnaaqo1s0ZXeIKLc5sW1EovhL83HYrgFcKGHUa0Q.cache +1 -0
  48. data/spec/test_app/tmp/pids/server.pid +1 -1
  49. metadata +50 -18
@@ -9,6 +9,19 @@ module Omniauth
9
9
  initializer "omniauth_rails.action_controller" do |_app|
10
10
  ActiveSupport.on_load :action_controller do
11
11
  helper Omniauth::Rails::ApplicationHelper
12
+ if Configuration.include_concern_in_application_controller
13
+ ::Rails.logger.info "Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base"
14
+ include Omniauth::Rails::ControllersConcern
15
+ end
16
+ end
17
+ end
18
+
19
+ config.after_initialize do
20
+ if Configuration.automount
21
+ ::Rails.logger.info "Mounting Omniauth::Rails::Engine in Rails.application.routes"
22
+ ::Rails.application.routes.prepend do
23
+ mount Omniauth::Rails::Engine => OmniAuth.config.path_prefix
24
+ end
12
25
  end
13
26
  end
14
27
 
@@ -0,0 +1,20 @@
1
+ # frozen_string_literal: true
2
+ module Omniauth
3
+ module Rails
4
+ module Provider
5
+ PROVIDERS = %w(google_oauth2).freeze
6
+
7
+ PROVIDERS.each do |provider|
8
+ require "omniauth/rails/provider/#{provider}"
9
+ end
10
+
11
+ module_function
12
+
13
+ def configure(provider, config)
14
+ raise "Invalid provider" unless PROVIDERS.include?(provider)
15
+ klass = "Omniauth::Rails::Provider::#{provider.camelize}".constantize
16
+ klass.new(config).configure
17
+ end
18
+ end
19
+ end
20
+ end
@@ -0,0 +1,34 @@
1
+ # frozen_string_literal: true
2
+ module Omniauth
3
+ module Rails
4
+ module Provider
5
+ # See more info here:
6
+ # https://github.com/zquestz/omniauth-google-oauth2/blob/master/README.md
7
+ class GoogleOauth2
8
+ def initialize(config)
9
+ @config = config
10
+ validate!
11
+ end
12
+
13
+ def configure
14
+ client_id = config["client_id"]
15
+ client_secret = config["client_secret"]
16
+ prompt = "none" # none, consent, select_account
17
+ ::Rails.application.config.middleware.use OmniAuth::Builder do
18
+ provider(:google_oauth2, client_id, client_secret,
19
+ access_type: "online", approval_prompt: "auto", prompt: prompt)
20
+ end
21
+ end
22
+
23
+ private
24
+
25
+ attr_reader :config
26
+
27
+ def validate!
28
+ raise "Provider google_oauth2 requires a client_id" unless config["client_id"]
29
+ raise "Provider google_oauth2 requires a client_secret" unless config["client_secret"]
30
+ end
31
+ end
32
+ end
33
+ end
34
+ end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
  module Omniauth
3
3
  module Rails
4
- VERSION = "0.1.0"
4
+ VERSION = "0.2.0"
5
5
  end
6
6
  end
@@ -0,0 +1,8 @@
1
+ # frozen_string_literal: true
2
+
3
+ desc "Run mutant"
4
+ task :mutant do
5
+ cmd = "(cd #{Rails.root}; RAILS_ENV=test bundle exec mutant -r ./config/environment --use rspec " \
6
+ "Omniauth::Rails::* ) 2>&1 | tee #{Rails.root}/../../coverage/mutant.out"
7
+ system(cmd)
8
+ end
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "rails_helper_for_engine"
4
- require_relative "../../app/controllers/omniauth/rails/application_controller"
5
4
 
6
5
  # This empty describe doesn't do anything. But for some reason it convinces
7
6
  # simplecov that the ApplicationController is covered.
@@ -0,0 +1,40 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "rails_helper_for_engine"
4
+
5
+ RSpec.describe Omniauth::Rails::AuthenticationConcern do
6
+ controller(ApplicationController) do
7
+ require_authentication
8
+
9
+ def fake_action
10
+ head :ok
11
+ end
12
+ end
13
+
14
+ before do
15
+ routes.draw do
16
+ get "fake_action" => "anonymous#fake_action"
17
+ end
18
+ end
19
+
20
+ describe "require_authentication" do
21
+ before { get :fake_action }
22
+
23
+ it "redirects" do
24
+ expect(response).to redirect_to("#{OmniAuth.config.path_prefix}/sign_in")
25
+ end
26
+
27
+ context "dev_mode is enabled" do
28
+ around(:each) do |example|
29
+ original_value = Omniauth::Rails::Configuration.dev_mode
30
+ Omniauth::Rails::Configuration.dev_mode = true
31
+ example.run
32
+ Omniauth::Rails::Configuration.dev_mode = original_value
33
+ end
34
+
35
+ it "responds with a 200" do
36
+ expect(response).to have_http_status(:success)
37
+ end
38
+ end
39
+ end
40
+ end
data/spec/examples.txt CHANGED
@@ -1,19 +1,24 @@
1
1
  example_id | status | run_time |
2
2
  ------------------------------------------------------------------------ | ------ | --------------- |
3
3
  ./spec/controllers/application_controller_spec.rb[1:1] | passed | 0.00035 seconds |
4
+ ./spec/controllers/authentication_concern_spec.rb[1:1:1] | passed | 0.01269 seconds |
5
+ ./spec/controllers/authentication_concern_spec.rb[1:1:2:1] | passed | 0.00406 seconds |
6
+ ./spec/lib/omniauth/rails/configurator_spec.rb[1:1:1:1:1] | passed | 0.0006 seconds |
4
7
  ./spec/models/omniauth/rails/authorization_types/emails_spec.rb[1:1:1:1] | passed | 0.00009 seconds |
5
- ./spec/models/omniauth/rails/authorization_types/emails_spec.rb[1:1:2:1] | passed | 0.00051 seconds |
6
- ./spec/models/omniauth/rails/authorization_types/regex_spec.rb[1:1:1:1] | passed | 0.00019 seconds |
7
- ./spec/models/omniauth/rails/authorization_types/regex_spec.rb[1:1:2:1] | passed | 0.00012 seconds |
8
- ./spec/omniauth_rails_spec.rb[1:1] | passed | 0.00043 seconds |
9
- ./spec/test_app/spec/controllers/private_controller_spec.rb[1:1:1:1] | passed | 0.00652 seconds |
10
- ./spec/test_app/spec/requests/private_controller_spec.rb[1:1:1:1] | passed | 0.01215 seconds |
11
- ./spec/test_app/spec/requests/private_controller_spec.rb[1:1:2:1] | passed | 0.17193 seconds |
12
- ./spec/test_app/spec/requests/public_controller_spec.rb[1:1:1] | passed | 0.00821 seconds |
13
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:1:1] | passed | 0.00263 seconds |
14
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:1:2:1] | passed | 0.00228 seconds |
15
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:2:1:1] | passed | 0.01283 seconds |
16
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:2:1:2:1] | passed | 0.0042 seconds |
17
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:1:1] | passed | 0.00124 seconds |
18
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:2:1] | passed | 0.0011 seconds |
19
- ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:3:1] | passed | 0.00288 seconds |
8
+ ./spec/models/omniauth/rails/authorization_types/emails_spec.rb[1:1:2:1] | passed | 0.00044 seconds |
9
+ ./spec/models/omniauth/rails/authorization_types/regex_spec.rb[1:1:1:1] | passed | 0.00015 seconds |
10
+ ./spec/models/omniauth/rails/authorization_types/regex_spec.rb[1:1:2:1] | passed | 0.00013 seconds |
11
+ ./spec/omniauth_rails_spec.rb[1:1] | passed | 0.00054 seconds |
12
+ ./spec/test_app/spec/controllers/private_controller_spec.rb[1:1:1:1] | passed | 0.00635 seconds |
13
+ ./spec/test_app/spec/requests/private_controller_spec.rb[1:1:1:1] | passed | 0.00877 seconds |
14
+ ./spec/test_app/spec/requests/private_controller_spec.rb[1:1:1:2:1] | passed | 0.00592 seconds |
15
+ ./spec/test_app/spec/requests/private_controller_spec.rb[1:1:2:1:1] | passed | 0.1632 seconds |
16
+ ./spec/test_app/spec/requests/private_controller_spec.rb[1:1:2:2:1] | passed | 0.01723 seconds |
17
+ ./spec/test_app/spec/requests/public_controller_spec.rb[1:1:1] | passed | 0.00733 seconds |
18
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:1:1] | passed | 0.00383 seconds |
19
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:1:2:1] | passed | 0.00221 seconds |
20
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:2:1:1] | passed | 0.00963 seconds |
21
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:2:1:2:1] | passed | 0.00395 seconds |
22
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:1:1] | passed | 0.00113 seconds |
23
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:2:1] | passed | 0.00123 seconds |
24
+ ./spec/test_app/spec/requests/sessions_controller_spec.rb[1:3:3:1] | passed | 0.00275 seconds |
@@ -0,0 +1,45 @@
1
+ # frozen_string_literal: true
2
+
3
+ require "rails_helper_for_engine"
4
+
5
+ RSpec.describe Omniauth::Rails::Configurator do
6
+ let(:required_data) do
7
+ {
8
+ "unauthenticated_root" => "/",
9
+ "authenticated_root" => "/",
10
+ "providers" => {
11
+ "google_oauth2" => {
12
+ "client_id" => 1,
13
+ "client_secret" => 1,
14
+ },
15
+ },
16
+ }
17
+ end
18
+
19
+ let(:data) { required_data }
20
+ let(:configurator) { Omniauth::Rails::Configurator.new(data) }
21
+
22
+ describe "#configure" do
23
+ context "dev_mode is true" do
24
+ let(:data) { required_data.merge("dev_mode" => true) }
25
+
26
+ context "dev_mode is allowed" do
27
+ around(:each) do |example|
28
+ path_prefix = OmniAuth.config.path_prefix
29
+ example.run
30
+ # Put it back to the initial value
31
+ Omniauth::Rails::Configuration.dev_mode = false
32
+ OmniAuth.config.path_prefix = path_prefix
33
+ end
34
+
35
+ it "sets Configuration.dev_mode = true" do
36
+ expect(configurator).to receive(:configure_providers)
37
+ expect(::Rails).to receive(:env).and_return(ActiveSupport::StringInquirer.new("development"))
38
+
39
+ configurator.configure
40
+ expect(Omniauth::Rails::Configuration.dev_mode).to eq(true)
41
+ end
42
+ end
43
+ end
44
+ end
45
+ end
@@ -1,8 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "rails_helper_for_engine"
4
- require_relative "../../../../../app/models/omniauth/rails/authorization_types/base"
5
- require_relative "../../../../../app/models/omniauth/rails/authorization_types/emails"
6
4
 
7
5
  RSpec.describe Omniauth::Rails::AuthorizationTypes::Emails do
8
6
  let(:email) { "foo@bar.com" }
@@ -1,8 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require "rails_helper_for_engine"
4
- require_relative "../../../../../app/models/omniauth/rails/authorization_types/base"
5
- require_relative "../../../../../app/models/omniauth/rails/authorization_types/regex"
6
4
 
7
5
  RSpec.describe Omniauth::Rails::AuthorizationTypes::Regex do
8
6
  let(:email) { "foo@bar.com" }
@@ -2,7 +2,7 @@
2
2
 
3
3
  # This file is copied to spec/ when you run 'rails generate rspec:install'
4
4
  ENV["RAILS_ENV"] ||= "test"
5
- # require File.expand_path('../../config/environment', __FILE__)
5
+ require File.expand_path("../test_app/config/environment", __FILE__)
6
6
  # Prevent database truncation if the environment is production
7
7
  # abort("The Rails environment is running in production mode!") if Rails.env.production?
8
8
  require "spec_helper"
data/spec/spec_helper.rb CHANGED
@@ -5,6 +5,8 @@
5
5
  ::Omniauth::Rails.send(:remove_const, "VERSION")
6
6
  $LOADED_FEATURES.delete_if { |s| s.include?("omniauth/rails/version") }
7
7
 
8
+ require "codeclimate-test-reporter"
9
+ CodeClimate::TestReporter.start
8
10
  require "simplecov"
9
11
  require "byebug"
10
12
  require "awesome_print" # Useful for debugging
@@ -1,7 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  class PrivateController < ApplicationController
4
- include Omniauth::Rails::RequireAuthorization
5
4
  require_authorization domains: %w(bar.com)
6
5
 
7
6
  def show
@@ -12,6 +12,7 @@ require "action_view/railtie"
12
12
  require "sprockets/railtie"
13
13
 
14
14
  Bundler.require(*Rails.groups)
15
+
15
16
  require "omniauth/rails"
16
17
 
17
18
  module TestApp
@@ -6,6 +6,9 @@ development:
6
6
  authenticated_root: "/private"
7
7
  unauthenticated_root: "/public"
8
8
  session_duration_in_seconds: 5 # The default is 3600 (which is 1 hour)
9
+ # autoload_in_application_controller: true # The default is true
10
+ # path_prefix: "/auth" # The default is "/auth"
11
+ # automount: true # The default is true
9
12
  test:
10
13
  providers:
11
14
  google_oauth2:
@@ -14,3 +17,6 @@ test:
14
17
  authenticated_root: "/private"
15
18
  unauthenticated_root: "/public"
16
19
  session_duration_in_seconds: 5 # The default is 3600 (which is 1 hour)
20
+ # autoload_in_application_controller: true # The default is true
21
+ # path_prefix: "/auth" # The default is "/auth"
22
+ # automount: true # The default is true
@@ -2,7 +2,4 @@
2
2
  Rails.application.routes.draw do
3
3
  get "/public", to: "public#show"
4
4
  get "/private", to: "private#show"
5
-
6
- # TODO: Allow the mounting to be automatic
7
- mount Omniauth::Rails::Engine => "/auth"
8
5
  end
@@ -4449,3 +4449,2336 @@ Processing by PrivateController#show as HTML
4449
4449
  Completed 200 OK in 27996ms (Views: 6.5ms)
4450
4450
 
4451
4451
 
4452
+ Started GET "/public" for ::1 at 2016-09-12 11:44:48 -0600
4453
+ Processing by PublicController#show as HTML
4454
+ Rendering public/show.html.erb within layouts/application
4455
+ Rendered public/show.html.erb within layouts/application (1.2ms)
4456
+ Completed 200 OK in 125ms (Views: 123.6ms)
4457
+
4458
+
4459
+ Started GET "/private" for ::1 at 2016-09-12 11:44:50 -0600
4460
+ Processing by PrivateController#show as HTML
4461
+ Redirected to http://localhost:3000/auth/sign_in
4462
+ Filter chain halted as :require_authentication rendered or redirected
4463
+ Completed 302 Found in 2ms
4464
+
4465
+
4466
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:50 -0600
4467
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4468
+ Redirected to http://localhost:3000/auth/google_oauth2
4469
+ Completed 302 Found in 1ms
4470
+
4471
+
4472
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 11:44:50 -0600
4473
+ (google_oauth2) Request phase initiated.
4474
+ Started GET "/auth/google_oauth2/callback?state=5624c0e0d3b268ad47c38a6a55b5c49e5509ed748bbd9a7c&code=4/fIjJpKkOXQARRG9NXdOQu-6-ywV5quEYXLO_oWYjPYE" for ::1 at 2016-09-12 11:44:50 -0600
4475
+ (google_oauth2) Callback phase initiated.
4476
+ Processing by Omniauth::Rails::SessionsController#create as HTML
4477
+ Parameters: {"state"=>"5624c0e0d3b268ad47c38a6a55b5c49e5509ed748bbd9a7c", "code"=>"4/fIjJpKkOXQARRG9NXdOQu-6-ywV5quEYXLO_oWYjPYE", "provider"=>"google_oauth2"}
4478
+ Redirected to http://localhost:3000/private
4479
+ Completed 302 Found in 3ms
4480
+
4481
+
4482
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4483
+ Processing by PrivateController#show as HTML
4484
+ Redirected to http://localhost:3000/auth/sign_in
4485
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4486
+ Completed 302 Found in 4ms
4487
+
4488
+
4489
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4490
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4491
+ Redirected to http://localhost:3000/private
4492
+ Completed 302 Found in 0ms
4493
+
4494
+
4495
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4496
+ Processing by PrivateController#show as HTML
4497
+ Redirected to http://localhost:3000/auth/sign_in
4498
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4499
+ Completed 302 Found in 1ms
4500
+
4501
+
4502
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4503
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4504
+ Redirected to http://localhost:3000/private
4505
+ Completed 302 Found in 0ms
4506
+
4507
+
4508
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4509
+ Processing by PrivateController#show as HTML
4510
+ Redirected to http://localhost:3000/auth/sign_in
4511
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4512
+ Completed 302 Found in 1ms
4513
+
4514
+
4515
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4516
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4517
+ Redirected to http://localhost:3000/private
4518
+ Completed 302 Found in 0ms
4519
+
4520
+
4521
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4522
+ Processing by PrivateController#show as HTML
4523
+ Redirected to http://localhost:3000/auth/sign_in
4524
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4525
+ Completed 302 Found in 1ms
4526
+
4527
+
4528
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4529
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4530
+ Redirected to http://localhost:3000/private
4531
+ Completed 302 Found in 0ms
4532
+
4533
+
4534
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4535
+ Processing by PrivateController#show as HTML
4536
+ Redirected to http://localhost:3000/auth/sign_in
4537
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4538
+ Completed 302 Found in 1ms
4539
+
4540
+
4541
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4542
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4543
+ Redirected to http://localhost:3000/private
4544
+ Completed 302 Found in 0ms
4545
+
4546
+
4547
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4548
+ Processing by PrivateController#show as HTML
4549
+ Redirected to http://localhost:3000/auth/sign_in
4550
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4551
+ Completed 302 Found in 1ms
4552
+
4553
+
4554
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4555
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4556
+ Redirected to http://localhost:3000/private
4557
+ Completed 302 Found in 0ms
4558
+
4559
+
4560
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4561
+ Processing by PrivateController#show as HTML
4562
+ Redirected to http://localhost:3000/auth/sign_in
4563
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4564
+ Completed 302 Found in 1ms
4565
+
4566
+
4567
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4568
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4569
+ Redirected to http://localhost:3000/private
4570
+ Completed 302 Found in 0ms
4571
+
4572
+
4573
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4574
+ Processing by PrivateController#show as HTML
4575
+ Redirected to http://localhost:3000/auth/sign_in
4576
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4577
+ Completed 302 Found in 1ms
4578
+
4579
+
4580
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4581
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4582
+ Redirected to http://localhost:3000/private
4583
+ Completed 302 Found in 1ms
4584
+
4585
+
4586
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4587
+ Processing by PrivateController#show as HTML
4588
+ Redirected to http://localhost:3000/auth/sign_in
4589
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4590
+ Completed 302 Found in 1ms
4591
+
4592
+
4593
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4594
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4595
+ Redirected to http://localhost:3000/private
4596
+ Completed 302 Found in 0ms
4597
+
4598
+
4599
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4600
+ Processing by PrivateController#show as HTML
4601
+ Redirected to http://localhost:3000/auth/sign_in
4602
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4603
+ Completed 302 Found in 1ms
4604
+
4605
+
4606
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4607
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4608
+ Redirected to http://localhost:3000/private
4609
+ Completed 302 Found in 1ms
4610
+
4611
+
4612
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4613
+ Processing by PrivateController#show as HTML
4614
+ Redirected to http://localhost:3000/auth/sign_in
4615
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4616
+ Completed 302 Found in 1ms
4617
+
4618
+
4619
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4620
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4621
+ Redirected to http://localhost:3000/private
4622
+ Completed 302 Found in 1ms
4623
+
4624
+
4625
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4626
+ Processing by PrivateController#show as HTML
4627
+ Redirected to http://localhost:3000/auth/sign_in
4628
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4629
+ Completed 302 Found in 1ms
4630
+
4631
+
4632
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4633
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4634
+ Redirected to http://localhost:3000/private
4635
+ Completed 302 Found in 0ms
4636
+
4637
+
4638
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4639
+ Processing by PrivateController#show as HTML
4640
+ Redirected to http://localhost:3000/auth/sign_in
4641
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4642
+ Completed 302 Found in 1ms
4643
+
4644
+
4645
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4646
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4647
+ Redirected to http://localhost:3000/private
4648
+ Completed 302 Found in 0ms
4649
+
4650
+
4651
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4652
+ Processing by PrivateController#show as HTML
4653
+ Redirected to http://localhost:3000/auth/sign_in
4654
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4655
+ Completed 302 Found in 1ms
4656
+
4657
+
4658
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4659
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4660
+ Redirected to http://localhost:3000/private
4661
+ Completed 302 Found in 0ms
4662
+
4663
+
4664
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4665
+ Processing by PrivateController#show as HTML
4666
+ Redirected to http://localhost:3000/auth/sign_in
4667
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4668
+ Completed 302 Found in 24ms
4669
+
4670
+
4671
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4672
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4673
+ Redirected to http://localhost:3000/private
4674
+ Completed 302 Found in 1ms
4675
+
4676
+
4677
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4678
+ Processing by PrivateController#show as HTML
4679
+ Redirected to http://localhost:3000/auth/sign_in
4680
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4681
+ Completed 302 Found in 1ms
4682
+
4683
+
4684
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4685
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4686
+ Redirected to http://localhost:3000/private
4687
+ Completed 302 Found in 1ms
4688
+
4689
+
4690
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4691
+ Processing by PrivateController#show as HTML
4692
+ Redirected to http://localhost:3000/auth/sign_in
4693
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4694
+ Completed 302 Found in 1ms
4695
+
4696
+
4697
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4698
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4699
+ Redirected to http://localhost:3000/private
4700
+ Completed 302 Found in 0ms
4701
+
4702
+
4703
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4704
+ Processing by PrivateController#show as HTML
4705
+ Redirected to http://localhost:3000/auth/sign_in
4706
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4707
+ Completed 302 Found in 1ms
4708
+
4709
+
4710
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:53 -0600
4711
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4712
+ Redirected to http://localhost:3000/private
4713
+ Completed 302 Found in 0ms
4714
+
4715
+
4716
+ Started GET "/private" for ::1 at 2016-09-12 11:44:53 -0600
4717
+ Processing by PrivateController#show as HTML
4718
+ Redirected to http://localhost:3000/auth/sign_in
4719
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4720
+ Completed 302 Found in 1ms
4721
+
4722
+
4723
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4724
+ Processing by PrivateController#show as HTML
4725
+ Redirected to http://localhost:3000/auth/sign_in
4726
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4727
+ Completed 302 Found in 1ms
4728
+
4729
+
4730
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4731
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4732
+ Redirected to http://localhost:3000/private
4733
+ Completed 302 Found in 1ms
4734
+
4735
+
4736
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4737
+ Processing by PrivateController#show as HTML
4738
+ Redirected to http://localhost:3000/auth/sign_in
4739
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4740
+ Completed 302 Found in 2ms
4741
+
4742
+
4743
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4744
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4745
+ Redirected to http://localhost:3000/private
4746
+ Completed 302 Found in 1ms
4747
+
4748
+
4749
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4750
+ Processing by PrivateController#show as HTML
4751
+ Redirected to http://localhost:3000/auth/sign_in
4752
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4753
+ Completed 302 Found in 1ms
4754
+
4755
+
4756
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4757
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4758
+ Redirected to http://localhost:3000/private
4759
+ Completed 302 Found in 1ms
4760
+
4761
+
4762
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4763
+ Processing by PrivateController#show as HTML
4764
+ Redirected to http://localhost:3000/auth/sign_in
4765
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4766
+ Completed 302 Found in 1ms
4767
+
4768
+
4769
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4770
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4771
+ Redirected to http://localhost:3000/private
4772
+ Completed 302 Found in 0ms
4773
+
4774
+
4775
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4776
+ Processing by PrivateController#show as HTML
4777
+ Redirected to http://localhost:3000/auth/sign_in
4778
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4779
+ Completed 302 Found in 1ms
4780
+
4781
+
4782
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4783
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4784
+ Redirected to http://localhost:3000/private
4785
+ Completed 302 Found in 0ms
4786
+
4787
+
4788
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4789
+ Processing by PrivateController#show as HTML
4790
+ Redirected to http://localhost:3000/auth/sign_in
4791
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4792
+ Completed 302 Found in 1ms
4793
+
4794
+
4795
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4796
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4797
+ Redirected to http://localhost:3000/private
4798
+ Completed 302 Found in 1ms
4799
+
4800
+
4801
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4802
+ Processing by PrivateController#show as HTML
4803
+ Redirected to http://localhost:3000/auth/sign_in
4804
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4805
+ Completed 302 Found in 1ms
4806
+
4807
+
4808
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4809
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4810
+ Redirected to http://localhost:3000/private
4811
+ Completed 302 Found in 0ms
4812
+
4813
+
4814
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4815
+ Processing by PrivateController#show as HTML
4816
+ Redirected to http://localhost:3000/auth/sign_in
4817
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4818
+ Completed 302 Found in 1ms
4819
+
4820
+
4821
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4822
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4823
+ Redirected to http://localhost:3000/private
4824
+ Completed 302 Found in 0ms
4825
+
4826
+
4827
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4828
+ Processing by PrivateController#show as HTML
4829
+ Redirected to http://localhost:3000/auth/sign_in
4830
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4831
+ Completed 302 Found in 1ms
4832
+
4833
+
4834
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4835
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4836
+ Redirected to http://localhost:3000/private
4837
+ Completed 302 Found in 0ms
4838
+
4839
+
4840
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4841
+ Processing by PrivateController#show as HTML
4842
+ Redirected to http://localhost:3000/auth/sign_in
4843
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4844
+ Completed 302 Found in 1ms
4845
+
4846
+
4847
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:44:58 -0600
4848
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4849
+ Redirected to http://localhost:3000/private
4850
+ Completed 302 Found in 0ms
4851
+
4852
+
4853
+ Started GET "/private" for ::1 at 2016-09-12 11:44:58 -0600
4854
+ Processing by PrivateController#show as HTML
4855
+ Redirected to http://localhost:3000/auth/sign_in
4856
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4857
+ Completed 302 Found in 1ms
4858
+
4859
+
4860
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:03 -0600
4861
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4862
+ Redirected to http://localhost:3000/auth/google_oauth2
4863
+ Completed 302 Found in 1ms
4864
+
4865
+
4866
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 11:45:03 -0600
4867
+ (google_oauth2) Request phase initiated.
4868
+ Started GET "/auth/google_oauth2/callback?state=1b10a485b5ad8fefd4e9b74bb292dc3bf6d5fc5bd505e38b&code=4/85bw62eNOvSW4FIIMW2NNZk6kXuNRFDBR6N-EidhiH4" for ::1 at 2016-09-12 11:45:04 -0600
4869
+ (google_oauth2) Callback phase initiated.
4870
+ Processing by Omniauth::Rails::SessionsController#create as HTML
4871
+ Parameters: {"state"=>"1b10a485b5ad8fefd4e9b74bb292dc3bf6d5fc5bd505e38b", "code"=>"4/85bw62eNOvSW4FIIMW2NNZk6kXuNRFDBR6N-EidhiH4", "provider"=>"google_oauth2"}
4872
+ Redirected to http://localhost:3000/private
4873
+ Completed 302 Found in 0ms
4874
+
4875
+
4876
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4877
+ Processing by PrivateController#show as HTML
4878
+ Redirected to http://localhost:3000/auth/sign_in
4879
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4880
+ Completed 302 Found in 1ms
4881
+
4882
+
4883
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4884
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4885
+ Redirected to http://localhost:3000/private
4886
+ Completed 302 Found in 0ms
4887
+
4888
+
4889
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4890
+ Processing by PrivateController#show as HTML
4891
+ Redirected to http://localhost:3000/auth/sign_in
4892
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4893
+ Completed 302 Found in 1ms
4894
+
4895
+
4896
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4897
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4898
+ Redirected to http://localhost:3000/private
4899
+ Completed 302 Found in 0ms
4900
+
4901
+
4902
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4903
+ Processing by PrivateController#show as HTML
4904
+ Redirected to http://localhost:3000/auth/sign_in
4905
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4906
+ Completed 302 Found in 1ms
4907
+
4908
+
4909
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4910
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4911
+ Redirected to http://localhost:3000/private
4912
+ Completed 302 Found in 0ms
4913
+
4914
+
4915
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4916
+ Processing by PrivateController#show as HTML
4917
+ Redirected to http://localhost:3000/auth/sign_in
4918
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4919
+ Completed 302 Found in 1ms
4920
+
4921
+
4922
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4923
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4924
+ Redirected to http://localhost:3000/private
4925
+ Completed 302 Found in 0ms
4926
+
4927
+
4928
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4929
+ Processing by PrivateController#show as HTML
4930
+ Redirected to http://localhost:3000/auth/sign_in
4931
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4932
+ Completed 302 Found in 1ms
4933
+
4934
+
4935
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4936
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4937
+ Redirected to http://localhost:3000/private
4938
+ Completed 302 Found in 0ms
4939
+
4940
+
4941
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4942
+ Processing by PrivateController#show as HTML
4943
+ Redirected to http://localhost:3000/auth/sign_in
4944
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4945
+ Completed 302 Found in 1ms
4946
+
4947
+
4948
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4949
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4950
+ Redirected to http://localhost:3000/private
4951
+ Completed 302 Found in 0ms
4952
+
4953
+
4954
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4955
+ Processing by PrivateController#show as HTML
4956
+ Redirected to http://localhost:3000/auth/sign_in
4957
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4958
+ Completed 302 Found in 1ms
4959
+
4960
+
4961
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4962
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4963
+ Redirected to http://localhost:3000/private
4964
+ Completed 302 Found in 1ms
4965
+
4966
+
4967
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4968
+ Processing by PrivateController#show as HTML
4969
+ Redirected to http://localhost:3000/auth/sign_in
4970
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4971
+ Completed 302 Found in 1ms
4972
+
4973
+
4974
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:04 -0600
4975
+ Processing by Omniauth::Rails::SessionsController#new as HTML
4976
+ Redirected to http://localhost:3000/private
4977
+ Completed 302 Found in 0ms
4978
+
4979
+
4980
+ Started GET "/private" for ::1 at 2016-09-12 11:45:04 -0600
4981
+ Processing by PrivateController#show as HTML
4982
+ Redirected to http://localhost:3000/auth/sign_in
4983
+ Filter chain halted as #<Proc:0x007fa324a07ae8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
4984
+ Completed 302 Found in 1ms
4985
+
4986
+
4987
+ Started GET "/" for ::1 at 2016-09-12 11:45:47 -0600
4988
+ Processing by Rails::WelcomeController#index as HTML
4989
+ Parameters: {"internal"=>true}
4990
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
4991
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (3.1ms)
4992
+ Completed 200 OK in 9ms (Views: 6.9ms)
4993
+
4994
+
4995
+ Started GET "/public" for ::1 at 2016-09-12 11:45:49 -0600
4996
+ Processing by PublicController#show as HTML
4997
+ Rendering public/show.html.erb within layouts/application
4998
+ Rendered public/show.html.erb within layouts/application (0.3ms)
4999
+ Completed 200 OK in 127ms (Views: 126.2ms)
5000
+
5001
+
5002
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5003
+ Processing by PrivateController#show as HTML
5004
+ Redirected to http://localhost:3000/auth/sign_in
5005
+ Filter chain halted as :require_authentication rendered or redirected
5006
+ Completed 302 Found in 2ms
5007
+
5008
+
5009
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5010
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5011
+ Redirected to http://localhost:3000/auth/google_oauth2
5012
+ Completed 302 Found in 1ms
5013
+
5014
+
5015
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 11:45:51 -0600
5016
+ (google_oauth2) Request phase initiated.
5017
+ Started GET "/auth/google_oauth2/callback?state=7264c796c44d08385fe4b5316541ebeb582ad56150813696&code=4/n66gTwZokzP8yo4ePi4-IlwdN-gJN60oAxssrgPdSjw" for ::1 at 2016-09-12 11:45:51 -0600
5018
+ (google_oauth2) Callback phase initiated.
5019
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5020
+ Parameters: {"state"=>"7264c796c44d08385fe4b5316541ebeb582ad56150813696", "code"=>"4/n66gTwZokzP8yo4ePi4-IlwdN-gJN60oAxssrgPdSjw", "provider"=>"google_oauth2"}
5021
+ Redirected to http://localhost:3000/private
5022
+ Completed 302 Found in 1ms
5023
+
5024
+
5025
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5026
+ Processing by PrivateController#show as HTML
5027
+ Redirected to http://localhost:3000/auth/sign_in
5028
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5029
+ Completed 302 Found in 4ms
5030
+
5031
+
5032
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5033
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5034
+ Redirected to http://localhost:3000/private
5035
+ Completed 302 Found in 0ms
5036
+
5037
+
5038
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5039
+ Processing by PrivateController#show as HTML
5040
+ Redirected to http://localhost:3000/auth/sign_in
5041
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5042
+ Completed 302 Found in 1ms
5043
+
5044
+
5045
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5046
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5047
+ Redirected to http://localhost:3000/private
5048
+ Completed 302 Found in 0ms
5049
+
5050
+
5051
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5052
+ Processing by PrivateController#show as HTML
5053
+ Redirected to http://localhost:3000/auth/sign_in
5054
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5055
+ Completed 302 Found in 1ms
5056
+
5057
+
5058
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5059
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5060
+ Redirected to http://localhost:3000/private
5061
+ Completed 302 Found in 0ms
5062
+
5063
+
5064
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5065
+ Processing by PrivateController#show as HTML
5066
+ Redirected to http://localhost:3000/auth/sign_in
5067
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5068
+ Completed 302 Found in 1ms
5069
+
5070
+
5071
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5072
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5073
+ Redirected to http://localhost:3000/private
5074
+ Completed 302 Found in 1ms
5075
+
5076
+
5077
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5078
+ Processing by PrivateController#show as HTML
5079
+ Redirected to http://localhost:3000/auth/sign_in
5080
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5081
+ Completed 302 Found in 1ms
5082
+
5083
+
5084
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5085
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5086
+ Redirected to http://localhost:3000/private
5087
+ Completed 302 Found in 0ms
5088
+
5089
+
5090
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5091
+ Processing by PrivateController#show as HTML
5092
+ Redirected to http://localhost:3000/auth/sign_in
5093
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5094
+ Completed 302 Found in 1ms
5095
+
5096
+
5097
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5098
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5099
+ Redirected to http://localhost:3000/private
5100
+ Completed 302 Found in 0ms
5101
+
5102
+
5103
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5104
+ Processing by PrivateController#show as HTML
5105
+ Redirected to http://localhost:3000/auth/sign_in
5106
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5107
+ Completed 302 Found in 1ms
5108
+
5109
+
5110
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5111
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5112
+ Redirected to http://localhost:3000/private
5113
+ Completed 302 Found in 0ms
5114
+
5115
+
5116
+ Started GET "/private" for ::1 at 2016-09-12 11:45:51 -0600
5117
+ Processing by PrivateController#show as HTML
5118
+ Redirected to http://localhost:3000/auth/sign_in
5119
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5120
+ Completed 302 Found in 1ms
5121
+
5122
+
5123
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:51 -0600
5124
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5125
+ Redirected to http://localhost:3000/private
5126
+ Completed 302 Found in 0ms
5127
+
5128
+
5129
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5130
+ Processing by PrivateController#show as HTML
5131
+ Redirected to http://localhost:3000/auth/sign_in
5132
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5133
+ Completed 302 Found in 1ms
5134
+
5135
+
5136
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5137
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5138
+ Redirected to http://localhost:3000/private
5139
+ Completed 302 Found in 0ms
5140
+
5141
+
5142
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5143
+ Processing by PrivateController#show as HTML
5144
+ Redirected to http://localhost:3000/auth/sign_in
5145
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5146
+ Completed 302 Found in 1ms
5147
+
5148
+
5149
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5150
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5151
+ Redirected to http://localhost:3000/private
5152
+ Completed 302 Found in 1ms
5153
+
5154
+
5155
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5156
+ Processing by PrivateController#show as HTML
5157
+ Redirected to http://localhost:3000/auth/sign_in
5158
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5159
+ Completed 302 Found in 1ms
5160
+
5161
+
5162
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5163
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5164
+ Redirected to http://localhost:3000/private
5165
+ Completed 302 Found in 1ms
5166
+
5167
+
5168
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5169
+ Processing by PrivateController#show as HTML
5170
+ Redirected to http://localhost:3000/auth/sign_in
5171
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5172
+ Completed 302 Found in 1ms
5173
+
5174
+
5175
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5176
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5177
+ Redirected to http://localhost:3000/private
5178
+ Completed 302 Found in 1ms
5179
+
5180
+
5181
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5182
+ Processing by PrivateController#show as HTML
5183
+ Redirected to http://localhost:3000/auth/sign_in
5184
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5185
+ Completed 302 Found in 1ms
5186
+
5187
+
5188
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5189
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5190
+ Redirected to http://localhost:3000/private
5191
+ Completed 302 Found in 0ms
5192
+
5193
+
5194
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5195
+ Processing by PrivateController#show as HTML
5196
+ Redirected to http://localhost:3000/auth/sign_in
5197
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5198
+ Completed 302 Found in 25ms
5199
+
5200
+
5201
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5202
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5203
+ Redirected to http://localhost:3000/private
5204
+ Completed 302 Found in 1ms
5205
+
5206
+
5207
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5208
+ Processing by PrivateController#show as HTML
5209
+ Redirected to http://localhost:3000/auth/sign_in
5210
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5211
+ Completed 302 Found in 1ms
5212
+
5213
+
5214
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5215
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5216
+ Redirected to http://localhost:3000/private
5217
+ Completed 302 Found in 0ms
5218
+
5219
+
5220
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5221
+ Processing by PrivateController#show as HTML
5222
+ Redirected to http://localhost:3000/auth/sign_in
5223
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5224
+ Completed 302 Found in 1ms
5225
+
5226
+
5227
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5228
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5229
+ Redirected to http://localhost:3000/private
5230
+ Completed 302 Found in 1ms
5231
+
5232
+
5233
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5234
+ Processing by PrivateController#show as HTML
5235
+ Redirected to http://localhost:3000/auth/sign_in
5236
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5237
+ Completed 302 Found in 1ms
5238
+
5239
+
5240
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5241
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5242
+ Redirected to http://localhost:3000/private
5243
+ Completed 302 Found in 0ms
5244
+
5245
+
5246
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5247
+ Processing by PrivateController#show as HTML
5248
+ Redirected to http://localhost:3000/auth/sign_in
5249
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5250
+ Completed 302 Found in 1ms
5251
+
5252
+
5253
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:45:52 -0600
5254
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5255
+ Redirected to http://localhost:3000/private
5256
+ Completed 302 Found in 0ms
5257
+
5258
+
5259
+ Started GET "/private" for ::1 at 2016-09-12 11:45:52 -0600
5260
+ Processing by PrivateController#show as HTML
5261
+ Redirected to http://localhost:3000/auth/sign_in
5262
+ Filter chain halted as #<Proc:0x007fe47bb5bc08@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/require_authorization.rb:15> rendered or redirected
5263
+ Completed 302 Found in 1ms
5264
+
5265
+
5266
+ Started GET "/private" for ::1 at 2016-09-12 11:49:36 -0600
5267
+ Processing by PrivateController#show as HTML
5268
+ Redirected to http://localhost:3000/auth/sign_in
5269
+ Filter chain halted as :require_authentication rendered or redirected
5270
+ Completed 302 Found in 11ms
5271
+
5272
+
5273
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 11:49:36 -0600
5274
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5275
+ Redirected to http://localhost:3000/auth/google_oauth2
5276
+ Completed 302 Found in 1ms
5277
+
5278
+
5279
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 11:49:36 -0600
5280
+ (google_oauth2) Request phase initiated.
5281
+ Started GET "/auth/google_oauth2/callback?state=889b2da3ca9cd3b45883e8949c1a42e70da45d38352c9b99&code=4/uy5Tjl2_v5hZr5nmCQqlKPWiPPDRSeE6b1aiqFoBX-0" for ::1 at 2016-09-12 11:49:36 -0600
5282
+ (google_oauth2) Callback phase initiated.
5283
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5284
+ Parameters: {"state"=>"889b2da3ca9cd3b45883e8949c1a42e70da45d38352c9b99", "code"=>"4/uy5Tjl2_v5hZr5nmCQqlKPWiPPDRSeE6b1aiqFoBX-0", "provider"=>"google_oauth2"}
5285
+ Redirected to http://localhost:3000/private
5286
+ Completed 302 Found in 1ms
5287
+
5288
+
5289
+ Started GET "/private" for ::1 at 2016-09-12 11:49:39 -0600
5290
+ Processing by PrivateController#show as HTML
5291
+ Rendering private/show.html.erb within layouts/application
5292
+ Rendered private/show.html.erb within layouts/application (0.9ms)
5293
+ Completed 200 OK in 109ms (Views: 105.0ms)
5294
+
5295
+
5296
+ Started GET "/private" for ::1 at 2016-09-12 12:37:31 -0600
5297
+ Processing by PrivateController#show as HTML
5298
+ Redirected to http://localhost:3000/auth/sign_in
5299
+ Filter chain halted as :require_authentication rendered or redirected
5300
+ Completed 302 Found in 12ms
5301
+
5302
+
5303
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 12:37:31 -0600
5304
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5305
+ Redirected to http://localhost:3000/auth/google_oauth2
5306
+ Completed 302 Found in 1ms
5307
+
5308
+
5309
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 12:37:31 -0600
5310
+ (google_oauth2) Request phase initiated.
5311
+ Started GET "/auth/google_oauth2/callback?state=b0a83172f36a68d0e01fa4ad1e55db4fea100a48aed5bfbc&code=4/Eo5Rb4hv1PAaaTehlJAmcvn8TqyOKyHC7MQMpT-oNV0" for ::1 at 2016-09-12 12:37:31 -0600
5312
+ (google_oauth2) Callback phase initiated.
5313
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5314
+ Parameters: {"state"=>"b0a83172f36a68d0e01fa4ad1e55db4fea100a48aed5bfbc", "code"=>"4/Eo5Rb4hv1PAaaTehlJAmcvn8TqyOKyHC7MQMpT-oNV0", "provider"=>"google_oauth2"}
5315
+ Redirected to http://localhost:3000/private
5316
+ Completed 302 Found in 1ms
5317
+
5318
+
5319
+ Started GET "/private" for ::1 at 2016-09-12 12:37:33 -0600
5320
+ Processing by PrivateController#show as HTML
5321
+ Completed 500 Internal Server Error in 21ms
5322
+
5323
+
5324
+
5325
+ ActionView::MissingTemplate (Missing template shared/forbidden with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :svg, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip, :gzip], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby]}. Searched in:
5326
+ * "/Users/danrabinowitz/code/omniauth-rails/spec/test_app/app/views"
5327
+ * "/Users/danrabinowitz/code/omniauth-rails/app/views"
5328
+ ):
5329
+
5330
+ actionview (5.0.0.1) lib/action_view/path_set.rb:46:in `find'
5331
+ actionview (5.0.0.1) lib/action_view/lookup_context.rb:122:in `find'
5332
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
5333
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
5334
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
5335
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
5336
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
5337
+ actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
5338
+ actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
5339
+ actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
5340
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
5341
+ actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
5342
+ actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
5343
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
5344
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
5345
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
5346
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
5347
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
5348
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
5349
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
5350
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
5351
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:31:in `render_403_forbidden'
5352
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:21:in `require_authorization'
5353
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:14:in `block in require_authorization'
5354
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
5355
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
5356
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
5357
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
5358
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
5359
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
5360
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
5361
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
5362
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
5363
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
5364
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
5365
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
5366
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
5367
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
5368
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
5369
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
5370
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
5371
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
5372
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
5373
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
5374
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
5375
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
5376
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
5377
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
5378
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
5379
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
5380
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
5381
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
5382
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
5383
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
5384
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
5385
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
5386
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
5387
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
5388
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
5389
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
5390
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
5391
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
5392
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
5393
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
5394
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
5395
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
5396
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
5397
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5398
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
5399
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
5400
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
5401
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
5402
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
5403
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
5404
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
5405
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
5406
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
5407
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
5408
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
5409
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
5410
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
5411
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5412
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
5413
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
5414
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
5415
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
5416
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
5417
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
5418
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
5419
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout
5420
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
5421
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.6ms)
5422
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
5423
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
5424
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
5425
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
5426
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (45.6ms)
5427
+ Started GET "/private" for ::1 at 2016-09-12 12:38:09 -0600
5428
+ Processing by PrivateController#show as HTML
5429
+ Redirected to http://localhost:3000/auth/sign_in
5430
+ Filter chain halted as :require_authentication rendered or redirected
5431
+ Completed 302 Found in 2ms
5432
+
5433
+
5434
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 12:38:09 -0600
5435
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5436
+ Redirected to http://localhost:3000/auth/google_oauth2
5437
+ Completed 302 Found in 1ms
5438
+
5439
+
5440
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 12:38:09 -0600
5441
+ (google_oauth2) Request phase initiated.
5442
+ Started GET "/auth/google_oauth2/callback?state=2b2b9938f5423d0bcbee84007e7e4bef62a13538ede4a671&code=4/ZFt1i3X9QP7G1Y6gs9yS21cYZLdZylPPKCJPhM3qR_g" for ::1 at 2016-09-12 12:38:09 -0600
5443
+ (google_oauth2) Callback phase initiated.
5444
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5445
+ Parameters: {"state"=>"2b2b9938f5423d0bcbee84007e7e4bef62a13538ede4a671", "code"=>"4/ZFt1i3X9QP7G1Y6gs9yS21cYZLdZylPPKCJPhM3qR_g", "provider"=>"google_oauth2"}
5446
+ Redirected to http://localhost:3000/private
5447
+ Completed 302 Found in 1ms
5448
+
5449
+
5450
+ Started GET "/private" for ::1 at 2016-09-12 12:38:10 -0600
5451
+ Processing by PrivateController#show as HTML
5452
+ Completed 500 Internal Server Error in 30ms
5453
+
5454
+
5455
+
5456
+ ActionView::MissingTemplate (Missing template private/forbidden, application/forbidden with {:locale=>[:en], :formats=>[:html, :text, :js, :css, :ics, :csv, :vcf, :png, :jpeg, :gif, :bmp, :tiff, :svg, :mpeg, :xml, :rss, :atom, :yaml, :multipart_form, :url_encoded_form, :json, :pdf, :zip, :gzip], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby]}. Searched in:
5457
+ * "/Users/danrabinowitz/code/omniauth-rails/spec/test_app/app/views"
5458
+ * "/Users/danrabinowitz/code/omniauth-rails/app/views"
5459
+ ):
5460
+
5461
+ actionview (5.0.0.1) lib/action_view/path_set.rb:46:in `find'
5462
+ actionview (5.0.0.1) lib/action_view/lookup_context.rb:122:in `find'
5463
+ actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
5464
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
5465
+ actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
5466
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
5467
+ actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
5468
+ actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
5469
+ actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
5470
+ actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
5471
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
5472
+ actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
5473
+ actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
5474
+ actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
5475
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
5476
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
5477
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
5478
+ activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
5479
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
5480
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
5481
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
5482
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:31:in `render_403_forbidden'
5483
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:21:in `require_authorization'
5484
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:14:in `block in require_authorization'
5485
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
5486
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
5487
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
5488
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
5489
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
5490
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
5491
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
5492
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
5493
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
5494
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
5495
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
5496
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
5497
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
5498
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
5499
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
5500
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
5501
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
5502
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
5503
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
5504
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
5505
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
5506
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
5507
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
5508
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
5509
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
5510
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
5511
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
5512
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
5513
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
5514
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
5515
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
5516
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
5517
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
5518
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
5519
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
5520
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
5521
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
5522
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
5523
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
5524
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
5525
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
5526
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
5527
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
5528
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5529
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
5530
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
5531
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
5532
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
5533
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
5534
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
5535
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
5536
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
5537
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
5538
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
5539
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
5540
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
5541
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
5542
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5543
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
5544
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
5545
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
5546
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
5547
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
5548
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
5549
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
5550
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout
5551
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
5552
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.6ms)
5553
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
5554
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
5555
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
5556
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.6ms)
5557
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (35.1ms)
5558
+ Started GET "/private" for ::1 at 2016-09-12 12:38:50 -0600
5559
+ Processing by PrivateController#show as HTML
5560
+ Redirected to http://localhost:3000/auth/sign_in
5561
+ Filter chain halted as :require_authentication rendered or redirected
5562
+ Completed 302 Found in 2ms
5563
+
5564
+
5565
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 12:38:50 -0600
5566
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5567
+ Redirected to http://localhost:3000/auth/google_oauth2
5568
+ Completed 302 Found in 1ms
5569
+
5570
+
5571
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 12:38:50 -0600
5572
+ (google_oauth2) Request phase initiated.
5573
+ Started GET "/auth/google_oauth2/callback?state=053aef96071138edf6060b3ad99ae0b40a6ae2dc18f8fb95&code=4/v2fsN5630YwnBv8CfdffnkKBK6wKJpEtYvR29T7E1mw" for ::1 at 2016-09-12 12:38:50 -0600
5574
+ (google_oauth2) Callback phase initiated.
5575
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5576
+ Parameters: {"state"=>"053aef96071138edf6060b3ad99ae0b40a6ae2dc18f8fb95", "code"=>"4/v2fsN5630YwnBv8CfdffnkKBK6wKJpEtYvR29T7E1mw", "provider"=>"google_oauth2"}
5577
+ Redirected to http://localhost:3000/private
5578
+ Completed 302 Found in 1ms
5579
+
5580
+
5581
+ Started GET "/private" for ::1 at 2016-09-12 12:38:52 -0600
5582
+ Processing by PrivateController#show as HTML
5583
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html within layouts/application
5584
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html within layouts/application (0.2ms)
5585
+ Filter chain halted as #<Proc:0x007ff42ad70958@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:14> rendered or redirected
5586
+ Completed 403 Forbidden in 167ms (Views: 164.6ms)
5587
+
5588
+
5589
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 12:38:52 -0600
5590
+ Started GET "/private" for ::1 at 2016-09-12 12:39:02 -0600
5591
+ Processing by PrivateController#show as HTML
5592
+ Redirected to http://localhost:3000/auth/sign_in
5593
+ Filter chain halted as :require_authentication rendered or redirected
5594
+ Completed 302 Found in 3ms
5595
+
5596
+
5597
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 12:39:02 -0600
5598
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5599
+ Redirected to http://localhost:3000/auth/google_oauth2
5600
+ Completed 302 Found in 1ms
5601
+
5602
+
5603
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 12:39:02 -0600
5604
+ (google_oauth2) Request phase initiated.
5605
+ Started GET "/auth/google_oauth2/callback?state=83bf68e24c032f4b2b2f6d6b43cae63afd776fc9fd04815e&code=4/CDNv5NJjyWCvcGb5G9-GbYVOUwcpXJfVquNFU8SimW4" for ::1 at 2016-09-12 12:39:02 -0600
5606
+ (google_oauth2) Callback phase initiated.
5607
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5608
+ Parameters: {"state"=>"83bf68e24c032f4b2b2f6d6b43cae63afd776fc9fd04815e", "code"=>"4/CDNv5NJjyWCvcGb5G9-GbYVOUwcpXJfVquNFU8SimW4", "provider"=>"google_oauth2"}
5609
+ Redirected to http://localhost:3000/private
5610
+ Completed 302 Found in 1ms
5611
+
5612
+
5613
+ Started GET "/private" for ::1 at 2016-09-12 12:39:02 -0600
5614
+ Processing by PrivateController#show as HTML
5615
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
5616
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
5617
+ Filter chain halted as #<Proc:0x007ff42c82b220@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:14> rendered or redirected
5618
+ Completed 403 Forbidden in 16ms (Views: 13.4ms)
5619
+
5620
+
5621
+ Started GET "/deals/1608950-5-for-25-cashback-on-restaurants-plus" for 127.0.0.1 at 2016-09-12 13:01:04 -0600
5622
+
5623
+ ActionController::RoutingError (No route matches [GET] "/deals/1608950-5-for-25-cashback-on-restaurants-plus"):
5624
+
5625
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
5626
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
5627
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
5628
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
5629
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
5630
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
5631
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
5632
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
5633
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
5634
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
5635
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
5636
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
5637
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5638
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
5639
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
5640
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
5641
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
5642
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
5643
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
5644
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
5645
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
5646
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
5647
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (8.2ms)
5648
+ Rendered collection of /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (2.6ms)
5649
+ Rendered collection of /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (0.9ms)
5650
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (18.9ms)
5651
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
5652
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms)
5653
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (94.4ms)
5654
+ Started GET "/private" for ::1 at 2016-09-12 15:50:53 -0600
5655
+
5656
+ ActionController::RoutingError (undefined method `require_authorization' for PrivateController:Class
5657
+ Did you mean? require_relative):
5658
+
5659
+ app/controllers/private_controller.rb:6:in `<class:PrivateController>'
5660
+ app/controllers/private_controller.rb:3:in `<top (required)>'
5661
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
5662
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
5663
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
5664
+ Rendered collection of /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (2.2ms)
5665
+ Rendered collection of /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (0.7ms)
5666
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.6ms)
5667
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
5668
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (9.4ms)
5669
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (80.7ms)
5670
+ Started GET "/private" for ::1 at 2016-09-12 15:51:56 -0600
5671
+
5672
+ ActionController::RoutingError (undefined method `require_authorization' for PrivateController:Class
5673
+ Did you mean? require_relative):
5674
+
5675
+ app/controllers/private_controller.rb:6:in `<class:PrivateController>'
5676
+ app/controllers/private_controller.rb:3:in `<top (required)>'
5677
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout
5678
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
5679
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
5680
+ Rendered collection of /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (2.4ms)
5681
+ Rendered collection of /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb [3 times] (0.7ms)
5682
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.8ms)
5683
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
5684
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.4ms)
5685
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (78.6ms)
5686
+ Started GET "/private" for ::1 at 2016-09-12 16:00:56 -0600
5687
+ Processing by PrivateController#show as HTML
5688
+ Redirected to http://localhost:3000/auth/sign_in
5689
+ Filter chain halted as #<Proc:0x007f96e3628a78@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:14> rendered or redirected
5690
+ Completed 302 Found in 15ms
5691
+
5692
+
5693
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 16:00:56 -0600
5694
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5695
+ Redirected to http://localhost:3000/auth/google_oauth2
5696
+ Completed 302 Found in 1ms
5697
+
5698
+
5699
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 16:00:56 -0600
5700
+ (google_oauth2) Request phase initiated.
5701
+ Started GET "/auth/google_oauth2/callback?state=89997ae39a4807fe9202d9d4a2a053463e73f234fd6229fa&code=4/HobhrdUuRVFpPSnsSIU1F8nNU-hWhCRi861wAJZJ-xk" for ::1 at 2016-09-12 16:00:56 -0600
5702
+ (google_oauth2) Callback phase initiated.
5703
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5704
+ Parameters: {"state"=>"89997ae39a4807fe9202d9d4a2a053463e73f234fd6229fa", "code"=>"4/HobhrdUuRVFpPSnsSIU1F8nNU-hWhCRi861wAJZJ-xk", "provider"=>"google_oauth2"}
5705
+ Redirected to http://localhost:3000/private
5706
+ Completed 302 Found in 3ms
5707
+
5708
+
5709
+ Started GET "/private" for ::1 at 2016-09-12 16:01:00 -0600
5710
+ Processing by PrivateController#show as HTML
5711
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
5712
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (1.3ms)
5713
+ Filter chain halted as #<Proc:0x007f96e3628a78@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:14> rendered or redirected
5714
+ Completed 403 Forbidden in 22ms (Views: 17.6ms)
5715
+
5716
+
5717
+ Started GET "/public" for ::1 at 2016-09-12 16:05:33 -0600
5718
+ Processing by PublicController#show as HTML
5719
+ Rendering public/show.html.erb within layouts/application
5720
+ Rendered public/show.html.erb within layouts/application (0.4ms)
5721
+ Completed 200 OK in 106ms (Views: 103.7ms)
5722
+
5723
+
5724
+ Started GET "/public" for ::1 at 2016-09-12 16:05:47 -0600
5725
+ Processing by PublicController#show as HTML
5726
+ Rendering public/show.html.erb within layouts/application
5727
+ Rendered public/show.html.erb within layouts/application (5.5ms)
5728
+ Completed 200 OK in 224ms (Views: 222.6ms)
5729
+
5730
+
5731
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 16:05:47 -0600
5732
+ Started GET "/public" for ::1 at 2016-09-12 16:06:36 -0600
5733
+ Processing by PublicController#show as HTML
5734
+ Rendering public/show.html.erb within layouts/application
5735
+ Rendered public/show.html.erb within layouts/application (0.9ms)
5736
+ Completed 200 OK in 103ms (Views: 102.3ms)
5737
+
5738
+
5739
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 16:06:36 -0600
5740
+ Autoloading the Omniauth::Rails::ControllersConcern into ActionController::Base
5741
+ Started GET "/public" for ::1 at 2016-09-12 16:11:19 -0600
5742
+ Processing by PublicController#show as HTML
5743
+ Rendering public/show.html.erb within layouts/application
5744
+ Rendered public/show.html.erb within layouts/application (1.0ms)
5745
+ Completed 200 OK in 113ms (Views: 111.6ms)
5746
+
5747
+
5748
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 16:11:20 -0600
5749
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5750
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5751
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
5752
+ Started GET "/public" for ::1 at 2016-09-12 17:50:56 -0600
5753
+ Processing by PublicController#show as HTML
5754
+ Rendering public/show.html.erb within layouts/application
5755
+ Rendered public/show.html.erb within layouts/application (1.4ms)
5756
+ Completed 200 OK in 129ms (Views: 127.1ms)
5757
+
5758
+
5759
+ Started GET "/private" for ::1 at 2016-09-12 17:50:58 -0600
5760
+ Processing by PrivateController#show as HTML
5761
+ Redirected to http://localhost:3000/auth/sign_in
5762
+ Filter chain halted as #<Proc:0x007fc561314420@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5763
+ Completed 302 Found in 2ms
5764
+
5765
+
5766
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 17:50:58 -0600
5767
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5768
+ Redirected to http://localhost:3000/auth/google_oauth2
5769
+ Completed 302 Found in 1ms
5770
+
5771
+
5772
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 17:50:58 -0600
5773
+ (google_oauth2) Request phase initiated.
5774
+ Started GET "/public" for ::1 at 2016-09-12 17:51:09 -0600
5775
+ Processing by PublicController#show as HTML
5776
+ Rendering public/show.html.erb within layouts/application
5777
+ Rendered public/show.html.erb within layouts/application (0.3ms)
5778
+ Completed 200 OK in 6ms (Views: 5.3ms)
5779
+
5780
+
5781
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 17:51:09 -0600
5782
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5783
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
5784
+ Started GET "/public" for ::1 at 2016-09-12 17:52:13 -0600
5785
+ Processing by PublicController#show as HTML
5786
+ Rendering public/show.html.erb within layouts/application
5787
+ Rendered public/show.html.erb within layouts/application (1.3ms)
5788
+ Completed 200 OK in 122ms (Views: 120.9ms)
5789
+
5790
+
5791
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 17:52:13 -0600
5792
+ Started GET "/private" for ::1 at 2016-09-12 17:52:14 -0600
5793
+ Processing by PrivateController#show as HTML
5794
+ Redirected to http://localhost:3000/auth/sign_in
5795
+ Filter chain halted as #<Proc:0x007fd36b68aee8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5796
+ Completed 302 Found in 2ms
5797
+
5798
+
5799
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 17:52:14 -0600
5800
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5801
+ Redirected to http://localhost:3000/auth/google_oauth2
5802
+ Completed 302 Found in 1ms
5803
+
5804
+
5805
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 17:52:14 -0600
5806
+ (google_oauth2) Request phase initiated.
5807
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5808
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5809
+ xxxxxx: Provider::GoogleOauth2: config={"client_id"=>"899370353794-btk6g8pgvvt23f2h7s7665nqi4sk5hv6.apps.googleusercontent.com", "client_secret"=>"sDdeCrF4LdQbPPcKyhCNtQpm"}
5810
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5811
+ xxxxxx: Provider::GoogleOauth2: config={"client_id"=>"899370353794-btk6g8pgvvt23f2h7s7665nqi4sk5hv6.apps.googleusercontent.com", "client_secret"=>"sDdeCrF4LdQbPPcKyhCNtQpm"}
5812
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5813
+ xxxxxx: Provider::GoogleOauth2: config={"client_id"=>"899370353794-btk6g8pgvvt23f2h7s7665nqi4sk5hv6.apps.googleusercontent.com", "client_secret"=>"sDdeCrF4LdQbPPcKyhCNtQpm"}
5814
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5815
+ xxxxxx: Provider::GoogleOauth2: config={"client_id"=>"899370353794-btk6g8pgvvt23f2h7s7665nqi4sk5hv6.apps.googleusercontent.com", "client_secret"=>"sDdeCrF4LdQbPPcKyhCNtQpm"}
5816
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5817
+ xxxxxx: Provider::GoogleOauth2: config={"client_id"=>"899370353794-btk6g8pgvvt23f2h7s7665nqi4sk5hv6.apps.googleusercontent.com", "client_secret"=>"sDdeCrF4LdQbPPcKyhCNtQpm"}
5818
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
5819
+ Started GET "/public" for ::1 at 2016-09-12 17:56:10 -0600
5820
+ Processing by PublicController#show as HTML
5821
+ Rendering public/show.html.erb within layouts/application
5822
+ Rendered public/show.html.erb within layouts/application (1.1ms)
5823
+ Completed 200 OK in 122ms (Views: 120.1ms)
5824
+
5825
+
5826
+ Started GET "/private" for ::1 at 2016-09-12 17:56:11 -0600
5827
+ Processing by PrivateController#show as HTML
5828
+ Redirected to http://localhost:3000/auth/sign_in
5829
+ Filter chain halted as #<Proc:0x007fe5b62d7f78@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5830
+ Completed 302 Found in 2ms
5831
+
5832
+
5833
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 17:56:11 -0600
5834
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5835
+ Redirected to http://localhost:3000/auth/google_oauth2
5836
+ Completed 302 Found in 1ms
5837
+
5838
+
5839
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 17:56:11 -0600
5840
+ (google_oauth2) Request phase initiated.
5841
+ Started GET "/auth/google_oauth2/callback?state=5fd781ae41a7c0b7277736c988528097240879dfd5d2c073&code=4/fJJoNN5YCvz_AoWRoK9u3mDCoDGgKOrK2jBKdF-sFh0" for ::1 at 2016-09-12 17:56:11 -0600
5842
+ (google_oauth2) Callback phase initiated.
5843
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5844
+ Parameters: {"state"=>"5fd781ae41a7c0b7277736c988528097240879dfd5d2c073", "code"=>"4/fJJoNN5YCvz_AoWRoK9u3mDCoDGgKOrK2jBKdF-sFh0", "provider"=>"google_oauth2"}
5845
+ Redirected to http://localhost:3000/private
5846
+ Completed 302 Found in 3ms
5847
+
5848
+
5849
+ Started GET "/private" for ::1 at 2016-09-12 17:56:14 -0600
5850
+ Processing by PrivateController#show as HTML
5851
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
5852
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
5853
+ Filter chain halted as #<Proc:0x007fe5b62d7f78@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5854
+ Completed 403 Forbidden in 19ms (Views: 14.3ms)
5855
+
5856
+
5857
+ Started GET "/private" for ::1 at 2016-09-12 19:42:21 -0600
5858
+ Processing by PrivateController#show as HTML
5859
+ Completed 500 Internal Server Error in 1ms
5860
+
5861
+
5862
+
5863
+ ArgumentError (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
5864
+
5865
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:496:in `load_missing_constant'
5866
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:203:in `const_missing'
5867
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:12:in `authentication_session'
5868
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:5:in `authenticated?'
5869
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authentication_concern.rb:27:in `require_authentication'
5870
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:25:in `require_authorization'
5871
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13:in `block in require_authorization'
5872
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
5873
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
5874
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
5875
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
5876
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
5877
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
5878
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
5879
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
5880
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
5881
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
5882
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
5883
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
5884
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
5885
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
5886
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
5887
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
5888
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
5889
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
5890
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
5891
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
5892
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
5893
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
5894
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
5895
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
5896
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
5897
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
5898
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
5899
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
5900
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
5901
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
5902
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
5903
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
5904
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
5905
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
5906
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
5907
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
5908
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
5909
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
5910
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
5911
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
5912
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
5913
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
5914
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
5915
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5916
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
5917
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
5918
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
5919
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
5920
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
5921
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
5922
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
5923
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
5924
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
5925
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
5926
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
5927
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
5928
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
5929
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
5930
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
5931
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
5932
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
5933
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
5934
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
5935
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
5936
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
5937
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
5938
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
5939
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.6ms)
5940
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
5941
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
5942
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
5943
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
5944
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.2ms)
5945
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
5946
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
5947
+ Started GET "/private" for ::1 at 2016-09-12 19:42:37 -0600
5948
+ Processing by PrivateController#show as HTML
5949
+ Redirected to http://localhost:3000/auth/sign_in
5950
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5951
+ Completed 302 Found in 13ms
5952
+
5953
+
5954
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:42:37 -0600
5955
+ Processing by Omniauth::Rails::SessionsController#new as HTML
5956
+ Redirected to http://localhost:3000/auth/google_oauth2
5957
+ Completed 302 Found in 1ms
5958
+
5959
+
5960
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:42:37 -0600
5961
+ (google_oauth2) Request phase initiated.
5962
+ Started GET "/auth/google_oauth2/callback?state=b742a1fec7eda605191c5aa04830a1bb48d275b59b614884&code=4/7RsEBo8IreirFu_DnEOZIMj-wgYWuMpJWTrePTLKZ1c" for ::1 at 2016-09-12 19:42:42 -0600
5963
+ (google_oauth2) Callback phase initiated.
5964
+ Processing by Omniauth::Rails::SessionsController#create as HTML
5965
+ Parameters: {"state"=>"b742a1fec7eda605191c5aa04830a1bb48d275b59b614884", "code"=>"4/7RsEBo8IreirFu_DnEOZIMj-wgYWuMpJWTrePTLKZ1c", "provider"=>"google_oauth2"}
5966
+ Redirected to http://localhost:3000/private
5967
+ Completed 302 Found in 3ms
5968
+
5969
+
5970
+ Started GET "/private" for ::1 at 2016-09-12 19:42:43 -0600
5971
+ Processing by PrivateController#show as HTML
5972
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
5973
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (1.4ms)
5974
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5975
+ Completed 403 Forbidden in 22ms (Views: 18.3ms)
5976
+
5977
+
5978
+ Started GET "/private" for ::1 at 2016-09-12 19:42:46 -0600
5979
+ Processing by PrivateController#show as HTML
5980
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
5981
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
5982
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5983
+ Completed 403 Forbidden in 17ms (Views: 16.7ms)
5984
+
5985
+
5986
+ Started GET "/public" for ::1 at 2016-09-12 19:42:49 -0600
5987
+ Processing by PublicController#show as HTML
5988
+ Rendering public/show.html.erb within layouts/application
5989
+ Rendered public/show.html.erb within layouts/application (0.3ms)
5990
+ Completed 200 OK in 101ms (Views: 99.3ms)
5991
+
5992
+
5993
+ Started GET "/private" for ::1 at 2016-09-12 19:42:53 -0600
5994
+ Processing by PrivateController#show as HTML
5995
+ Redirected to http://localhost:3000/auth/sign_in
5996
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
5997
+ Completed 302 Found in 1ms
5998
+
5999
+
6000
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:42:53 -0600
6001
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6002
+ Redirected to http://localhost:3000/auth/google_oauth2
6003
+ Completed 302 Found in 1ms
6004
+
6005
+
6006
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:42:53 -0600
6007
+ (google_oauth2) Request phase initiated.
6008
+ Started GET "/auth/google_oauth2/callback?state=43688cdf90df283ca31277bd7a4e48a039e12e31459c8876&code=4/yyQzj5Z1qE_ULmFsq2WRjLA1wt21FvCrejslFtjhu-M" for ::1 at 2016-09-12 19:43:02 -0600
6009
+ (google_oauth2) Callback phase initiated.
6010
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6011
+ Parameters: {"state"=>"43688cdf90df283ca31277bd7a4e48a039e12e31459c8876", "code"=>"4/yyQzj5Z1qE_ULmFsq2WRjLA1wt21FvCrejslFtjhu-M", "provider"=>"google_oauth2"}
6012
+ Redirected to http://localhost:3000/private
6013
+ Completed 302 Found in 0ms
6014
+
6015
+
6016
+ Started GET "/private" for ::1 at 2016-09-12 19:43:02 -0600
6017
+ Processing by PrivateController#show as HTML
6018
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
6019
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
6020
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6021
+ Completed 403 Forbidden in 15ms (Views: 14.5ms)
6022
+
6023
+
6024
+ Started GET "/private" for ::1 at 2016-09-12 19:44:41 -0600
6025
+ Processing by PrivateController#show as HTML
6026
+ Redirected to http://localhost:3000/auth/sign_in
6027
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6028
+ Completed 302 Found in 1ms
6029
+
6030
+
6031
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:44:42 -0600
6032
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6033
+ Redirected to http://localhost:3000/auth/google_oauth2
6034
+ Completed 302 Found in 1ms
6035
+
6036
+
6037
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:44:42 -0600
6038
+ (google_oauth2) Request phase initiated.
6039
+ Started GET "/auth/google_oauth2/callback?state=c5d1a689dbaf65102f9a291a568c69adf4440495f75ced4a&code=4/XmsaKG34HRB2Ws_fFFGZx_c01WHHJ2L2aWvBJ5FbE64" for ::1 at 2016-09-12 19:44:49 -0600
6040
+ (google_oauth2) Callback phase initiated.
6041
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6042
+ Parameters: {"state"=>"c5d1a689dbaf65102f9a291a568c69adf4440495f75ced4a", "code"=>"4/XmsaKG34HRB2Ws_fFFGZx_c01WHHJ2L2aWvBJ5FbE64", "provider"=>"google_oauth2"}
6043
+ Redirected to http://localhost:3000/private
6044
+ Completed 302 Found in 0ms
6045
+
6046
+
6047
+ Started GET "/private" for ::1 at 2016-09-12 19:44:52 -0600
6048
+ Processing by PrivateController#show as HTML
6049
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
6050
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
6051
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6052
+ Completed 403 Forbidden in 14ms (Views: 13.5ms)
6053
+
6054
+
6055
+ Started GET "/private" for ::1 at 2016-09-12 19:45:00 -0600
6056
+ Processing by PrivateController#show as HTML
6057
+ Redirected to http://localhost:3000/auth/sign_in
6058
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6059
+ Completed 302 Found in 1ms
6060
+
6061
+
6062
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:45:00 -0600
6063
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6064
+ Redirected to http://localhost:3000/auth/google_oauth2
6065
+ Completed 302 Found in 0ms
6066
+
6067
+
6068
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:45:00 -0600
6069
+ (google_oauth2) Request phase initiated.
6070
+ Started GET "/auth/google_oauth2/callback?state=12785f7915f892d4ade39d55c586efc69dc3a04f79c3e984&code=4/M0wH7YwNMfOc3KFvBGOC9TYR3Ais-Btwp-tkAi9IXlE" for ::1 at 2016-09-12 19:45:09 -0600
6071
+ (google_oauth2) Callback phase initiated.
6072
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6073
+ Parameters: {"state"=>"12785f7915f892d4ade39d55c586efc69dc3a04f79c3e984", "code"=>"4/M0wH7YwNMfOc3KFvBGOC9TYR3Ais-Btwp-tkAi9IXlE", "provider"=>"google_oauth2"}
6074
+ Redirected to http://localhost:3000/private
6075
+ Completed 302 Found in 0ms
6076
+
6077
+
6078
+ Started GET "/private" for ::1 at 2016-09-12 19:45:10 -0600
6079
+ Processing by PrivateController#show as HTML
6080
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
6081
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.3ms)
6082
+ Filter chain halted as #<Proc:0x007fb7dbe09148@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6083
+ Completed 403 Forbidden in 14ms (Views: 13.7ms)
6084
+
6085
+
6086
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6087
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
6088
+ Started GET "/private" for ::1 at 2016-09-12 19:45:23 -0600
6089
+ Processing by PrivateController#show as HTML
6090
+ Redirected to http://localhost:3000/auth/sign_in
6091
+ Filter chain halted as #<Proc:0x007fefd2a71880@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6092
+ Completed 302 Found in 13ms
6093
+
6094
+
6095
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:45:23 -0600
6096
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6097
+ Redirected to http://localhost:3000/auth/google_oauth2
6098
+ Completed 302 Found in 1ms
6099
+
6100
+
6101
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:45:23 -0600
6102
+ (google_oauth2) Request phase initiated.
6103
+ Started GET "/auth/google_oauth2/callback?state=437a3e2b7184d0c52a7a4d412d7e2fb03994f5c6de35e441&code=4/lg43yhiotdxKyCMImohEJ0JRB019e9mAZQMlGJQiUQQ" for ::1 at 2016-09-12 19:45:27 -0600
6104
+ (google_oauth2) Callback phase initiated.
6105
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6106
+ Parameters: {"state"=>"437a3e2b7184d0c52a7a4d412d7e2fb03994f5c6de35e441", "code"=>"4/lg43yhiotdxKyCMImohEJ0JRB019e9mAZQMlGJQiUQQ", "provider"=>"google_oauth2"}
6107
+ Redirected to http://localhost:3000/private
6108
+ Completed 302 Found in 4ms
6109
+
6110
+
6111
+ Started GET "/private" for ::1 at 2016-09-12 19:45:28 -0600
6112
+ Processing by PrivateController#show as HTML
6113
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
6114
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (1.4ms)
6115
+ Filter chain halted as #<Proc:0x007fefd2a71880@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6116
+ Completed 403 Forbidden in 23ms (Views: 19.4ms)
6117
+
6118
+
6119
+ Started GET "/private" for ::1 at 2016-09-12 19:46:43 -0600
6120
+ Processing by PrivateController#show as HTML
6121
+ Completed 500 Internal Server Error in 0ms
6122
+
6123
+
6124
+
6125
+ ArgumentError (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
6126
+
6127
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:496:in `load_missing_constant'
6128
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:203:in `const_missing'
6129
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:12:in `authentication_session'
6130
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:5:in `authenticated?'
6131
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authentication_concern.rb:27:in `require_authentication'
6132
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:25:in `require_authorization'
6133
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13:in `block in require_authorization'
6134
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
6135
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
6136
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
6137
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
6138
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
6139
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
6140
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
6141
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
6142
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
6143
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
6144
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6145
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
6146
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
6147
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
6148
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
6149
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
6150
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
6151
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6152
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
6153
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
6154
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
6155
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
6156
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
6157
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
6158
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
6159
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
6160
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
6161
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
6162
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
6163
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
6164
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
6165
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
6166
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
6167
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
6168
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
6169
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
6170
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
6171
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
6172
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
6173
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
6174
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
6175
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6176
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
6177
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6178
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
6179
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
6180
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
6181
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
6182
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
6183
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
6184
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
6185
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
6186
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
6187
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
6188
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
6189
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
6190
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6191
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6192
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
6193
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
6194
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
6195
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
6196
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
6197
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
6198
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
6199
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
6200
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
6201
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.3ms)
6202
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
6203
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
6204
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
6205
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
6206
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (36.0ms)
6207
+ Started GET "/private" for ::1 at 2016-09-12 19:46:46 -0600
6208
+ Processing by PrivateController#show as HTML
6209
+ Completed 500 Internal Server Error in 0ms
6210
+
6211
+
6212
+
6213
+ ArgumentError (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
6214
+
6215
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:496:in `load_missing_constant'
6216
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:203:in `const_missing'
6217
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:12:in `authentication_session'
6218
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:5:in `authenticated?'
6219
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authentication_concern.rb:27:in `require_authentication'
6220
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:25:in `require_authorization'
6221
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13:in `block in require_authorization'
6222
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
6223
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
6224
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
6225
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
6226
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
6227
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
6228
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
6229
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
6230
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
6231
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
6232
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6233
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
6234
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
6235
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
6236
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
6237
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
6238
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
6239
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6240
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
6241
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
6242
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
6243
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
6244
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
6245
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
6246
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
6247
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
6248
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
6249
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
6250
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
6251
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
6252
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
6253
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
6254
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
6255
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
6256
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
6257
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
6258
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
6259
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
6260
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
6261
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
6262
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
6263
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6264
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
6265
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6266
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
6267
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
6268
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
6269
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
6270
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
6271
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
6272
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
6273
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
6274
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
6275
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
6276
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
6277
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
6278
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6279
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6280
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
6281
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
6282
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
6283
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
6284
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
6285
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
6286
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
6287
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
6288
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
6289
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.1ms)
6290
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
6291
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
6292
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
6293
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
6294
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (34.2ms)
6295
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6296
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
6297
+ Started GET "/private" for ::1 at 2016-09-12 19:46:51 -0600
6298
+ Processing by PrivateController#show as HTML
6299
+ Redirected to http://localhost:3000/auth/sign_in
6300
+ Filter chain halted as #<Proc:0x007fae7395a0f0@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6301
+ Completed 302 Found in 16ms
6302
+
6303
+
6304
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:46:51 -0600
6305
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6306
+ Redirected to http://localhost:3000/auth/google_oauth2
6307
+ Completed 302 Found in 1ms
6308
+
6309
+
6310
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:46:51 -0600
6311
+ (google_oauth2) Request phase initiated.
6312
+ Started GET "/auth/google_oauth2/callback?state=7725b3d602dbead0f7d89a1e81ec81dcdecf2d267cdd11ac&code=4/w7E54jcYUY64StAjSZ1FSbNKUFGMdkf3qV3ETjI5kP4" for ::1 at 2016-09-12 19:46:51 -0600
6313
+ (google_oauth2) Callback phase initiated.
6314
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6315
+ Parameters: {"state"=>"7725b3d602dbead0f7d89a1e81ec81dcdecf2d267cdd11ac", "code"=>"4/w7E54jcYUY64StAjSZ1FSbNKUFGMdkf3qV3ETjI5kP4", "provider"=>"google_oauth2"}
6316
+ Redirected to http://localhost:3000/private
6317
+ Completed 302 Found in 153320ms
6318
+
6319
+
6320
+ Started GET "/private" for ::1 at 2016-09-12 19:49:27 -0600
6321
+ Processing by PrivateController#show as HTML
6322
+ Completed 500 Internal Server Error in 0ms
6323
+
6324
+
6325
+
6326
+ ArgumentError (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
6327
+
6328
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:496:in `load_missing_constant'
6329
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:203:in `const_missing'
6330
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:12:in `authentication_session'
6331
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:5:in `authenticated?'
6332
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authentication_concern.rb:27:in `require_authentication'
6333
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:25:in `require_authorization'
6334
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13:in `block in require_authorization'
6335
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
6336
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
6337
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
6338
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
6339
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
6340
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
6341
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
6342
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
6343
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
6344
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
6345
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6346
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
6347
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
6348
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
6349
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
6350
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
6351
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
6352
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6353
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
6354
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
6355
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
6356
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
6357
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
6358
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
6359
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
6360
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
6361
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
6362
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
6363
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
6364
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
6365
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
6366
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
6367
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
6368
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
6369
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
6370
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
6371
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
6372
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
6373
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
6374
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
6375
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
6376
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6377
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
6378
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6379
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
6380
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
6381
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
6382
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
6383
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
6384
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
6385
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
6386
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
6387
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
6388
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
6389
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
6390
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
6391
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6392
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6393
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
6394
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
6395
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
6396
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
6397
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
6398
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
6399
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
6400
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
6401
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
6402
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.1ms)
6403
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
6404
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
6405
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
6406
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
6407
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (38.9ms)
6408
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6409
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
6410
+ Started GET "/private" for ::1 at 2016-09-12 19:56:01 -0600
6411
+ Processing by PrivateController#show as HTML
6412
+ Redirected to http://localhost:3000/auth/sign_in
6413
+ Filter chain halted as #<Proc:0x007fcf3d631410@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6414
+ Completed 302 Found in 10ms
6415
+
6416
+
6417
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 19:56:01 -0600
6418
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6419
+ Redirected to http://localhost:3000/auth/google_oauth2
6420
+ Completed 302 Found in 1ms
6421
+
6422
+
6423
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 19:56:01 -0600
6424
+ (google_oauth2) Request phase initiated.
6425
+ Started GET "/auth/google_oauth2/callback?state=6241c0a6a68441ba952ec858369646cfa3f291df5c89b0de&code=4/gIZ_Ef2uLtQtJgIaTV8pu4ZqH70UBEUsjcmRVEKJR3c" for ::1 at 2016-09-12 19:56:02 -0600
6426
+ (google_oauth2) Callback phase initiated.
6427
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6428
+ Parameters: {"state"=>"6241c0a6a68441ba952ec858369646cfa3f291df5c89b0de", "code"=>"4/gIZ_Ef2uLtQtJgIaTV8pu4ZqH70UBEUsjcmRVEKJR3c", "provider"=>"google_oauth2"}
6429
+ Redirected to http://localhost:3000/private
6430
+ Completed 302 Found in 78403ms
6431
+
6432
+
6433
+ Started GET "/private" for ::1 at 2016-09-12 19:57:21 -0600
6434
+ Processing by PrivateController#show as HTML
6435
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
6436
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (1.5ms)
6437
+ Filter chain halted as #<Proc:0x007fcf3d631410@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6438
+ Completed 403 Forbidden in 22ms (Views: 18.1ms)
6439
+
6440
+
6441
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6442
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6443
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6444
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6445
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6446
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6447
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6448
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6449
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6450
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6451
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6452
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6453
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6454
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6455
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6456
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6457
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6458
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6459
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6460
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6461
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6462
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6463
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6464
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6465
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6466
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6467
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6468
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6469
+ Mounting Omniauth::Rails::Engine in Rails.application.routes
6470
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6471
+ Mounting Omniauth::Rails::Engine in Rails.application.routes
6472
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
6473
+ Started GET "/public" for ::1 at 2016-09-12 23:38:56 -0600
6474
+ Processing by PublicController#show as HTML
6475
+ Rendering public/show.html.erb within layouts/application
6476
+ Rendered public/show.html.erb within layouts/application (0.8ms)
6477
+ Completed 200 OK in 113ms (Views: 112.6ms)
6478
+
6479
+
6480
+ Started GET "/public" for ::1 at 2016-09-12 23:38:58 -0600
6481
+ Processing by PublicController#show as HTML
6482
+ Rendering public/show.html.erb within layouts/application
6483
+ Rendered public/show.html.erb within layouts/application (0.2ms)
6484
+ Completed 200 OK in 6ms (Views: 4.6ms)
6485
+
6486
+
6487
+ Started GET "/private" for ::1 at 2016-09-12 23:39:00 -0600
6488
+ Processing by PrivateController#show as HTML
6489
+ Redirected to http://localhost:3000/auth/sign_in
6490
+ Filter chain halted as #<Proc:0x007f97c82c9a40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6491
+ Completed 302 Found in 2ms
6492
+
6493
+
6494
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 23:39:00 -0600
6495
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6496
+ Redirected to http://localhost:3000/auth/google_oauth2
6497
+ Completed 302 Found in 1ms
6498
+
6499
+
6500
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 23:39:00 -0600
6501
+ (google_oauth2) Request phase initiated.
6502
+ Started GET "/auth/google_oauth2/callback?state=fdb434ff9d20bfa27ce6c9f4465177f25c2e208aac00cccc&code=4/BQ3VScH1vvEywOtgWippJNRnRL16oijIVQVpqBNax8I" for ::1 at 2016-09-12 23:39:00 -0600
6503
+ (google_oauth2) Callback phase initiated.
6504
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6505
+ Parameters: {"state"=>"fdb434ff9d20bfa27ce6c9f4465177f25c2e208aac00cccc", "code"=>"4/BQ3VScH1vvEywOtgWippJNRnRL16oijIVQVpqBNax8I", "provider"=>"google_oauth2"}
6506
+ Redirected to http://localhost:3000/private
6507
+ Completed 302 Found in 1ms
6508
+
6509
+
6510
+ Started GET "/private" for ::1 at 2016-09-12 23:39:03 -0600
6511
+ Processing by PrivateController#show as HTML
6512
+ Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html
6513
+ Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/forbidden.html (0.2ms)
6514
+ Filter chain halted as #<Proc:0x007f97c82c9a40@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6515
+ Completed 403 Forbidden in 18ms (Views: 15.4ms)
6516
+
6517
+
6518
+ Started GET "/private" for ::1 at 2016-09-12 23:39:28 -0600
6519
+ Processing by PrivateController#show as HTML
6520
+ Completed 500 Internal Server Error in 0ms
6521
+
6522
+
6523
+
6524
+ ArgumentError (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
6525
+
6526
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:496:in `load_missing_constant'
6527
+ activesupport (5.0.0.1) lib/active_support/dependencies.rb:203:in `const_missing'
6528
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:12:in `authentication_session'
6529
+ /Users/danrabinowitz/code/omniauth-rails/app/helpers/omniauth/rails/application_helper.rb:5:in `authenticated?'
6530
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authentication_concern.rb:27:in `require_authentication'
6531
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:25:in `require_authorization'
6532
+ /Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13:in `block in require_authorization'
6533
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `instance_exec'
6534
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:398:in `block in make_lambda'
6535
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:169:in `block (2 levels) in halting'
6536
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:12:in `block (2 levels) in <module:Callbacks>'
6537
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:170:in `block in halting'
6538
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `block in call'
6539
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `each'
6540
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:454:in `call'
6541
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
6542
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
6543
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6544
+ actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
6545
+ actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
6546
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
6547
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
6548
+ activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
6549
+ activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
6550
+ actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
6551
+ actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
6552
+ actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
6553
+ actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
6554
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
6555
+ actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
6556
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
6557
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
6558
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
6559
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
6560
+ actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
6561
+ actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
6562
+ omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
6563
+ omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
6564
+ omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
6565
+ rack (2.0.1) lib/rack/etag.rb:25:in `call'
6566
+ rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
6567
+ rack (2.0.1) lib/rack/head.rb:12:in `call'
6568
+ rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
6569
+ rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
6570
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
6571
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
6572
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
6573
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
6574
+ activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
6575
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
6576
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6577
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
6578
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
6579
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
6580
+ railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
6581
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
6582
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
6583
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
6584
+ activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
6585
+ railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
6586
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
6587
+ rack (2.0.1) lib/rack/method_override.rb:22:in `call'
6588
+ rack (2.0.1) lib/rack/runtime.rb:22:in `call'
6589
+ activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
6590
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
6591
+ actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
6592
+ rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
6593
+ railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
6594
+ rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
6595
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
6596
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
6597
+ /Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
6598
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout
6599
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
6600
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.3ms)
6601
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
6602
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
6603
+ Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb
6604
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
6605
+ Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.9ms)
6606
+ Omniauth::Rails::Configurator: Loading from default_config_file=/Users/danrabinowitz/code/omniauth-rails/spec/test_app/config/omniauth_rails.yml
6607
+ Mounting Omniauth::Rails::Engine in Rails.application.routes
6608
+ Autoloading Omniauth::Rails::ControllersConcern into ActionController::Base
6609
+ Started GET "/private" for ::1 at 2016-09-12 23:39:39 -0600
6610
+ Processing by PrivateController#show as HTML
6611
+ Redirected to http://localhost:3000/auth/sign_in
6612
+ Filter chain halted as #<Proc:0x007ffe9de584d8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6613
+ Completed 302 Found in 11ms
6614
+
6615
+
6616
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 23:39:39 -0600
6617
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6618
+ Redirected to http://localhost:3000/auth/google_oauth2
6619
+ Completed 302 Found in 1ms
6620
+
6621
+
6622
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 23:39:39 -0600
6623
+ (google_oauth2) Request phase initiated.
6624
+ Started GET "/auth/google_oauth2/callback?state=7432fb36e6acd985f75f78cfbb5d21189e586e85979d10af&code=4/ka3TgYIdgA4WVR9LSMMRbMOGxCUgQFqpd2C66nv0qis" for ::1 at 2016-09-12 23:39:39 -0600
6625
+ (google_oauth2) Callback phase initiated.
6626
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6627
+ Parameters: {"state"=>"7432fb36e6acd985f75f78cfbb5d21189e586e85979d10af", "code"=>"4/ka3TgYIdgA4WVR9LSMMRbMOGxCUgQFqpd2C66nv0qis", "provider"=>"google_oauth2"}
6628
+ Redirected to http://localhost:3000/private
6629
+ Completed 302 Found in 1ms
6630
+
6631
+
6632
+ Started GET "/private" for ::1 at 2016-09-12 23:39:40 -0600
6633
+ Processing by PrivateController#show as HTML
6634
+ Rendering private/show.html.erb within layouts/application
6635
+ Rendered private/show.html.erb within layouts/application (0.8ms)
6636
+ Completed 200 OK in 99ms (Views: 95.2ms)
6637
+
6638
+
6639
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 23:39:40 -0600
6640
+ Started GET "/private" for ::1 at 2016-09-12 23:39:47 -0600
6641
+ Processing by PrivateController#show as HTML
6642
+ Redirected to http://localhost:3000/auth/sign_in
6643
+ Filter chain halted as #<Proc:0x007ffe9de584d8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6644
+ Completed 302 Found in 1ms
6645
+
6646
+
6647
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 23:39:47 -0600
6648
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6649
+ Redirected to http://localhost:3000/auth/google_oauth2
6650
+ Completed 302 Found in 1ms
6651
+
6652
+
6653
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 23:39:47 -0600
6654
+ (google_oauth2) Request phase initiated.
6655
+ Started GET "/auth/google_oauth2/callback?state=b69532e0760701d65df6d872be14e43a9bad496239501b1f&code=4/1F6fvWuxEmZc-4-CtndSBvvsQNLh0YdxxeVnPIc04zA" for ::1 at 2016-09-12 23:39:47 -0600
6656
+ (google_oauth2) Callback phase initiated.
6657
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6658
+ Parameters: {"state"=>"b69532e0760701d65df6d872be14e43a9bad496239501b1f", "code"=>"4/1F6fvWuxEmZc-4-CtndSBvvsQNLh0YdxxeVnPIc04zA", "provider"=>"google_oauth2"}
6659
+ Redirected to http://localhost:3000/private
6660
+ Completed 302 Found in 0ms
6661
+
6662
+
6663
+ Started GET "/private" for ::1 at 2016-09-12 23:39:48 -0600
6664
+ Processing by PrivateController#show as HTML
6665
+ Rendering private/show.html.erb within layouts/application
6666
+ Rendered private/show.html.erb within layouts/application (0.3ms)
6667
+ Completed 200 OK in 7ms (Views: 5.3ms)
6668
+
6669
+
6670
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 23:39:48 -0600
6671
+ Started GET "/private" for ::1 at 2016-09-12 23:39:56 -0600
6672
+ Processing by PrivateController#show as HTML
6673
+ Redirected to http://localhost:3000/auth/sign_in
6674
+ Filter chain halted as #<Proc:0x007ffe9de584d8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6675
+ Completed 302 Found in 1ms
6676
+
6677
+
6678
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 23:39:56 -0600
6679
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6680
+ Redirected to http://localhost:3000/auth/google_oauth2
6681
+ Completed 302 Found in 1ms
6682
+
6683
+
6684
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 23:39:56 -0600
6685
+ (google_oauth2) Request phase initiated.
6686
+ Started GET "/auth/google_oauth2/callback?state=546bd1de9ef56b52ee4fe49d215c77b08aedbe0ca83c622c&code=4/TYfyOWQu_C9YY8uZ7cD855SNpSdNT_Txi_5PaLWKpH4" for ::1 at 2016-09-12 23:39:56 -0600
6687
+ (google_oauth2) Callback phase initiated.
6688
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6689
+ Parameters: {"state"=>"546bd1de9ef56b52ee4fe49d215c77b08aedbe0ca83c622c", "code"=>"4/TYfyOWQu_C9YY8uZ7cD855SNpSdNT_Txi_5PaLWKpH4", "provider"=>"google_oauth2"}
6690
+ Redirected to http://localhost:3000/private
6691
+ Completed 302 Found in 0ms
6692
+
6693
+
6694
+ Started GET "/private" for ::1 at 2016-09-12 23:39:56 -0600
6695
+ Processing by PrivateController#show as HTML
6696
+ Rendering private/show.html.erb within layouts/application
6697
+ Rendered private/show.html.erb within layouts/application (0.3ms)
6698
+ Completed 200 OK in 7ms (Views: 5.2ms)
6699
+
6700
+
6701
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 23:39:56 -0600
6702
+ Started GET "/private" for ::1 at 2016-09-12 23:40:28 -0600
6703
+ Processing by PrivateController#show as HTML
6704
+ Redirected to http://localhost:3000/auth/sign_in
6705
+ Filter chain halted as #<Proc:0x007ffe9de584d8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6706
+ Completed 302 Found in 1ms
6707
+
6708
+
6709
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 23:40:28 -0600
6710
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6711
+ Redirected to http://localhost:3000/auth/google_oauth2
6712
+ Completed 302 Found in 1ms
6713
+
6714
+
6715
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 23:40:28 -0600
6716
+ (google_oauth2) Request phase initiated.
6717
+ Started GET "/auth/google_oauth2/callback?state=6dd7427db0d7bd49824459d39192bb8db10acd63b8045f78&code=4/Uo_Lzo5uciIARtAErAbpDtjMYCQUf94pdPmtOkmGAXc" for ::1 at 2016-09-12 23:40:28 -0600
6718
+ (google_oauth2) Callback phase initiated.
6719
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6720
+ Parameters: {"state"=>"6dd7427db0d7bd49824459d39192bb8db10acd63b8045f78", "code"=>"4/Uo_Lzo5uciIARtAErAbpDtjMYCQUf94pdPmtOkmGAXc", "provider"=>"google_oauth2"}
6721
+ Redirected to http://localhost:3000/private
6722
+ Completed 302 Found in 0ms
6723
+
6724
+
6725
+ Started GET "/private" for ::1 at 2016-09-12 23:40:28 -0600
6726
+ Processing by PrivateController#show as HTML
6727
+ Rendering private/show.html.erb within layouts/application
6728
+ Rendered private/show.html.erb within layouts/application (0.3ms)
6729
+ Completed 200 OK in 6ms (Views: 4.9ms)
6730
+
6731
+
6732
+ Started GET "/private" for ::1 at 2016-09-12 23:41:18 -0600
6733
+ Processing by PrivateController#show as HTML
6734
+ Redirected to http://localhost:3000/auth/sign_in
6735
+ Filter chain halted as #<Proc:0x007ffe9de584d8@/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/authorization_concern.rb:13> rendered or redirected
6736
+ Completed 302 Found in 1ms
6737
+
6738
+
6739
+ Started GET "/auth/sign_in" for ::1 at 2016-09-12 23:41:18 -0600
6740
+ Processing by Omniauth::Rails::SessionsController#new as HTML
6741
+ Redirected to http://localhost:3000/auth/google_oauth2
6742
+ Completed 302 Found in 1ms
6743
+
6744
+
6745
+ Started GET "/auth/google_oauth2" for ::1 at 2016-09-12 23:41:18 -0600
6746
+ (google_oauth2) Request phase initiated.
6747
+ Started GET "/auth/google_oauth2/callback?state=5d453adb68318555f18cfef4308e33b2b817e21207c59da9&code=4/h4J-3ms_gdMvVYlURcQfA32jwYgwpKZ3O0vVl6TEKlw" for ::1 at 2016-09-12 23:41:18 -0600
6748
+ (google_oauth2) Callback phase initiated.
6749
+ Processing by Omniauth::Rails::SessionsController#create as HTML
6750
+ Parameters: {"state"=>"5d453adb68318555f18cfef4308e33b2b817e21207c59da9", "code"=>"4/h4J-3ms_gdMvVYlURcQfA32jwYgwpKZ3O0vVl6TEKlw", "provider"=>"google_oauth2"}
6751
+ Redirected to http://localhost:3000/private
6752
+ Completed 302 Found in 0ms
6753
+
6754
+
6755
+ Started GET "/private" for ::1 at 2016-09-12 23:41:19 -0600
6756
+ Processing by PrivateController#show as HTML
6757
+ Rendering private/show.html.erb within layouts/application
6758
+ Rendered private/show.html.erb within layouts/application (0.3ms)
6759
+ Completed 200 OK in 7ms (Views: 5.2ms)
6760
+
6761
+
6762
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 23:41:19 -0600
6763
+ Started GET "/public" for ::1 at 2016-09-12 23:41:20 -0600
6764
+ Processing by PublicController#show as HTML
6765
+ Rendering public/show.html.erb within layouts/application
6766
+ Rendered public/show.html.erb within layouts/application (0.3ms)
6767
+ Completed 200 OK in 7ms (Views: 5.9ms)
6768
+
6769
+
6770
+ Started GET "/public" for ::1 at 2016-09-12 23:41:21 -0600
6771
+ Processing by PublicController#show as HTML
6772
+ Rendering public/show.html.erb within layouts/application
6773
+ Rendered public/show.html.erb within layouts/application (0.2ms)
6774
+ Completed 200 OK in 7ms (Views: 5.6ms)
6775
+
6776
+
6777
+ Started GET "/public" for ::1 at 2016-09-12 23:41:26 -0600
6778
+ Processing by PublicController#show as HTML
6779
+ Rendering public/show.html.erb within layouts/application
6780
+ Rendered public/show.html.erb within layouts/application (0.3ms)
6781
+ Completed 200 OK in 6ms (Views: 5.3ms)
6782
+
6783
+
6784
+ Started GET "/assets/omniauth/rails/application-1b40f366acfcee2b9a7d6c26ae26b68e8d8235936fc0df14e83ee3dcf0270286.css" for ::1 at 2016-09-12 23:41:26 -0600