omniauth-rails 0.1.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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.md +71 -0
- data/Rakefile +41 -0
- data/app/assets/config/omniauth_rails_manifest.js +1 -0
- data/app/assets/stylesheets/omniauth/rails/application.css +19 -0
- data/app/controllers/omniauth/rails/application_controller.rb +8 -0
- data/app/controllers/omniauth/rails/flash.rb +46 -0
- data/app/controllers/omniauth/rails/require_authentication.rb +26 -0
- data/app/controllers/omniauth/rails/require_authorization.rb +32 -0
- data/app/controllers/omniauth/rails/sessions_controller.rb +55 -0
- data/app/helpers/omniauth/rails/application_helper.rb +16 -0
- data/app/models/omniauth/rails/authentication_data_store.rb +31 -0
- data/app/models/omniauth/rails/authentication_request.rb +28 -0
- data/app/models/omniauth/rails/authentication_session.rb +53 -0
- data/app/models/omniauth/rails/authorization_checker.rb +28 -0
- data/app/models/omniauth/rails/authorization_types/base.rb +17 -0
- data/app/models/omniauth/rails/authorization_types/domains.rb +22 -0
- data/app/models/omniauth/rails/authorization_types/emails.rb +18 -0
- data/app/models/omniauth/rails/authorization_types/regex.rb +18 -0
- data/app/models/omniauth/rails/omni_auth_route_builder.rb +18 -0
- data/app/views/omniauth/rails/sessions/destroy.html.erb +6 -0
- data/config/initializers/omniauth_rails.rb +35 -0
- data/config/routes.rb +6 -0
- data/lib/omniauth/rails/configuration.rb +15 -0
- data/lib/omniauth/rails/engine.rb +22 -0
- data/lib/omniauth/rails/test/controller_helpers.rb +17 -0
- data/lib/omniauth/rails/test/request_helpers.rb +25 -0
- data/lib/omniauth/rails/version.rb +6 -0
- data/lib/omniauth/rails.rb +9 -0
- data/spec/controllers/application_controller_spec.rb +9 -0
- data/spec/examples.txt +19 -0
- data/spec/models/omniauth/rails/authorization_types/emails_spec.rb +28 -0
- data/spec/models/omniauth/rails/authorization_types/regex_spec.rb +28 -0
- data/spec/omniauth_rails_spec.rb +10 -0
- data/spec/rails_helper_for_engine.rb +62 -0
- data/spec/spec_helper.rb +93 -0
- data/spec/test_app/Rakefile +12 -0
- data/spec/test_app/app/assets/config/manifest.js +4 -0
- data/spec/test_app/app/assets/javascripts/application.js +13 -0
- data/spec/test_app/app/assets/stylesheets/application.css +15 -0
- data/spec/test_app/app/controllers/application_controller.rb +4 -0
- data/spec/test_app/app/controllers/private_controller.rb +9 -0
- data/spec/test_app/app/controllers/public_controller.rb +6 -0
- data/spec/test_app/app/helpers/application_helper.rb +3 -0
- data/spec/test_app/app/mailers/application_mailer.rb +5 -0
- data/spec/test_app/app/models/application_record.rb +4 -0
- data/spec/test_app/app/views/layouts/application.html.erb +24 -0
- data/spec/test_app/app/views/private/show.html.erb +1 -0
- data/spec/test_app/app/views/public/show.html.erb +1 -0
- data/spec/test_app/bin/bundle +4 -0
- data/spec/test_app/bin/rails +5 -0
- data/spec/test_app/bin/rake +5 -0
- data/spec/test_app/bin/setup +35 -0
- data/spec/test_app/bin/update +30 -0
- data/spec/test_app/config/application.rb +23 -0
- data/spec/test_app/config/boot.rb +6 -0
- data/spec/test_app/config/environment.rb +6 -0
- data/spec/test_app/config/environments/development.rb +55 -0
- data/spec/test_app/config/environments/production.rb +89 -0
- data/spec/test_app/config/environments/test.rb +43 -0
- data/spec/test_app/config/initializers/application_controller_renderer.rb +7 -0
- data/spec/test_app/config/initializers/assets.rb +12 -0
- data/spec/test_app/config/initializers/backtrace_silencers.rb +10 -0
- data/spec/test_app/config/initializers/cookies_serializer.rb +6 -0
- data/spec/test_app/config/initializers/filter_parameter_logging.rb +5 -0
- data/spec/test_app/config/initializers/inflections.rb +17 -0
- data/spec/test_app/config/initializers/mime_types.rb +5 -0
- data/spec/test_app/config/initializers/session_store.rb +4 -0
- data/spec/test_app/config/initializers/wrap_parameters.rb +15 -0
- data/spec/test_app/config/locales/en.yml +23 -0
- data/spec/test_app/config/omniauth_rails.yml +16 -0
- data/spec/test_app/config/puma.rb +48 -0
- data/spec/test_app/config/routes.rb +8 -0
- data/spec/test_app/config/secrets.yml +22 -0
- data/spec/test_app/config/spring.rb +7 -0
- data/spec/test_app/config.ru +6 -0
- data/spec/test_app/log/development.log +4451 -0
- data/spec/test_app/log/test.log +7601 -0
- data/spec/test_app/public/404.html +67 -0
- data/spec/test_app/public/422.html +67 -0
- data/spec/test_app/public/500.html +66 -0
- data/spec/test_app/public/apple-touch-icon-precomposed.png +0 -0
- data/spec/test_app/public/apple-touch-icon.png +0 -0
- data/spec/test_app/public/favicon.ico +0 -0
- data/spec/test_app/spec/controllers/private_controller_spec.rb +19 -0
- data/spec/test_app/spec/rails_helper.rb +54 -0
- data/spec/test_app/spec/requests/private_controller_spec.rb +26 -0
- data/spec/test_app/spec/requests/public_controller_spec.rb +13 -0
- data/spec/test_app/spec/requests/sessions_controller_spec.rb +87 -0
- data/spec/test_app/spec/spec_helper.rb +99 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/-5/-528MPRmC3ByNiAzVD1hs-NG3Muhf9FsYPaDbo4qIpI.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/3v/3voyTxS8FmTTGPrz-QQ23N6AgGate2o7X5ZnZeTkQbs.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/5V/5VAABbvE5t5bCDKmKjLivvfe1CqYdD4n4vtZQiMa4I0.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/64/64siRwVaDPAW5fTe1O4rlGaq-0ExxAWA0-csPcik-uM.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Aa/AasprW2BgqWDcmZnsPRxs-R5D0VGpL7dHYMwtsC1tmE.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/An/An3DVlfO1pzT7FAnm09q3Ok_2PmGYhiAvxuW9OgG9wc.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/C-/C-_kx_I8fFV2TrLPw8CNFy1uLrN6G4yLPg_4vOhlohQ.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/EG/EGN6771mS8m_7wi-Cr-GgFKv9U9IE3gpo9JQ-N3AYlQ.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Hl/HlzBaGDQ4NV3ctlz-qlmStUWDCELhxzVK1-SgLkPCH0.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/IB/IBoXb9_P8EU8f7aPVNE8cWJybcus8fS7KGvi4HxKdMU.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/K2/K28c2b37N3eRA-Pckb3MO3D3BvGXfbxDGNeRYIXG8Cg.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/KJ/KJdFFU6zb4YpQWEm8bsXxx8kdQ01BdK0F0h6TTzpOiY.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/KW/KWwCiQwwI6oqiIHZg_Qg2nrs1zXJISos9799GIL5viU.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Kh/KhKDGOFwOEJlSwLMaG8Yak8AktHsnEr-fUwLpl9d0tc.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/NXZl3HljnPNJmh2CNpp0skcYvQx4eSEp6vuG5o3lqqY.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/NX/nxTv3sKVUQZADJyM3dPaVmUA78MIsMLD_K279yN_GsI.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Ob/ObDGu7gmDzQuH86CeAdhWRPf0sfv9Qo3CoxGK3VOYWI.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/QG/QGjnK1OGVhAWzpma8R60Qdcr6v46sAWmpwQpeoWltX8.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Qn/Qn2TRz8mMz8dPVvXgHUfqXC19EPZQgG3XDqm5W_E-A0.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/WC/WCTd8gm1KmkPKRB14gd1wwFv3x9NwMsmquXet4Z1DTU.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Z-/Z-3hfqbx8r350iW9zFPz_OdVHX0X4Z4bMk9YbS1eha8.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/Z2/Z2DJdVm4jsJXg0HzuQVyAAmjJbVdzKntXlmd14iNVbU.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ZA/ZAzUlqsc-uLa_zcjt1t6EBkPqI8PkEoxz40i4FgrRlQ.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/bN/bNCmkb6T3JKDzd6s7ZxOLn_WdC6gUnRARnBDHrMFS7o.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/b_/b_Itlk9QZZd7Rvf8kcA4yLP1R5Acu7jB-m1xQiSU0qE.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/d6/d6PosAq3dbPqxxvjAcaLgePkRuQ8w__EA-M42WarK_0.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/fD/fDbKpwc4jlsYlnxTT3vnhsiBcSJF3imnAGUBp9nq_Bw.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/fE/fEHvM7gLiXuJB6lDj2KNzgAx5L3BBn2NSsuodvPAryI.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/fg/fgbqfgH_CvzP2H744Q3ywDzlqLRSgSw0AH6ifkC7roo.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/g4/g4TbkEUbvKBMpO8z4ioPbq8ArdLl-scuF3pVaLJhmVI.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/id/idcyFsf20F5Vd3GC1XtM_PxlNnROM6CxO1j11NG3RWk.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ih/ihflBRw1ToLzP0q8oKAJl_a6EHHbTdJUcVR5DANsIuA.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/jz/jzXohzOyfczV5wKfQVQWgE1H0IMN4jaxEM3XlhHNgvk.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/lH/lHLoBOtMavo_6UnfOn0DVLI2JQBT1W9sGR3IZzOD6o8.cache +2 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/mD/mDmWU5fLvNY4uggphc1wqYVQDn_w_U6Jz2XRSf59jDc.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/mX/mX1nlsL_SWOB4y22W5FheRX0YEONKyOY7xUeIvRiHco.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n5/n5FDaqgvLV4Rc1Xm6TykMEFanDhSJJ77HPuPCEgCDQM.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n9/n9Nzbk_dEL3fNO-u56owqnrG7YQmhcvDgJ2fWWE_9jE.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/nU/nUDR2L4CaIx5IszaYaaaACw519TTTzvpxsp7NMl6KyQ.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/n_/n_xYqQYhwEMQknb3jFQnjlxxBE9TzMNHCdJ-bEyZFIw.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/pc/pcFf9fij5Xa__QoHi-QzN_0Q_UGLhv6gihTXnoFX3sg.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/q-/q-721tFv_0DZO9GZ_kHYUD_jn6GNRC09vb51mwyxbuI.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/r6/r6saZ-BJCnX2-U353od1DgtZIGy5kXrCuXatXntMcTE.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/wY/wYWiPwDGlToFGYId__oKg8QMPEeuRZoP1FhQahshfOo.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/yD/yDj60NQvsiwl1QWQXH-iC4pgF1cmHkUFo-kkXBSjsIQ.cache +1 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/ym/ymCwqEVBkEs6bYteLf70KCA5pCKZtqjQ3TbZQzrIs3M.cache +0 -0
- data/spec/test_app/tmp/cache/assets/sprockets/v3.0/z0/z041WxjoEQvRhtSLORbkRlsNTgi68Rwx7XUyaDbPn0M.cache +1 -0
- data/spec/test_app/tmp/pids/server.pid +1 -0
- metadata +453 -0
|
@@ -0,0 +1,4451 @@
|
|
|
1
|
+
Started GET "/" for ::1 at 2016-09-11 02:05:51 -0600
|
|
2
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3
|
+
Parameters: {"internal"=>true}
|
|
4
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
5
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (4.0ms)
|
|
6
|
+
Completed 200 OK in 12ms (Views: 9.9ms)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Started GET "/private" for ::1 at 2016-09-11 02:05:57 -0600
|
|
10
|
+
Processing by PrivateController#show as HTML
|
|
11
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
12
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
13
|
+
Completed 302 Found in 14ms
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 02:05:57 -0600
|
|
17
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
18
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
19
|
+
Completed 302 Found in 1ms
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 02:05:57 -0600
|
|
23
|
+
|
|
24
|
+
ActionController::RoutingError (No route matches [GET] "/auth/google_oauth2"):
|
|
25
|
+
|
|
26
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
27
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
28
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
29
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
30
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
31
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
32
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
33
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
34
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
35
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
36
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
37
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
38
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
39
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
40
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
41
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
42
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
43
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
44
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
45
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
46
|
+
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
|
|
47
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
48
|
+
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)
|
|
49
|
+
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] (1.8ms)
|
|
50
|
+
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 [2 times] (0.4ms)
|
|
51
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.3ms)
|
|
52
|
+
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
|
|
53
|
+
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.8ms)
|
|
54
|
+
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 (72.0ms)
|
|
55
|
+
Started GET "/public" for ::1 at 2016-09-11 02:06:01 -0600
|
|
56
|
+
Processing by PublicController#show as HTML
|
|
57
|
+
Completed 200 OK in 0ms
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
Started GET "/private" for ::1 at 2016-09-11 02:06:04 -0600
|
|
61
|
+
Processing by PrivateController#show as HTML
|
|
62
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
63
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
64
|
+
Completed 302 Found in 1ms
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 02:06:04 -0600
|
|
68
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
69
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
70
|
+
Completed 302 Found in 0ms
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 02:06:04 -0600
|
|
74
|
+
|
|
75
|
+
ActionController::RoutingError (No route matches [GET] "/auth/google_oauth2"):
|
|
76
|
+
|
|
77
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
78
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
79
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
80
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
81
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
82
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
83
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
84
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
85
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
86
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
87
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
88
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
89
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
90
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
91
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
92
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
93
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
94
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
95
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
96
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
97
|
+
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
|
|
98
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
99
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
100
|
+
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] (1.9ms)
|
|
101
|
+
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 [2 times] (0.6ms)
|
|
102
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
103
|
+
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
|
|
104
|
+
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)
|
|
105
|
+
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 (73.5ms)
|
|
106
|
+
Started GET "/public" for ::1 at 2016-09-11 02:09:06 -0600
|
|
107
|
+
Processing by PublicController#show as HTML
|
|
108
|
+
Completed 200 OK in 0ms
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
Started GET "/private" for ::1 at 2016-09-11 02:09:09 -0600
|
|
112
|
+
Processing by PrivateController#show as HTML
|
|
113
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
114
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
115
|
+
Completed 302 Found in 14ms
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 02:09:09 -0600
|
|
119
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
120
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
121
|
+
Completed 302 Found in 1ms
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 02:09:09 -0600
|
|
125
|
+
|
|
126
|
+
ActionController::RoutingError (No route matches [GET] "/auth/google_oauth2"):
|
|
127
|
+
|
|
128
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
129
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
130
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
131
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
132
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
133
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
134
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
135
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
136
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
137
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
138
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
139
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
140
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
141
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
142
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
143
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
144
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
145
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
146
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
147
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
148
|
+
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
|
|
149
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
150
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
151
|
+
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] (1.4ms)
|
|
152
|
+
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 [2 times] (0.5ms)
|
|
153
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.7ms)
|
|
154
|
+
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
|
|
155
|
+
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)
|
|
156
|
+
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 (64.2ms)
|
|
157
|
+
Started GET "/" for ::1 at 2016-09-11 13:14:16 -0600
|
|
158
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
159
|
+
Parameters: {"internal"=>true}
|
|
160
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
161
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (3.3ms)
|
|
162
|
+
Completed 200 OK in 11ms (Views: 8.5ms)
|
|
163
|
+
|
|
164
|
+
|
|
165
|
+
Started GET "/private" for ::1 at 2016-09-11 13:14:24 -0600
|
|
166
|
+
Processing by PrivateController#show as HTML
|
|
167
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
168
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
169
|
+
Completed 302 Found in 13ms
|
|
170
|
+
|
|
171
|
+
|
|
172
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 13:14:24 -0600
|
|
173
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
174
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
175
|
+
Completed 302 Found in 2ms
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 13:14:24 -0600
|
|
179
|
+
(google_oauth2) Request phase initiated.
|
|
180
|
+
Started GET "/private" for ::1 at 2016-09-11 13:19:50 -0600
|
|
181
|
+
Processing by PrivateController#show as HTML
|
|
182
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
183
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
184
|
+
Completed 302 Found in 1ms
|
|
185
|
+
|
|
186
|
+
|
|
187
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 13:19:50 -0600
|
|
188
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
189
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
190
|
+
Completed 302 Found in 0ms
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 13:19:50 -0600
|
|
194
|
+
(google_oauth2) Request phase initiated.
|
|
195
|
+
Started GET "/private" for ::1 at 2016-09-11 13:21:44 -0600
|
|
196
|
+
Processing by PrivateController#show as HTML
|
|
197
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
198
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
199
|
+
Completed 302 Found in 13ms
|
|
200
|
+
|
|
201
|
+
|
|
202
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 13:21:44 -0600
|
|
203
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
204
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
205
|
+
Completed 302 Found in 1ms
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 13:21:44 -0600
|
|
209
|
+
(google_oauth2) Request phase initiated.
|
|
210
|
+
Started GET "/auth/google_oauth2/callback?state=503a3c608474f4716388ff41f46011e8e935c691f750a59f&code=4/MB56a2CtHBgf74sfYSJ6WiLy1IKQ-Wqii8UJmyEV-aE" for ::1 at 2016-09-11 13:21:59 -0600
|
|
211
|
+
(google_oauth2) Callback phase initiated.
|
|
212
|
+
(google_oauth2) Authentication failure! invalid_credentials: OAuth2::Error, {"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.", "extendedHelp"=>"https://console.developers.google.com/apis/api/plus/overview?project=899370353794"}], "code"=>403, "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."}:
|
|
213
|
+
{
|
|
214
|
+
"error": {
|
|
215
|
+
"errors": [
|
|
216
|
+
{
|
|
217
|
+
"domain": "usageLimits",
|
|
218
|
+
"reason": "accessNotConfigured",
|
|
219
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.",
|
|
220
|
+
"extendedHelp": "https://console.developers.google.com/apis/api/plus/overview?project=899370353794"
|
|
221
|
+
}
|
|
222
|
+
],
|
|
223
|
+
"code": 403,
|
|
224
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
OAuth2::Error ({"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.", "extendedHelp"=>"https://console.developers.google.com/apis/api/plus/overview?project=899370353794"}], "code"=>403, "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."}:
|
|
230
|
+
{
|
|
231
|
+
"error": {
|
|
232
|
+
"errors": [
|
|
233
|
+
{
|
|
234
|
+
"domain": "usageLimits",
|
|
235
|
+
"reason": "accessNotConfigured",
|
|
236
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.",
|
|
237
|
+
"extendedHelp": "https://console.developers.google.com/apis/api/plus/overview?project=899370353794"
|
|
238
|
+
}
|
|
239
|
+
],
|
|
240
|
+
"code": 403,
|
|
241
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
):
|
|
245
|
+
|
|
246
|
+
oauth2 (1.2.0) lib/oauth2/client.rb:113:in `request'
|
|
247
|
+
oauth2 (1.2.0) lib/oauth2/access_token.rb:109:in `request'
|
|
248
|
+
oauth2 (1.2.0) lib/oauth2/access_token.rb:116:in `get'
|
|
249
|
+
omniauth-google-oauth2 (0.4.1) lib/omniauth/strategies/google_oauth2.rb:83:in `raw_info'
|
|
250
|
+
omniauth-google-oauth2 (0.4.1) lib/omniauth/strategies/google_oauth2.rb:43:in `block in <class:GoogleOauth2>'
|
|
251
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:105:in `instance_eval'
|
|
252
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:105:in `block in compile_stack'
|
|
253
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:104:in `each'
|
|
254
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:104:in `inject'
|
|
255
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:104:in `compile_stack'
|
|
256
|
+
(eval):7:in `uid_stack'
|
|
257
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:317:in `uid'
|
|
258
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:333:in `auth_hash'
|
|
259
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:361:in `callback_phase'
|
|
260
|
+
omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
|
|
261
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
|
|
262
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
|
|
263
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
|
|
264
|
+
omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
|
|
265
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
266
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
267
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
268
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
269
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
270
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
271
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
272
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
273
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
274
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
275
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
276
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
277
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
278
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
279
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
280
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
281
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
282
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
283
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
284
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
285
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
286
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
287
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
288
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
289
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
290
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
291
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
292
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
293
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
294
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
295
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
296
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
297
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
298
|
+
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
|
|
299
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
300
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.0ms)
|
|
301
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
302
|
+
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)
|
|
303
|
+
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
|
|
304
|
+
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)
|
|
305
|
+
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 (41.3ms)
|
|
306
|
+
Started GET "/private" for ::1 at 2016-09-11 13:23:19 -0600
|
|
307
|
+
Processing by PrivateController#show as HTML
|
|
308
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
309
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
310
|
+
Completed 302 Found in 1ms
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 13:23:19 -0600
|
|
314
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
315
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
316
|
+
Completed 302 Found in 0ms
|
|
317
|
+
|
|
318
|
+
|
|
319
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 13:23:19 -0600
|
|
320
|
+
(google_oauth2) Request phase initiated.
|
|
321
|
+
Started GET "/auth/google_oauth2/callback?state=c425b6e04a766e8522f3660e57d1e755c51428da164be7c0&code=4/pAhMRJ78Xh0YcMzQvhAXtyQIwrYsIQojgG9_TAHCs3M" for ::1 at 2016-09-11 13:23:19 -0600
|
|
322
|
+
(google_oauth2) Callback phase initiated.
|
|
323
|
+
(google_oauth2) Authentication failure! invalid_credentials: OAuth2::Error, {"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.", "extendedHelp"=>"https://console.developers.google.com/apis/api/plus/overview?project=899370353794"}], "code"=>403, "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."}:
|
|
324
|
+
{
|
|
325
|
+
"error": {
|
|
326
|
+
"errors": [
|
|
327
|
+
{
|
|
328
|
+
"domain": "usageLimits",
|
|
329
|
+
"reason": "accessNotConfigured",
|
|
330
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.",
|
|
331
|
+
"extendedHelp": "https://console.developers.google.com/apis/api/plus/overview?project=899370353794"
|
|
332
|
+
}
|
|
333
|
+
],
|
|
334
|
+
"code": 403,
|
|
335
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
OAuth2::Error ({"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.", "extendedHelp"=>"https://console.developers.google.com/apis/api/plus/overview?project=899370353794"}], "code"=>403, "message"=>"Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."}:
|
|
341
|
+
{
|
|
342
|
+
"error": {
|
|
343
|
+
"errors": [
|
|
344
|
+
{
|
|
345
|
+
"domain": "usageLimits",
|
|
346
|
+
"reason": "accessNotConfigured",
|
|
347
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry.",
|
|
348
|
+
"extendedHelp": "https://console.developers.google.com/apis/api/plus/overview?project=899370353794"
|
|
349
|
+
}
|
|
350
|
+
],
|
|
351
|
+
"code": 403,
|
|
352
|
+
"message": "Access Not Configured. Google+ API has not been used in project 899370353794 before or it is disabled. Enable it by visiting https://console.developers.google.com/apis/api/plus/overview?project=899370353794 then retry. If you enabled this API recently, wait a few minutes for the action to propagate to our systems and retry."
|
|
353
|
+
}
|
|
354
|
+
}
|
|
355
|
+
):
|
|
356
|
+
|
|
357
|
+
oauth2 (1.2.0) lib/oauth2/client.rb:113:in `request'
|
|
358
|
+
oauth2 (1.2.0) lib/oauth2/access_token.rb:109:in `request'
|
|
359
|
+
oauth2 (1.2.0) lib/oauth2/access_token.rb:116:in `get'
|
|
360
|
+
omniauth-google-oauth2 (0.4.1) lib/omniauth/strategies/google_oauth2.rb:83:in `raw_info'
|
|
361
|
+
omniauth-google-oauth2 (0.4.1) lib/omniauth/strategies/google_oauth2.rb:43:in `block in <class:GoogleOauth2>'
|
|
362
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:105:in `instance_eval'
|
|
363
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:105:in `block in compile_stack'
|
|
364
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:104:in `each'
|
|
365
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:104:in `inject'
|
|
366
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:104:in `compile_stack'
|
|
367
|
+
(eval):7:in `uid_stack'
|
|
368
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:317:in `uid'
|
|
369
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:333:in `auth_hash'
|
|
370
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:361:in `callback_phase'
|
|
371
|
+
omniauth-oauth2 (1.4.0) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
|
|
372
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:227:in `callback_call'
|
|
373
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:184:in `call!'
|
|
374
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
|
|
375
|
+
omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
|
|
376
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
377
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
378
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
379
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
380
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
381
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
382
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
383
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
384
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
385
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
386
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
387
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
388
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
389
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
390
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
391
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
392
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
393
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
394
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
395
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
396
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
397
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
398
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
399
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
400
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
401
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
402
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
403
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
404
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
405
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
406
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
407
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
408
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
409
|
+
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
|
|
410
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
411
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.8ms)
|
|
412
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
413
|
+
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)
|
|
414
|
+
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
|
|
415
|
+
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.8ms)
|
|
416
|
+
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 (54.1ms)
|
|
417
|
+
Started GET "/private" for ::1 at 2016-09-11 13:27:32 -0600
|
|
418
|
+
Processing by PrivateController#show as HTML
|
|
419
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
420
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
421
|
+
Completed 302 Found in 13ms
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 13:27:32 -0600
|
|
425
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
426
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
427
|
+
Completed 302 Found in 1ms
|
|
428
|
+
|
|
429
|
+
|
|
430
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 13:27:32 -0600
|
|
431
|
+
(google_oauth2) Request phase initiated.
|
|
432
|
+
Started GET "/private" for ::1 at 2016-09-11 13:34:13 -0600
|
|
433
|
+
Processing by PrivateController#show as HTML
|
|
434
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
435
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
436
|
+
Completed 302 Found in 14ms
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 13:34:13 -0600
|
|
440
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
441
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
442
|
+
Completed 302 Found in 2ms
|
|
443
|
+
|
|
444
|
+
|
|
445
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 13:34:13 -0600
|
|
446
|
+
(google_oauth2) Request phase initiated.
|
|
447
|
+
Started GET "/auth/google_oauth2/callback?state=4cd02fc4a0f9335cd5e053fcb0b623a50bd906b890060604&code=4/4n5APeh5kkL3hHZ8P9PK5K-I1k7NkigvIrFkOUKwEzg" for ::1 at 2016-09-11 13:34:15 -0600
|
|
448
|
+
(google_oauth2) Callback phase initiated.
|
|
449
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
450
|
+
Parameters: {"state"=>"4cd02fc4a0f9335cd5e053fcb0b623a50bd906b890060604", "code"=>"4/4n5APeh5kkL3hHZ8P9PK5K-I1k7NkigvIrFkOUKwEzg", "provider"=>"google_oauth2"}
|
|
451
|
+
Redirected to http://localhost:3000/
|
|
452
|
+
Completed 302 Found in 0ms
|
|
453
|
+
|
|
454
|
+
|
|
455
|
+
Started GET "/" for ::1 at 2016-09-11 13:34:25 -0600
|
|
456
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
457
|
+
Parameters: {"internal"=>true}
|
|
458
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
459
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (3.2ms)
|
|
460
|
+
Completed 200 OK in 10ms (Views: 7.4ms)
|
|
461
|
+
|
|
462
|
+
|
|
463
|
+
Started GET "/private" for ::1 at 2016-09-11 13:34:30 -0600
|
|
464
|
+
Processing by PrivateController#show as HTML
|
|
465
|
+
Completed 200 OK in 1ms
|
|
466
|
+
|
|
467
|
+
|
|
468
|
+
Started GET "/public" for ::1 at 2016-09-11 14:12:55 -0600
|
|
469
|
+
Processing by PublicController#show as HTML
|
|
470
|
+
Completed 200 OK in 0ms
|
|
471
|
+
|
|
472
|
+
|
|
473
|
+
Started GET "/public" for ::1 at 2016-09-11 14:13:36 -0600
|
|
474
|
+
Processing by PublicController#show as HTML
|
|
475
|
+
Rendering public/show.html.erb within layouts/application
|
|
476
|
+
Rendered public/show.html.erb within layouts/application (0.9ms)
|
|
477
|
+
Completed 200 OK in 18ms (Views: 17.4ms)
|
|
478
|
+
|
|
479
|
+
|
|
480
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:13:36 -0600
|
|
481
|
+
|
|
482
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
483
|
+
|
|
484
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
485
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
486
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
487
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
488
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
489
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
490
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
491
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
492
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
493
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
494
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
495
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
496
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
497
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
498
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
499
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
500
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
501
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
502
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
503
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
504
|
+
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
|
|
505
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
506
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
507
|
+
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] (1.7ms)
|
|
508
|
+
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 [2 times] (0.5ms)
|
|
509
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
|
|
510
|
+
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
|
|
511
|
+
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)
|
|
512
|
+
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 (66.8ms)
|
|
513
|
+
Started GET "/public" for ::1 at 2016-09-11 14:15:14 -0600
|
|
514
|
+
Processing by PublicController#show as HTML
|
|
515
|
+
Rendering public/show.html.erb within layouts/application
|
|
516
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
517
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
518
|
+
|
|
519
|
+
|
|
520
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:15:14 -0600
|
|
521
|
+
|
|
522
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
523
|
+
|
|
524
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
525
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
526
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
527
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
528
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
529
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
530
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
531
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
532
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
533
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
534
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
535
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
536
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
537
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
538
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
539
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
540
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
541
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
542
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
543
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
544
|
+
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
|
|
545
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
546
|
+
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)
|
|
547
|
+
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] (1.6ms)
|
|
548
|
+
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 [2 times] (0.6ms)
|
|
549
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
550
|
+
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
|
|
551
|
+
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.8ms)
|
|
552
|
+
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 (59.3ms)
|
|
553
|
+
Started GET "/public" for ::1 at 2016-09-11 14:15:33 -0600
|
|
554
|
+
Processing by PublicController#show as HTML
|
|
555
|
+
Rendering public/show.html.erb within layouts/application
|
|
556
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
557
|
+
Completed 200 OK in 6ms (Views: 4.6ms)
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:15:33 -0600
|
|
561
|
+
|
|
562
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
563
|
+
|
|
564
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
565
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
566
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
567
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
568
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
569
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
570
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
571
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
572
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
573
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
574
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
575
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
576
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
577
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
578
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
579
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
580
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
581
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
582
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
583
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
584
|
+
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
|
|
585
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
586
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
587
|
+
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] (1.1ms)
|
|
588
|
+
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 [2 times] (0.5ms)
|
|
589
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
|
|
590
|
+
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
|
|
591
|
+
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)
|
|
592
|
+
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 (54.1ms)
|
|
593
|
+
Started GET "/private" for ::1 at 2016-09-11 14:15:45 -0600
|
|
594
|
+
Processing by PrivateController#show as HTML
|
|
595
|
+
Completed 200 OK in 2ms
|
|
596
|
+
|
|
597
|
+
|
|
598
|
+
Started GET "/private" for ::1 at 2016-09-11 14:16:27 -0600
|
|
599
|
+
Processing by PrivateController#show as HTML
|
|
600
|
+
Completed 200 OK in 0ms
|
|
601
|
+
|
|
602
|
+
|
|
603
|
+
Started GET "/private" for ::1 at 2016-09-11 14:16:42 -0600
|
|
604
|
+
Processing by PrivateController#show as HTML
|
|
605
|
+
Rendering private/show.html.erb within layouts/application
|
|
606
|
+
Rendered private/show.html.erb within layouts/application (0.5ms)
|
|
607
|
+
Completed 200 OK in 9ms (Views: 5.5ms)
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:16:42 -0600
|
|
611
|
+
|
|
612
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
613
|
+
|
|
614
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
615
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
616
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
617
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
618
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
619
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
620
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
621
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
622
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
623
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
624
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
625
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
626
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
627
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
628
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
629
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
630
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
631
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
632
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
633
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
634
|
+
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
|
|
635
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
636
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
637
|
+
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] (1.3ms)
|
|
638
|
+
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 [2 times] (0.6ms)
|
|
639
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
640
|
+
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
|
|
641
|
+
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)
|
|
642
|
+
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 (63.1ms)
|
|
643
|
+
Started GET "/private" for ::1 at 2016-09-11 14:16:47 -0600
|
|
644
|
+
Processing by PrivateController#show as HTML
|
|
645
|
+
Rendering private/show.html.erb within layouts/application
|
|
646
|
+
Rendered private/show.html.erb within layouts/application (0.5ms)
|
|
647
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:16:47 -0600
|
|
651
|
+
|
|
652
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
653
|
+
|
|
654
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
655
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
656
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
657
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
658
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
659
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
660
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
661
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
662
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
663
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
664
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
665
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
666
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
667
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
668
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
669
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
670
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
671
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
672
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
673
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
674
|
+
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
|
|
675
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
676
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
677
|
+
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] (1.1ms)
|
|
678
|
+
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 [2 times] (0.5ms)
|
|
679
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
680
|
+
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
|
|
681
|
+
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)
|
|
682
|
+
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 (55.7ms)
|
|
683
|
+
Started GET "/public" for ::1 at 2016-09-11 14:16:49 -0600
|
|
684
|
+
Processing by PublicController#show as HTML
|
|
685
|
+
Rendering public/show.html.erb within layouts/application
|
|
686
|
+
Rendered public/show.html.erb within layouts/application (0.5ms)
|
|
687
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:16:49 -0600
|
|
691
|
+
|
|
692
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
693
|
+
|
|
694
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
695
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
696
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
697
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
698
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
699
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
700
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
701
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
702
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
703
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
704
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
705
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
706
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
707
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
708
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
709
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
710
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
711
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
712
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
713
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
714
|
+
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
|
|
715
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
716
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
717
|
+
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] (1.2ms)
|
|
718
|
+
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 [2 times] (0.6ms)
|
|
719
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
720
|
+
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
|
|
721
|
+
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)
|
|
722
|
+
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 (56.0ms)
|
|
723
|
+
Started GET "/private" for ::1 at 2016-09-11 14:21:23 -0600
|
|
724
|
+
Processing by PrivateController#show as HTML
|
|
725
|
+
Rendering private/show.html.erb within layouts/application
|
|
726
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
727
|
+
Completed 500 Internal Server Error in 25ms
|
|
728
|
+
|
|
729
|
+
|
|
730
|
+
|
|
731
|
+
ActionView::Template::Error (undefined method `authenticated?' for #<#<Class:0x007f9f4a091d70>:0x007f9f505d8b48>):
|
|
732
|
+
15: </ul>
|
|
733
|
+
16:
|
|
734
|
+
17: <%# if session['ls_auth_user'] %>
|
|
735
|
+
18: <% if authenticated? %>
|
|
736
|
+
19: <!-- Logged in as <%= session['ls_auth_user'] %> | <a href="/auth/sign_out">Logout</a></div> -->
|
|
737
|
+
20: Logged in as <%= current_user.display %> |
|
|
738
|
+
21: <%#= link_to "Logout", sign_out_path %>
|
|
739
|
+
|
|
740
|
+
app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__3391225295313419550_70161112482480'
|
|
741
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
742
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
743
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.7ms)
|
|
744
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
745
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
746
|
+
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
|
|
747
|
+
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)
|
|
748
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.6ms)
|
|
749
|
+
Started GET "/private" for ::1 at 2016-09-11 14:21:51 -0600
|
|
750
|
+
Processing by PrivateController#show as HTML
|
|
751
|
+
Rendering private/show.html.erb within layouts/application
|
|
752
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
753
|
+
Completed 500 Internal Server Error in 21ms
|
|
754
|
+
|
|
755
|
+
|
|
756
|
+
|
|
757
|
+
ActionView::Template::Error (undefined method `authenticated?' for #<#<Class:0x007f9f50331de0>:0x007f9f50330cb0>):
|
|
758
|
+
15: </ul>
|
|
759
|
+
16:
|
|
760
|
+
17: <%# if session['ls_auth_user'] %>
|
|
761
|
+
18: <% if authenticated? %>
|
|
762
|
+
19: <!-- Logged in as <%= session['ls_auth_user'] %> | <a href="/auth/sign_out">Logout</a></div> -->
|
|
763
|
+
20: Logged in as <%= current_user.display %> |
|
|
764
|
+
21: <%#= link_to "Logout", sign_out_path %>
|
|
765
|
+
|
|
766
|
+
app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__3391225295313419550_70161111057260'
|
|
767
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
768
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
769
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.4ms)
|
|
770
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
771
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
772
|
+
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
|
|
773
|
+
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)
|
|
774
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (37.5ms)
|
|
775
|
+
Started GET "/private" for ::1 at 2016-09-11 14:23:48 -0600
|
|
776
|
+
Processing by PrivateController#show as HTML
|
|
777
|
+
Rendering private/show.html.erb within layouts/application
|
|
778
|
+
Rendered private/show.html.erb within layouts/application (1.3ms)
|
|
779
|
+
Completed 500 Internal Server Error in 37ms
|
|
780
|
+
|
|
781
|
+
|
|
782
|
+
|
|
783
|
+
ActionView::Template::Error (undefined method `authenticated?' for #<#<Class:0x007fdbc6cfbaf8>:0x007fdbc6d035f0>):
|
|
784
|
+
15: </ul>
|
|
785
|
+
16:
|
|
786
|
+
17: <%# if session['ls_auth_user'] %>
|
|
787
|
+
18: <% if authenticated? %>
|
|
788
|
+
19: <!-- Logged in as <%= session['ls_auth_user'] %> | <a href="/auth/sign_out">Logout</a></div> -->
|
|
789
|
+
20: Logged in as <%= current_user.display %> |
|
|
790
|
+
21: <%#= link_to "Logout", sign_out_path %>
|
|
791
|
+
|
|
792
|
+
app/views/layouts/application.html.erb:18:in `_app_views_layouts_application_html_erb__2658805783293635159_70290955132820'
|
|
793
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
794
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
795
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.1ms)
|
|
796
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
797
|
+
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)
|
|
798
|
+
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
|
|
799
|
+
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)
|
|
800
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.3ms)
|
|
801
|
+
Started GET "/private" for ::1 at 2016-09-11 14:25:16 -0600
|
|
802
|
+
Processing by PrivateController#show as HTML
|
|
803
|
+
Rendering private/show.html.erb within layouts/application
|
|
804
|
+
Rendered private/show.html.erb within layouts/application (1.3ms)
|
|
805
|
+
Completed 500 Internal Server Error in 44ms
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007f80d72fb958>:0x007f80d7303220>
|
|
810
|
+
Did you mean? current_page?):
|
|
811
|
+
17: <%# if session['ls_auth_user'] %>
|
|
812
|
+
18: <% if authenticated? %>
|
|
813
|
+
19: <!-- Logged in as <%= session['ls_auth_user'] %> | <a href="/auth/sign_out">Logout</a></div> -->
|
|
814
|
+
20: Logged in as <%= current_user.display %> |
|
|
815
|
+
21: <%#= link_to "Logout", sign_out_path %>
|
|
816
|
+
22: <a href="/auth/sign_out">Logout</a>
|
|
817
|
+
23: </div>
|
|
818
|
+
|
|
819
|
+
app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb___2756971423698310603_70095671481460'
|
|
820
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
821
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
822
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.5ms)
|
|
823
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
824
|
+
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)
|
|
825
|
+
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
|
|
826
|
+
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.5ms)
|
|
827
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.3ms)
|
|
828
|
+
Started GET "/private" for ::1 at 2016-09-11 14:25:29 -0600
|
|
829
|
+
Processing by PrivateController#show as HTML
|
|
830
|
+
Rendering private/show.html.erb within layouts/application
|
|
831
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
832
|
+
Completed 500 Internal Server Error in 24ms
|
|
833
|
+
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
ActionView::Template::Error (undefined local variable or method `current_user' for #<#<Class:0x007f80d4a2b578>:0x007f80d4a2a128>
|
|
837
|
+
Did you mean? current_page?):
|
|
838
|
+
17: <%# if session['ls_auth_user'] %>
|
|
839
|
+
18: <% if authenticated? %>
|
|
840
|
+
19: <!-- Logged in as <%= session['ls_auth_user'] %> | <a href="/auth/sign_out">Logout</a></div> -->
|
|
841
|
+
20: Logged in as <%= current_user.display %> |
|
|
842
|
+
21: <%#= link_to "Logout", sign_out_path %>
|
|
843
|
+
22: <a href="/auth/sign_out">Logout</a>
|
|
844
|
+
23: </div>
|
|
845
|
+
|
|
846
|
+
app/views/layouts/application.html.erb:20:in `_app_views_layouts_application_html_erb___2756971423698310603_70095649999400'
|
|
847
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
848
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
849
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.5ms)
|
|
850
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
851
|
+
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)
|
|
852
|
+
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
|
|
853
|
+
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.5ms)
|
|
854
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (40.5ms)
|
|
855
|
+
Started GET "/private" for ::1 at 2016-09-11 14:25:39 -0600
|
|
856
|
+
Processing by PrivateController#show as HTML
|
|
857
|
+
Rendering private/show.html.erb within layouts/application
|
|
858
|
+
Rendered private/show.html.erb within layouts/application (1.1ms)
|
|
859
|
+
Completed 200 OK in 20ms (Views: 10.7ms)
|
|
860
|
+
|
|
861
|
+
|
|
862
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:25:39 -0600
|
|
863
|
+
|
|
864
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
865
|
+
|
|
866
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
867
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
868
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
869
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
870
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
871
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
872
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
873
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
874
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
875
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
876
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
877
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
878
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
879
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
880
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
881
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
882
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
883
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
884
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
885
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
886
|
+
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
|
|
887
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
888
|
+
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)
|
|
889
|
+
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] (1.5ms)
|
|
890
|
+
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 [2 times] (0.5ms)
|
|
891
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.5ms)
|
|
892
|
+
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
|
|
893
|
+
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)
|
|
894
|
+
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 (67.3ms)
|
|
895
|
+
Started GET "/private" for ::1 at 2016-09-11 14:26:52 -0600
|
|
896
|
+
Processing by PrivateController#show as HTML
|
|
897
|
+
Rendering private/show.html.erb within layouts/application
|
|
898
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
899
|
+
Completed 200 OK in 9ms (Views: 5.5ms)
|
|
900
|
+
|
|
901
|
+
|
|
902
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:26:52 -0600
|
|
903
|
+
|
|
904
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
905
|
+
|
|
906
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
907
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
908
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
909
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
910
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
911
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
912
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
913
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
914
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
915
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
916
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
917
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
918
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
919
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
920
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
921
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
922
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
923
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
924
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
925
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
926
|
+
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
|
|
927
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
928
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
929
|
+
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] (1.5ms)
|
|
930
|
+
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 [2 times] (0.6ms)
|
|
931
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
|
|
932
|
+
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
|
|
933
|
+
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.1ms)
|
|
934
|
+
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 (60.5ms)
|
|
935
|
+
Started GET "/private" for ::1 at 2016-09-11 14:26:57 -0600
|
|
936
|
+
Processing by PrivateController#show as HTML
|
|
937
|
+
Rendering private/show.html.erb within layouts/application
|
|
938
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
939
|
+
Completed 200 OK in 6ms (Views: 3.9ms)
|
|
940
|
+
|
|
941
|
+
|
|
942
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:26:57 -0600
|
|
943
|
+
|
|
944
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
945
|
+
|
|
946
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
947
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
948
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
949
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
950
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
951
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
952
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
953
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
954
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
955
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
956
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
957
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
958
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
959
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
960
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
961
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
962
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
963
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
964
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
965
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
966
|
+
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
|
|
967
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
968
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
969
|
+
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] (1.3ms)
|
|
970
|
+
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 [2 times] (0.5ms)
|
|
971
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
|
|
972
|
+
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
|
|
973
|
+
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.1ms)
|
|
974
|
+
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 (60.0ms)
|
|
975
|
+
Started GET "/private" for ::1 at 2016-09-11 14:27:30 -0600
|
|
976
|
+
Processing by PrivateController#show as HTML
|
|
977
|
+
Rendering private/show.html.erb within layouts/application
|
|
978
|
+
Rendered private/show.html.erb within layouts/application (1.2ms)
|
|
979
|
+
Completed 200 OK in 23ms (Views: 12.4ms)
|
|
980
|
+
|
|
981
|
+
|
|
982
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:27:30 -0600
|
|
983
|
+
|
|
984
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
985
|
+
|
|
986
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
987
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
988
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
989
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
990
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
991
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
992
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
993
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
994
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
995
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
996
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
997
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
998
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
999
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1000
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1001
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1002
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1003
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1004
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1005
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1006
|
+
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
|
|
1007
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1008
|
+
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)
|
|
1009
|
+
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.1ms)
|
|
1010
|
+
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 [2 times] (0.5ms)
|
|
1011
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.0ms)
|
|
1012
|
+
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
|
|
1013
|
+
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)
|
|
1014
|
+
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 (70.1ms)
|
|
1015
|
+
Started GET "/private" for ::1 at 2016-09-11 14:27:50 -0600
|
|
1016
|
+
Processing by PrivateController#show as HTML
|
|
1017
|
+
Rendering private/show.html.erb within layouts/application
|
|
1018
|
+
Rendered private/show.html.erb within layouts/application (0.8ms)
|
|
1019
|
+
Completed 200 OK in 18ms (Views: 8.7ms)
|
|
1020
|
+
|
|
1021
|
+
|
|
1022
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:27:50 -0600
|
|
1023
|
+
|
|
1024
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1025
|
+
|
|
1026
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1027
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1028
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1029
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1030
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1031
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1032
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1033
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1034
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1035
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1036
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1037
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1038
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1039
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1040
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1041
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1042
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1043
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1044
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1045
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1046
|
+
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
|
|
1047
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1048
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
|
|
1049
|
+
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] (1.6ms)
|
|
1050
|
+
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 [2 times] (0.8ms)
|
|
1051
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.9ms)
|
|
1052
|
+
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
|
|
1053
|
+
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)
|
|
1054
|
+
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 (63.1ms)
|
|
1055
|
+
Started GET "/private" for ::1 at 2016-09-11 14:28:17 -0600
|
|
1056
|
+
Processing by PrivateController#show as HTML
|
|
1057
|
+
Rendering private/show.html.erb within layouts/application
|
|
1058
|
+
Rendered private/show.html.erb within layouts/application (2.7ms)
|
|
1059
|
+
Completed 200 OK in 38ms (Views: 23.6ms)
|
|
1060
|
+
|
|
1061
|
+
|
|
1062
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:28:17 -0600
|
|
1063
|
+
|
|
1064
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1065
|
+
|
|
1066
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1067
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1068
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1069
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1070
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1071
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1072
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1073
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1074
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1075
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1076
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1077
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1078
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1079
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1080
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1081
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1082
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1083
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1084
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1085
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1086
|
+
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
|
|
1087
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1088
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
1089
|
+
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] (1.4ms)
|
|
1090
|
+
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 [2 times] (0.7ms)
|
|
1091
|
+
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)
|
|
1092
|
+
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
|
|
1093
|
+
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)
|
|
1094
|
+
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 (76.7ms)
|
|
1095
|
+
Started GET "/private" for ::1 at 2016-09-11 14:28:18 -0600
|
|
1096
|
+
Processing by PrivateController#show as HTML
|
|
1097
|
+
Rendering private/show.html.erb within layouts/application
|
|
1098
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
1099
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
|
1100
|
+
|
|
1101
|
+
|
|
1102
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:28:18 -0600
|
|
1103
|
+
|
|
1104
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1105
|
+
|
|
1106
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1107
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1108
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1109
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1110
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1111
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1112
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1113
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1114
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1115
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1116
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1117
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1118
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1119
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1120
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1121
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1122
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1123
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1124
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1125
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1126
|
+
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
|
|
1127
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1128
|
+
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)
|
|
1129
|
+
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] (1.1ms)
|
|
1130
|
+
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 [2 times] (0.7ms)
|
|
1131
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
|
|
1132
|
+
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
|
|
1133
|
+
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)
|
|
1134
|
+
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 (65.6ms)
|
|
1135
|
+
Started GET "/public" for ::1 at 2016-09-11 14:28:19 -0600
|
|
1136
|
+
Processing by PublicController#show as HTML
|
|
1137
|
+
Rendering public/show.html.erb within layouts/application
|
|
1138
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
1139
|
+
Completed 200 OK in 5ms (Views: 4.3ms)
|
|
1140
|
+
|
|
1141
|
+
|
|
1142
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:28:19 -0600
|
|
1143
|
+
|
|
1144
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1145
|
+
|
|
1146
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1147
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1148
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1149
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1150
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1151
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1152
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1153
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1154
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1155
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1156
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1157
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1158
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1159
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1160
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1161
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1162
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1163
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1164
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1165
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1166
|
+
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
|
|
1167
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1168
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
1169
|
+
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] (1.3ms)
|
|
1170
|
+
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 [2 times] (0.5ms)
|
|
1171
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
|
|
1172
|
+
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
|
|
1173
|
+
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)
|
|
1174
|
+
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 (57.7ms)
|
|
1175
|
+
Started GET "/private" for ::1 at 2016-09-11 14:29:21 -0600
|
|
1176
|
+
Processing by PrivateController#show as HTML
|
|
1177
|
+
Rendering private/show.html.erb within layouts/application
|
|
1178
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
1179
|
+
Completed 200 OK in 6ms (Views: 3.8ms)
|
|
1180
|
+
|
|
1181
|
+
|
|
1182
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:29:21 -0600
|
|
1183
|
+
|
|
1184
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1185
|
+
|
|
1186
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1187
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1188
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1189
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1190
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1191
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1192
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1193
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1194
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1195
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1196
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1197
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1198
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1199
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1200
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1201
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1202
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1203
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1204
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1205
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1206
|
+
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
|
|
1207
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1208
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
1209
|
+
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] (1.2ms)
|
|
1210
|
+
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 [2 times] (0.7ms)
|
|
1211
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
|
|
1212
|
+
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
|
|
1213
|
+
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)
|
|
1214
|
+
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 (60.0ms)
|
|
1215
|
+
Started GET "/private" for ::1 at 2016-09-11 14:29:24 -0600
|
|
1216
|
+
Processing by PrivateController#show as HTML
|
|
1217
|
+
Rendering private/show.html.erb within layouts/application
|
|
1218
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
1219
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
|
1220
|
+
|
|
1221
|
+
|
|
1222
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:29:24 -0600
|
|
1223
|
+
|
|
1224
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1225
|
+
|
|
1226
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1227
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1228
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1229
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1230
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1231
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1232
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1233
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1234
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1235
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1236
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1237
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1238
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1239
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1240
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1241
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1242
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1243
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1244
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1245
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1246
|
+
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
|
|
1247
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1248
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
1249
|
+
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] (1.2ms)
|
|
1250
|
+
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 [2 times] (0.5ms)
|
|
1251
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
1252
|
+
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
|
|
1253
|
+
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)
|
|
1254
|
+
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 (56.8ms)
|
|
1255
|
+
Started GET "/public" for ::1 at 2016-09-11 14:29:26 -0600
|
|
1256
|
+
Processing by PublicController#show as HTML
|
|
1257
|
+
Rendering public/show.html.erb within layouts/application
|
|
1258
|
+
Rendered public/show.html.erb within layouts/application (0.2ms)
|
|
1259
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
|
1260
|
+
|
|
1261
|
+
|
|
1262
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:29:26 -0600
|
|
1263
|
+
|
|
1264
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1265
|
+
|
|
1266
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1267
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1268
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1269
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1270
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1271
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1272
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1273
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1274
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1275
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1276
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1277
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1278
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1279
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1280
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1281
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1282
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1283
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1284
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1285
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1286
|
+
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
|
|
1287
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1288
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
1289
|
+
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] (1.2ms)
|
|
1290
|
+
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 [2 times] (0.7ms)
|
|
1291
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
1292
|
+
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
|
|
1293
|
+
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)
|
|
1294
|
+
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 (59.4ms)
|
|
1295
|
+
Started GET "/public" for ::1 at 2016-09-11 14:30:20 -0600
|
|
1296
|
+
Processing by PublicController#show as HTML
|
|
1297
|
+
Rendering public/show.html.erb within layouts/application
|
|
1298
|
+
Rendered public/show.html.erb within layouts/application (1.2ms)
|
|
1299
|
+
Completed 200 OK in 21ms (Views: 19.6ms)
|
|
1300
|
+
|
|
1301
|
+
|
|
1302
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:30:20 -0600
|
|
1303
|
+
|
|
1304
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1305
|
+
|
|
1306
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1307
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1308
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1309
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1310
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1311
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1312
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1313
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1314
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1315
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1316
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1317
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1318
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1319
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1320
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1321
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1322
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1323
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1324
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1325
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1326
|
+
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
|
|
1327
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1328
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
|
|
1329
|
+
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.0ms)
|
|
1330
|
+
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 [2 times] (0.6ms)
|
|
1331
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.7ms)
|
|
1332
|
+
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
|
|
1333
|
+
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)
|
|
1334
|
+
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 (81.3ms)
|
|
1335
|
+
Started GET "/public" for ::1 at 2016-09-11 14:30:26 -0600
|
|
1336
|
+
Processing by PublicController#show as HTML
|
|
1337
|
+
Rendering public/show.html.erb within layouts/application
|
|
1338
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
1339
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
|
1340
|
+
|
|
1341
|
+
|
|
1342
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:30:26 -0600
|
|
1343
|
+
|
|
1344
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1345
|
+
|
|
1346
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1347
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1348
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1349
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1350
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1351
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1352
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1353
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1354
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1355
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1356
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1357
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1358
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1359
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1360
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1361
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1362
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1363
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1364
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1365
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1366
|
+
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
|
|
1367
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1368
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
1369
|
+
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] (1.2ms)
|
|
1370
|
+
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 [2 times] (0.4ms)
|
|
1371
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
1372
|
+
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
|
|
1373
|
+
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)
|
|
1374
|
+
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 (56.3ms)
|
|
1375
|
+
Started GET "/private" for ::1 at 2016-09-11 14:30:27 -0600
|
|
1376
|
+
Processing by PrivateController#show as HTML
|
|
1377
|
+
Rendering private/show.html.erb within layouts/application
|
|
1378
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
1379
|
+
Completed 200 OK in 7ms (Views: 4.9ms)
|
|
1380
|
+
|
|
1381
|
+
|
|
1382
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:30:27 -0600
|
|
1383
|
+
|
|
1384
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1385
|
+
|
|
1386
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1387
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1388
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1389
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1390
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1391
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1392
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1393
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1394
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1395
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1396
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1397
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1398
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1399
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1400
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1401
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1402
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1403
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1404
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1405
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1406
|
+
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
|
|
1407
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1408
|
+
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)
|
|
1409
|
+
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] (1.2ms)
|
|
1410
|
+
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 [2 times] (0.6ms)
|
|
1411
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
1412
|
+
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
|
|
1413
|
+
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.1ms)
|
|
1414
|
+
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 (58.3ms)
|
|
1415
|
+
Started GET "/public" for ::1 at 2016-09-11 14:30:29 -0600
|
|
1416
|
+
Processing by PublicController#show as HTML
|
|
1417
|
+
Rendering public/show.html.erb within layouts/application
|
|
1418
|
+
Rendered public/show.html.erb within layouts/application (0.2ms)
|
|
1419
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
1420
|
+
|
|
1421
|
+
|
|
1422
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:30:29 -0600
|
|
1423
|
+
|
|
1424
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1425
|
+
|
|
1426
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1427
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1428
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1429
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1430
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1431
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1432
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1433
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1434
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1435
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1436
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1437
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1438
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1439
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1440
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1441
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1442
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1443
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1444
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1445
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1446
|
+
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
|
|
1447
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1448
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
1449
|
+
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] (1.1ms)
|
|
1450
|
+
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 [2 times] (0.5ms)
|
|
1451
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
|
|
1452
|
+
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
|
|
1453
|
+
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)
|
|
1454
|
+
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 (57.4ms)
|
|
1455
|
+
Started GET "/auth/sign_out" for ::1 at 2016-09-11 14:30:31 -0600
|
|
1456
|
+
|
|
1457
|
+
ActionController::RoutingError (No route matches [GET] "/auth/sign_out"):
|
|
1458
|
+
|
|
1459
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1460
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1461
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1462
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1463
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1464
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1465
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1466
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1467
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1468
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1469
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1470
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1471
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1472
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1473
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1474
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1475
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1476
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1477
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1478
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1479
|
+
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
|
|
1480
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1481
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.7ms)
|
|
1482
|
+
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] (1.2ms)
|
|
1483
|
+
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 [2 times] (0.6ms)
|
|
1484
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
1485
|
+
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
|
|
1486
|
+
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)
|
|
1487
|
+
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 (55.0ms)
|
|
1488
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:30:32 -0600
|
|
1489
|
+
|
|
1490
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1491
|
+
|
|
1492
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1493
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1494
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1495
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1496
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1497
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1498
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1499
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1500
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1501
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1502
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1503
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1504
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1505
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1506
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1507
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1508
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1509
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1510
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1511
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1512
|
+
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
|
|
1513
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1514
|
+
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)
|
|
1515
|
+
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] (1.2ms)
|
|
1516
|
+
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 [2 times] (0.6ms)
|
|
1517
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
|
|
1518
|
+
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
|
|
1519
|
+
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.8ms)
|
|
1520
|
+
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 (57.1ms)
|
|
1521
|
+
Started GET "/public" for ::1 at 2016-09-11 14:39:24 -0600
|
|
1522
|
+
Processing by PublicController#show as HTML
|
|
1523
|
+
Rendering public/show.html.erb within layouts/application
|
|
1524
|
+
Rendered public/show.html.erb within layouts/application (1.1ms)
|
|
1525
|
+
Completed 200 OK in 21ms (Views: 19.3ms)
|
|
1526
|
+
|
|
1527
|
+
|
|
1528
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:39:24 -0600
|
|
1529
|
+
|
|
1530
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1531
|
+
|
|
1532
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1533
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1534
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1535
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1536
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1537
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1538
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1539
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1540
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1541
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1542
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1543
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1544
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1545
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1546
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1547
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1548
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1549
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1550
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1551
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1552
|
+
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
|
|
1553
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1554
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
1555
|
+
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] (1.4ms)
|
|
1556
|
+
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 [2 times] (0.6ms)
|
|
1557
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.4ms)
|
|
1558
|
+
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
|
|
1559
|
+
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)
|
|
1560
|
+
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 (67.9ms)
|
|
1561
|
+
Started GET "/public" for ::1 at 2016-09-11 14:39:26 -0600
|
|
1562
|
+
Processing by PublicController#show as HTML
|
|
1563
|
+
Rendering public/show.html.erb within layouts/application
|
|
1564
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
1565
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
|
1566
|
+
|
|
1567
|
+
|
|
1568
|
+
Started GET "/stylesheets/application.css" for ::1 at 2016-09-11 14:39:26 -0600
|
|
1569
|
+
|
|
1570
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/application.css"):
|
|
1571
|
+
|
|
1572
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1573
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1574
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1575
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1576
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1577
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1578
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1579
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1580
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1581
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1582
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1583
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1584
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1585
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1586
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1587
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1588
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1589
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1590
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1591
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1592
|
+
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
|
|
1593
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1594
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
1595
|
+
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] (1.1ms)
|
|
1596
|
+
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 [2 times] (0.6ms)
|
|
1597
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
1598
|
+
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
|
|
1599
|
+
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)
|
|
1600
|
+
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 (54.3ms)
|
|
1601
|
+
Started GET "/public" for ::1 at 2016-09-11 14:40:19 -0600
|
|
1602
|
+
Processing by PublicController#show as HTML
|
|
1603
|
+
Rendering public/show.html.erb within layouts/application
|
|
1604
|
+
Rendered public/show.html.erb within layouts/application (1.2ms)
|
|
1605
|
+
Completed 200 OK in 20ms (Views: 18.8ms)
|
|
1606
|
+
|
|
1607
|
+
|
|
1608
|
+
Started GET "/public" for ::1 at 2016-09-11 14:40:22 -0600
|
|
1609
|
+
Processing by PublicController#show as HTML
|
|
1610
|
+
Rendering public/show.html.erb within layouts/application
|
|
1611
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
1612
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
|
1613
|
+
|
|
1614
|
+
|
|
1615
|
+
Started GET "/public" for ::1 at 2016-09-11 14:40:39 -0600
|
|
1616
|
+
Processing by PublicController#show as HTML
|
|
1617
|
+
Rendering public/show.html.erb within layouts/application
|
|
1618
|
+
Rendered public/show.html.erb within layouts/application (0.2ms)
|
|
1619
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
1620
|
+
|
|
1621
|
+
|
|
1622
|
+
Started GET "/private" for ::1 at 2016-09-11 14:40:42 -0600
|
|
1623
|
+
Processing by PrivateController#show as HTML
|
|
1624
|
+
Rendering private/show.html.erb within layouts/application
|
|
1625
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
1626
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
|
1627
|
+
|
|
1628
|
+
|
|
1629
|
+
Started GET "/public" for ::1 at 2016-09-11 14:40:50 -0600
|
|
1630
|
+
Processing by PublicController#show as HTML
|
|
1631
|
+
Rendering public/show.html.erb within layouts/application
|
|
1632
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
1633
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
|
1634
|
+
|
|
1635
|
+
|
|
1636
|
+
Started GET "/public" for ::1 at 2016-09-11 14:42:37 -0600
|
|
1637
|
+
Processing by PublicController#show as HTML
|
|
1638
|
+
Rendering public/show.html.erb within layouts/application
|
|
1639
|
+
Rendered public/show.html.erb within layouts/application (0.8ms)
|
|
1640
|
+
Completed 200 OK in 17ms (Views: 15.7ms)
|
|
1641
|
+
|
|
1642
|
+
|
|
1643
|
+
Started GET "/private" for ::1 at 2016-09-11 15:08:36 -0600
|
|
1644
|
+
Processing by PrivateController#show as HTML
|
|
1645
|
+
Rendering private/show.html.erb within layouts/application
|
|
1646
|
+
Rendered private/show.html.erb within layouts/application (1.2ms)
|
|
1647
|
+
Completed 200 OK in 22ms (Views: 11.3ms)
|
|
1648
|
+
|
|
1649
|
+
|
|
1650
|
+
Started GET "/public" for ::1 at 2016-09-11 15:08:37 -0600
|
|
1651
|
+
Processing by PublicController#show as HTML
|
|
1652
|
+
Rendering public/show.html.erb within layouts/application
|
|
1653
|
+
Rendered public/show.html.erb within layouts/application (0.2ms)
|
|
1654
|
+
Completed 200 OK in 5ms (Views: 3.5ms)
|
|
1655
|
+
|
|
1656
|
+
|
|
1657
|
+
Started GET "/private" for ::1 at 2016-09-11 15:08:38 -0600
|
|
1658
|
+
Processing by PrivateController#show as HTML
|
|
1659
|
+
Rendering private/show.html.erb within layouts/application
|
|
1660
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
1661
|
+
Completed 200 OK in 4ms (Views: 2.9ms)
|
|
1662
|
+
|
|
1663
|
+
|
|
1664
|
+
Started GET "/public" for ::1 at 2016-09-11 15:08:39 -0600
|
|
1665
|
+
Processing by PublicController#show as HTML
|
|
1666
|
+
Rendering public/show.html.erb within layouts/application
|
|
1667
|
+
Rendered public/show.html.erb within layouts/application (0.2ms)
|
|
1668
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
|
1669
|
+
|
|
1670
|
+
|
|
1671
|
+
Started GET "/public" for ::1 at 2016-09-11 17:20:50 -0600
|
|
1672
|
+
Processing by PublicController#show as HTML
|
|
1673
|
+
Rendering public/show.html.erb within layouts/application
|
|
1674
|
+
Rendered public/show.html.erb within layouts/application (1.2ms)
|
|
1675
|
+
Completed 200 OK in 22ms (Views: 20.3ms)
|
|
1676
|
+
|
|
1677
|
+
|
|
1678
|
+
Started GET "/private" for ::1 at 2016-09-11 17:20:52 -0600
|
|
1679
|
+
Processing by PrivateController#show as HTML
|
|
1680
|
+
Rendering private/show.html.erb within layouts/application
|
|
1681
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
1682
|
+
Completed 200 OK in 4ms (Views: 3.1ms)
|
|
1683
|
+
|
|
1684
|
+
|
|
1685
|
+
Started GET "/auth/sign_out" for ::1 at 2016-09-11 17:20:56 -0600
|
|
1686
|
+
|
|
1687
|
+
ActionController::RoutingError (No route matches [GET] "/auth/sign_out"):
|
|
1688
|
+
|
|
1689
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1690
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1691
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1692
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1693
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1694
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1695
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1696
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1697
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1698
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1699
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1700
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1701
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1702
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1703
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1704
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1705
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1706
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1707
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1708
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1709
|
+
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
|
|
1710
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1711
|
+
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)
|
|
1712
|
+
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] (1.4ms)
|
|
1713
|
+
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)
|
|
1714
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.1ms)
|
|
1715
|
+
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
|
|
1716
|
+
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)
|
|
1717
|
+
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 (66.9ms)
|
|
1718
|
+
Started GET "/private" for ::1 at 2016-09-11 17:34:27 -0600
|
|
1719
|
+
Processing by PrivateController#show as HTML
|
|
1720
|
+
Rendering private/show.html.erb within layouts/application
|
|
1721
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
1722
|
+
Completed 500 Internal Server Error in 39ms
|
|
1723
|
+
|
|
1724
|
+
|
|
1725
|
+
|
|
1726
|
+
ActionView::Template::Error (undefined local variable or method `sign_out_path' for #<#<Class:0x007f82269e28c0>:0x007f8226ce8100>):
|
|
1727
|
+
16: <% if authenticated? %>
|
|
1728
|
+
17: <!-- Logged in as <%= session['ls_auth_user'] %> | <a href="/auth/sign_out">Logout</a></div> -->
|
|
1729
|
+
18: Logged in as <%= current_user %> |
|
|
1730
|
+
19: <%= button_to "Logout", sign_out_path, method: :delete, class: "foo" %>
|
|
1731
|
+
20: <!-- <a href="/auth/sign_out">Logout</a> -->
|
|
1732
|
+
21: </div>
|
|
1733
|
+
22: <% end %>
|
|
1734
|
+
|
|
1735
|
+
app/views/layouts/application.html.erb:19:in `_app_views_layouts_application_html_erb__2734871985457824155_70098486812280'
|
|
1736
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
1737
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
1738
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms)
|
|
1739
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1740
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
|
|
1741
|
+
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
|
|
1742
|
+
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.8ms)
|
|
1743
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (44.9ms)
|
|
1744
|
+
Started GET "/private" for ::1 at 2016-09-11 17:35:04 -0600
|
|
1745
|
+
Processing by PrivateController#show as HTML
|
|
1746
|
+
Rendering private/show.html.erb within layouts/application
|
|
1747
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
1748
|
+
Completed 200 OK in 8ms (Views: 6.9ms)
|
|
1749
|
+
|
|
1750
|
+
|
|
1751
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:35:07 -0600
|
|
1752
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
1753
|
+
Parameters: {"authenticity_token"=>"/vNfJ4tVoevJ8wzqOqxktiUCGZKPLMo5ZXPF9ApCc1Ijod+Rw9RdKwK+ekCBlXfi7YNj+hcs4y/i/uw2kB4OIg=="}
|
|
1754
|
+
Rendering html template
|
|
1755
|
+
Rendered html template (0.0ms)
|
|
1756
|
+
Completed 200 OK in 2ms (Views: 1.4ms)
|
|
1757
|
+
|
|
1758
|
+
|
|
1759
|
+
Started GET "/auth/sign_out" for ::1 at 2016-09-11 17:35:29 -0600
|
|
1760
|
+
|
|
1761
|
+
ActionController::RoutingError (No route matches [GET] "/auth/sign_out"):
|
|
1762
|
+
|
|
1763
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
1764
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1765
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
1766
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
1767
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
1768
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
1769
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
1770
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
1771
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
1772
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
1773
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
1774
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
1775
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1776
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
1777
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
1778
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1779
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
1780
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
1781
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
1782
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
1783
|
+
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
|
|
1784
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
1785
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
1786
|
+
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] (1.4ms)
|
|
1787
|
+
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] (1.0ms)
|
|
1788
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
|
|
1789
|
+
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
|
|
1790
|
+
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)
|
|
1791
|
+
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 (59.0ms)
|
|
1792
|
+
Started GET "/" for ::1 at 2016-09-11 17:35:31 -0600
|
|
1793
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
1794
|
+
Parameters: {"internal"=>true}
|
|
1795
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
1796
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
|
|
1797
|
+
Completed 200 OK in 8ms (Views: 5.8ms)
|
|
1798
|
+
|
|
1799
|
+
|
|
1800
|
+
Started GET "/private" for ::1 at 2016-09-11 17:35:34 -0600
|
|
1801
|
+
Processing by PrivateController#show as HTML
|
|
1802
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
1803
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
1804
|
+
Completed 302 Found in 3ms
|
|
1805
|
+
|
|
1806
|
+
|
|
1807
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:35:34 -0600
|
|
1808
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
1809
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
1810
|
+
Completed 302 Found in 1ms
|
|
1811
|
+
|
|
1812
|
+
|
|
1813
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:35:34 -0600
|
|
1814
|
+
(google_oauth2) Request phase initiated.
|
|
1815
|
+
Started GET "/private" for ::1 at 2016-09-11 17:35:55 -0600
|
|
1816
|
+
Processing by PrivateController#show as HTML
|
|
1817
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
1818
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
1819
|
+
Completed 302 Found in 13ms
|
|
1820
|
+
|
|
1821
|
+
|
|
1822
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:35:55 -0600
|
|
1823
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
1824
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
1825
|
+
Completed 302 Found in 1ms
|
|
1826
|
+
|
|
1827
|
+
|
|
1828
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:35:55 -0600
|
|
1829
|
+
(google_oauth2) Request phase initiated.
|
|
1830
|
+
Started GET "/private" for ::1 at 2016-09-11 17:36:42 -0600
|
|
1831
|
+
Processing by PrivateController#show as HTML
|
|
1832
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
1833
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
1834
|
+
Completed 302 Found in 1ms
|
|
1835
|
+
|
|
1836
|
+
|
|
1837
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:36:42 -0600
|
|
1838
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
1839
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
1840
|
+
Completed 302 Found in 0ms
|
|
1841
|
+
|
|
1842
|
+
|
|
1843
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:36:42 -0600
|
|
1844
|
+
(google_oauth2) Request phase initiated.
|
|
1845
|
+
Started GET "/public" for ::1 at 2016-09-11 17:36:43 -0600
|
|
1846
|
+
Processing by PublicController#show as HTML
|
|
1847
|
+
Rendering public/show.html.erb within layouts/application
|
|
1848
|
+
Rendered public/show.html.erb within layouts/application (1.3ms)
|
|
1849
|
+
Completed 200 OK in 13ms (Views: 10.8ms)
|
|
1850
|
+
|
|
1851
|
+
|
|
1852
|
+
Started GET "/public" for ::1 at 2016-09-11 17:37:00 -0600
|
|
1853
|
+
Processing by PublicController#show as HTML
|
|
1854
|
+
Rendering public/show.html.erb within layouts/application
|
|
1855
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
1856
|
+
Completed 200 OK in 4ms (Views: 3.3ms)
|
|
1857
|
+
|
|
1858
|
+
|
|
1859
|
+
Started GET "/private" for ::1 at 2016-09-11 17:37:05 -0600
|
|
1860
|
+
Processing by PrivateController#show as HTML
|
|
1861
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
1862
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
1863
|
+
Completed 302 Found in 1ms
|
|
1864
|
+
|
|
1865
|
+
|
|
1866
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:37:05 -0600
|
|
1867
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
1868
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
1869
|
+
Completed 302 Found in 0ms
|
|
1870
|
+
|
|
1871
|
+
|
|
1872
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:37:05 -0600
|
|
1873
|
+
(google_oauth2) Request phase initiated.
|
|
1874
|
+
Started GET "/private" for ::1 at 2016-09-11 17:37:44 -0600
|
|
1875
|
+
Processing by PrivateController#show as HTML
|
|
1876
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
1877
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
1878
|
+
Completed 302 Found in 10ms
|
|
1879
|
+
|
|
1880
|
+
|
|
1881
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:37:44 -0600
|
|
1882
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
1883
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
1884
|
+
Completed 302 Found in 1ms
|
|
1885
|
+
|
|
1886
|
+
|
|
1887
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:37:44 -0600
|
|
1888
|
+
(google_oauth2) Request phase initiated.
|
|
1889
|
+
Started GET "/public" for ::1 at 2016-09-11 17:44:15 -0600
|
|
1890
|
+
Processing by PublicController#show as HTML
|
|
1891
|
+
Rendering public/show.html.erb within layouts/application
|
|
1892
|
+
Rendered public/show.html.erb within layouts/application (1.0ms)
|
|
1893
|
+
Completed 200 OK in 17ms (Views: 16.4ms)
|
|
1894
|
+
|
|
1895
|
+
|
|
1896
|
+
Started GET "/private" for ::1 at 2016-09-11 17:44:17 -0600
|
|
1897
|
+
Processing by PrivateController#show as HTML
|
|
1898
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
1899
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
1900
|
+
Completed 302 Found in 1ms
|
|
1901
|
+
|
|
1902
|
+
|
|
1903
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:44:17 -0600
|
|
1904
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
1905
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
1906
|
+
Completed 302 Found in 1ms
|
|
1907
|
+
|
|
1908
|
+
|
|
1909
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:44:17 -0600
|
|
1910
|
+
(google_oauth2) Request phase initiated.
|
|
1911
|
+
Started GET "/auth/google_oauth2/callback?state=f245e4102c81a795a4b96f60422d371ba4ac334c1aeeabf2&code=4/5AXsU1InA30meiE67m5WyhUJZoydoBTD99zbog9GaEo" for ::1 at 2016-09-11 17:44:17 -0600
|
|
1912
|
+
(google_oauth2) Callback phase initiated.
|
|
1913
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
1914
|
+
Parameters: {"state"=>"f245e4102c81a795a4b96f60422d371ba4ac334c1aeeabf2", "code"=>"4/5AXsU1InA30meiE67m5WyhUJZoydoBTD99zbog9GaEo", "provider"=>"google_oauth2"}
|
|
1915
|
+
Redirected to http://localhost:3000/
|
|
1916
|
+
Completed 302 Found in 1ms
|
|
1917
|
+
|
|
1918
|
+
|
|
1919
|
+
Started GET "/" for ::1 at 2016-09-11 17:44:18 -0600
|
|
1920
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
1921
|
+
Parameters: {"internal"=>true}
|
|
1922
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
1923
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.8ms)
|
|
1924
|
+
Completed 200 OK in 6ms (Views: 4.4ms)
|
|
1925
|
+
|
|
1926
|
+
|
|
1927
|
+
Started GET "/private" for ::1 at 2016-09-11 17:44:29 -0600
|
|
1928
|
+
Processing by PrivateController#show as HTML
|
|
1929
|
+
Rendering private/show.html.erb within layouts/application
|
|
1930
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
1931
|
+
Completed 200 OK in 6ms (Views: 4.8ms)
|
|
1932
|
+
|
|
1933
|
+
|
|
1934
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:44:32 -0600
|
|
1935
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
1936
|
+
Parameters: {"authenticity_token"=>"RIjR23p/ok6mNqptMJMNh2RRR86EOjC6sn506E9xIxsDUltg9zSdAEIgqhlihJLq5wDNibkqqBtBVi9eJLWV2w=="}
|
|
1937
|
+
Completed 500 Internal Server Error in 2ms
|
|
1938
|
+
|
|
1939
|
+
|
|
1940
|
+
|
|
1941
|
+
NoMethodError (undefined method `raw' for #<String:0x007fd70fa23e90>):
|
|
1942
|
+
|
|
1943
|
+
/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/sessions_controller.rb:21:in `destroy'
|
|
1944
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
1945
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
1946
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
1947
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
1948
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
1949
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
1950
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
1951
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
1952
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
1953
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
1954
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
1955
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
1956
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
1957
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
1958
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
1959
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
1960
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
1961
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
1962
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
1963
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
1964
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
1965
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
1966
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
1967
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
1968
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
1969
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
1970
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
1971
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
1972
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
1973
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
1974
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
1975
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
1976
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
1977
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
1978
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
1979
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
1980
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
1981
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
|
|
1982
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
|
|
1983
|
+
omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
|
|
1984
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
1985
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
1986
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
1987
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
1988
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
1989
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
1990
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
1991
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
1992
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
1993
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
1994
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
1995
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
1996
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
1997
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
1998
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
1999
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2000
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2001
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2002
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2003
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2004
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2005
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2006
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2007
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2008
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2009
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2010
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2011
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2012
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2013
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2014
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2015
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2016
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2017
|
+
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
|
|
2018
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2019
|
+
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)
|
|
2020
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2021
|
+
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)
|
|
2022
|
+
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
|
|
2023
|
+
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)
|
|
2024
|
+
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.7ms)
|
|
2025
|
+
Started GET "/auth/sign_out" for ::1 at 2016-09-11 17:44:45 -0600
|
|
2026
|
+
|
|
2027
|
+
ActionController::RoutingError (No route matches [GET] "/auth/sign_out"):
|
|
2028
|
+
|
|
2029
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2030
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2031
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2032
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2033
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2034
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2035
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2036
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2037
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2038
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2039
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2040
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2041
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2042
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2043
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2044
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2045
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2046
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2047
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2048
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2049
|
+
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
|
|
2050
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2051
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
2052
|
+
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] (1.8ms)
|
|
2053
|
+
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.8ms)
|
|
2054
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.6ms)
|
|
2055
|
+
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
|
|
2056
|
+
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)
|
|
2057
|
+
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 (70.5ms)
|
|
2058
|
+
Started GET "/" for ::1 at 2016-09-11 17:44:48 -0600
|
|
2059
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2060
|
+
Parameters: {"internal"=>true}
|
|
2061
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2062
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.2ms)
|
|
2063
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
|
2064
|
+
|
|
2065
|
+
|
|
2066
|
+
Started GET "/private" for ::1 at 2016-09-11 17:44:51 -0600
|
|
2067
|
+
Processing by PrivateController#show as HTML
|
|
2068
|
+
Rendering private/show.html.erb within layouts/application
|
|
2069
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
2070
|
+
Completed 200 OK in 5ms (Views: 3.3ms)
|
|
2071
|
+
|
|
2072
|
+
|
|
2073
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:44:53 -0600
|
|
2074
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2075
|
+
Parameters: {"authenticity_token"=>"EUuff/63YSuqTe6H1onGR/xAlL7MZ7NvJXntzLpM3exWkRXEc/xeZU5b7vOEnlkqfxEe+fF3K87WUbZ60YhrLA=="}
|
|
2076
|
+
Rendering html template
|
|
2077
|
+
Rendered html template (0.0ms)
|
|
2078
|
+
Completed 200 OK in 4ms (Views: 3.0ms)
|
|
2079
|
+
|
|
2080
|
+
|
|
2081
|
+
Started GET "/private" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2082
|
+
Processing by PrivateController#show as HTML
|
|
2083
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2084
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2085
|
+
Completed 302 Found in 1ms
|
|
2086
|
+
|
|
2087
|
+
|
|
2088
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2089
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2090
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2091
|
+
Completed 302 Found in 1ms
|
|
2092
|
+
|
|
2093
|
+
|
|
2094
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2095
|
+
(google_oauth2) Request phase initiated.
|
|
2096
|
+
Started GET "/auth/google_oauth2/callback?state=834a1d2ee1d1432e14b81b495129e2c272f4d2e599c66713&code=4/iCBDajGEL-OwthtHje-roWXJGzNbeHV7h8Igs633R6E" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2097
|
+
(google_oauth2) Callback phase initiated.
|
|
2098
|
+
Started GET "/private" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2099
|
+
Processing by PrivateController#show as HTML
|
|
2100
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2101
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2102
|
+
Completed 302 Found in 1ms
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2106
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2107
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2108
|
+
Completed 302 Found in 0ms
|
|
2109
|
+
|
|
2110
|
+
|
|
2111
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2112
|
+
(google_oauth2) Request phase initiated.
|
|
2113
|
+
Started GET "/auth/google_oauth2/callback?state=7cb862f927de31c80eb1b420b7e706466b5c0fd0a2da586b&code=4/VF3KjLANmYOnMOsLzaGjvbB6Err-WICjU0huDJdiMP0" for ::1 at 2016-09-11 17:44:57 -0600
|
|
2114
|
+
(google_oauth2) Callback phase initiated.
|
|
2115
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2116
|
+
Parameters: {"state"=>"834a1d2ee1d1432e14b81b495129e2c272f4d2e599c66713", "code"=>"4/iCBDajGEL-OwthtHje-roWXJGzNbeHV7h8Igs633R6E", "provider"=>"google_oauth2"}
|
|
2117
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2118
|
+
Parameters: {"state"=>"7cb862f927de31c80eb1b420b7e706466b5c0fd0a2da586b", "code"=>"4/VF3KjLANmYOnMOsLzaGjvbB6Err-WICjU0huDJdiMP0", "provider"=>"google_oauth2"}
|
|
2119
|
+
Redirected to http://localhost:3000/
|
|
2120
|
+
Redirected to http://localhost:3000/
|
|
2121
|
+
Completed 302 Found in 1ms
|
|
2122
|
+
|
|
2123
|
+
|
|
2124
|
+
Completed 302 Found in 12ms
|
|
2125
|
+
|
|
2126
|
+
|
|
2127
|
+
Started GET "/" for ::1 at 2016-09-11 17:44:58 -0600
|
|
2128
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2129
|
+
Parameters: {"internal"=>true}
|
|
2130
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2131
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.6ms)
|
|
2132
|
+
Completed 200 OK in 6ms (Views: 4.3ms)
|
|
2133
|
+
|
|
2134
|
+
|
|
2135
|
+
Started GET "/private" for ::1 at 2016-09-11 17:45:03 -0600
|
|
2136
|
+
Processing by PrivateController#show as HTML
|
|
2137
|
+
Rendering private/show.html.erb within layouts/application
|
|
2138
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
2139
|
+
Completed 200 OK in 5ms (Views: 3.4ms)
|
|
2140
|
+
|
|
2141
|
+
|
|
2142
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:45:09 -0600
|
|
2143
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2144
|
+
Parameters: {"authenticity_token"=>"YZ45RM7DK28MOMXt6SQCY256D2XuNZTJehxYkdv+5JImRLP/Q4gUIeguxZm7M50O7SuFItMlDGiJNAMnsDpSUg=="}
|
|
2145
|
+
Rendering html template
|
|
2146
|
+
Rendered html template (0.0ms)
|
|
2147
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
2148
|
+
|
|
2149
|
+
|
|
2150
|
+
Started GET "/private" for ::1 at 2016-09-11 17:45:52 -0600
|
|
2151
|
+
Processing by PrivateController#show as HTML
|
|
2152
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2153
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2154
|
+
Completed 302 Found in 2ms
|
|
2155
|
+
|
|
2156
|
+
|
|
2157
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:45:52 -0600
|
|
2158
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2159
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2160
|
+
Completed 302 Found in 2ms
|
|
2161
|
+
|
|
2162
|
+
|
|
2163
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:45:52 -0600
|
|
2164
|
+
(google_oauth2) Request phase initiated.
|
|
2165
|
+
Started GET "/auth/google_oauth2/callback?state=afadbf18713dca8b9d94587ae9aa3e4ba8116112bc545591&code=4/4qKPzzKwiGVpFgustCODX75pNktDjEBIgLfDWzgg22g" for ::1 at 2016-09-11 17:45:52 -0600
|
|
2166
|
+
(google_oauth2) Callback phase initiated.
|
|
2167
|
+
Started GET "/private" for ::1 at 2016-09-11 17:45:53 -0600
|
|
2168
|
+
Processing by PrivateController#show as HTML
|
|
2169
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2170
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2171
|
+
Completed 302 Found in 1ms
|
|
2172
|
+
|
|
2173
|
+
|
|
2174
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:45:53 -0600
|
|
2175
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2176
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2177
|
+
Completed 302 Found in 0ms
|
|
2178
|
+
|
|
2179
|
+
|
|
2180
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:45:53 -0600
|
|
2181
|
+
(google_oauth2) Request phase initiated.
|
|
2182
|
+
Started GET "/auth/google_oauth2/callback?state=f2cc4ce21cdd7c8ecae50e7b7db4dc881ddf507776dc0ebb&code=4/Zq_hv_JdfvPQu9I8nkINyyGeo5UxWh0Mgvrh5IjjhPo" for ::1 at 2016-09-11 17:45:53 -0600
|
|
2183
|
+
(google_oauth2) Callback phase initiated.
|
|
2184
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2185
|
+
Parameters: {"state"=>"afadbf18713dca8b9d94587ae9aa3e4ba8116112bc545591", "code"=>"4/4qKPzzKwiGVpFgustCODX75pNktDjEBIgLfDWzgg22g", "provider"=>"google_oauth2"}
|
|
2186
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2187
|
+
Parameters: {"state"=>"f2cc4ce21cdd7c8ecae50e7b7db4dc881ddf507776dc0ebb", "code"=>"4/Zq_hv_JdfvPQu9I8nkINyyGeo5UxWh0Mgvrh5IjjhPo", "provider"=>"google_oauth2"}
|
|
2188
|
+
Redirected to http://localhost:3000/
|
|
2189
|
+
Redirected to http://localhost:3000/
|
|
2190
|
+
Completed 302 Found in 1ms
|
|
2191
|
+
|
|
2192
|
+
|
|
2193
|
+
Completed 302 Found in 274ms
|
|
2194
|
+
|
|
2195
|
+
|
|
2196
|
+
Started GET "/" for ::1 at 2016-09-11 17:45:53 -0600
|
|
2197
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2198
|
+
Parameters: {"internal"=>true}
|
|
2199
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2200
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
|
|
2201
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
2202
|
+
|
|
2203
|
+
|
|
2204
|
+
Started GET "/private" for ::1 at 2016-09-11 17:45:55 -0600
|
|
2205
|
+
Processing by PrivateController#show as HTML
|
|
2206
|
+
Rendering private/show.html.erb within layouts/application
|
|
2207
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
2208
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
|
2209
|
+
|
|
2210
|
+
|
|
2211
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:45:57 -0600
|
|
2212
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2213
|
+
Parameters: {"authenticity_token"=>"swHqSMCw7qNEq5qzEqgLlqFPoBJkqqbo/1V2ZIixyEj022DzTfvR7aC9msdAv5T7Ih4qVVm6PkkMfS3S43V+iA=="}
|
|
2214
|
+
No template found for Omniauth::Rails::SessionsController#destroy, rendering head :no_content
|
|
2215
|
+
Completed 204 No Content in 28ms
|
|
2216
|
+
|
|
2217
|
+
|
|
2218
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:46:00 -0600
|
|
2219
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2220
|
+
Parameters: {"authenticity_token"=>"swHqSMCw7qNEq5qzEqgLlqFPoBJkqqbo/1V2ZIixyEj022DzTfvR7aC9msdAv5T7Ih4qVVm6PkkMfS3S43V+iA=="}
|
|
2221
|
+
No template found for Omniauth::Rails::SessionsController#destroy, rendering head :no_content
|
|
2222
|
+
Completed 204 No Content in 26ms
|
|
2223
|
+
|
|
2224
|
+
|
|
2225
|
+
Started GET "/private" for ::1 at 2016-09-11 17:46:08 -0600
|
|
2226
|
+
Processing by PrivateController#show as HTML
|
|
2227
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2228
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2229
|
+
Completed 302 Found in 2ms
|
|
2230
|
+
|
|
2231
|
+
|
|
2232
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:46:08 -0600
|
|
2233
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2234
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2235
|
+
Completed 302 Found in 1ms
|
|
2236
|
+
|
|
2237
|
+
|
|
2238
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:46:08 -0600
|
|
2239
|
+
(google_oauth2) Request phase initiated.
|
|
2240
|
+
Started GET "/auth/google_oauth2/callback?state=a4768ddfa6ff32353a2892d8801e8be122031747673a0a8d&code=4/Hz-u-DBI847YF2Md4N_l95uOqtiZ6OtrGNntIiLhR-w" for ::1 at 2016-09-11 17:46:08 -0600
|
|
2241
|
+
(google_oauth2) Callback phase initiated.
|
|
2242
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2243
|
+
Parameters: {"state"=>"a4768ddfa6ff32353a2892d8801e8be122031747673a0a8d", "code"=>"4/Hz-u-DBI847YF2Md4N_l95uOqtiZ6OtrGNntIiLhR-w", "provider"=>"google_oauth2"}
|
|
2244
|
+
Redirected to http://localhost:3000/
|
|
2245
|
+
Completed 302 Found in 1ms
|
|
2246
|
+
|
|
2247
|
+
|
|
2248
|
+
Started GET "/" for ::1 at 2016-09-11 17:46:09 -0600
|
|
2249
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2250
|
+
Parameters: {"internal"=>true}
|
|
2251
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2252
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.6ms)
|
|
2253
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
|
2254
|
+
|
|
2255
|
+
|
|
2256
|
+
Started GET "/private" for ::1 at 2016-09-11 17:46:11 -0600
|
|
2257
|
+
Processing by PrivateController#show as HTML
|
|
2258
|
+
Rendering private/show.html.erb within layouts/application
|
|
2259
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
2260
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
|
2261
|
+
|
|
2262
|
+
|
|
2263
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:46:12 -0600
|
|
2264
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2265
|
+
Parameters: {"authenticity_token"=>"lOomQBoLnyFTDa3w4EF8+IlxWWswSpDx2b02n5/5JyzTMKz7l0Cgb7cbrYSyVuOVCiDTLA1aCFAqlW0p9D2R7A=="}
|
|
2266
|
+
Completed 500 Internal Server Error in 2ms
|
|
2267
|
+
|
|
2268
|
+
|
|
2269
|
+
|
|
2270
|
+
ActionView::MissingTemplate (Missing template omniauth/rails/sessions/destroy, application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby]}. Searched in:
|
|
2271
|
+
* "/Users/danrabinowitz/code/omniauth-rails/spec/test_app/app/views"
|
|
2272
|
+
):
|
|
2273
|
+
|
|
2274
|
+
actionview (5.0.0.1) lib/action_view/path_set.rb:46:in `find'
|
|
2275
|
+
actionview (5.0.0.1) lib/action_view/lookup_context.rb:122:in `find'
|
|
2276
|
+
actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
|
2277
|
+
actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
|
|
2278
|
+
actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
|
2279
|
+
actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
2280
|
+
actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
2281
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
|
|
2282
|
+
actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
2283
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
|
|
2284
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
|
|
2285
|
+
actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
|
|
2286
|
+
actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
|
|
2287
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
|
|
2288
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
|
2289
|
+
activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
2290
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
|
2291
|
+
activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
2292
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
|
2293
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
|
2294
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
|
2295
|
+
/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/sessions_controller.rb:19:in `destroy'
|
|
2296
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
2297
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
2298
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
2299
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2300
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
2301
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
2302
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
2303
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
2304
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
2305
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2306
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2307
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
2308
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
2309
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2310
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
2311
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
2312
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2313
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
2314
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
2315
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
2316
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
2317
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
2318
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
2319
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
2320
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2321
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2322
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2323
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2324
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2325
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
2326
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
2327
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
2328
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
2329
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2330
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2331
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2332
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2333
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
|
|
2334
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
|
|
2335
|
+
omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
|
|
2336
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
2337
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
2338
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
2339
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
2340
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
2341
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
2342
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
2343
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
2344
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
2345
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2346
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
2347
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2348
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
2349
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
2350
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2351
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2352
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2353
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2354
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2355
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2356
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2357
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2358
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2359
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2360
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2361
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2362
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2363
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2364
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2365
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2366
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2367
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2368
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2369
|
+
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
|
|
2370
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2371
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.9ms)
|
|
2372
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2373
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
2374
|
+
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
|
|
2375
|
+
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)
|
|
2376
|
+
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 (38.9ms)
|
|
2377
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:48:17 -0600
|
|
2378
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2379
|
+
Parameters: {"authenticity_token"=>"lOomQBoLnyFTDa3w4EF8+IlxWWswSpDx2b02n5/5JyzTMKz7l0Cgb7cbrYSyVuOVCiDTLA1aCFAqlW0p9D2R7A=="}
|
|
2380
|
+
Completed 500 Internal Server Error in 3ms
|
|
2381
|
+
|
|
2382
|
+
|
|
2383
|
+
|
|
2384
|
+
ActionView::MissingTemplate (Missing template omniauth/rails/sessions/destroy, omniauth/rails/application/destroy with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:raw, :erb, :html, :builder, :ruby]}. Searched in:
|
|
2385
|
+
* "/Users/danrabinowitz/code/omniauth-rails/spec/test_app/app/views"
|
|
2386
|
+
):
|
|
2387
|
+
|
|
2388
|
+
actionview (5.0.0.1) lib/action_view/path_set.rb:46:in `find'
|
|
2389
|
+
actionview (5.0.0.1) lib/action_view/lookup_context.rb:122:in `find'
|
|
2390
|
+
actionview (5.0.0.1) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
|
|
2391
|
+
actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
|
|
2392
|
+
actionview (5.0.0.1) lib/action_view/renderer/template_renderer.rb:8:in `render'
|
|
2393
|
+
actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:42:in `render_template'
|
|
2394
|
+
actionview (5.0.0.1) lib/action_view/renderer/renderer.rb:23:in `render'
|
|
2395
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:103:in `_render_template'
|
|
2396
|
+
actionpack (5.0.0.1) lib/action_controller/metal/streaming.rb:217:in `_render_template'
|
|
2397
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:83:in `render_to_body'
|
|
2398
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:52:in `render_to_body'
|
|
2399
|
+
actionpack (5.0.0.1) lib/action_controller/metal/renderers.rb:144:in `render_to_body'
|
|
2400
|
+
actionpack (5.0.0.1) lib/abstract_controller/rendering.rb:26:in `render'
|
|
2401
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:36:in `render'
|
|
2402
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block (2 levels) in render'
|
|
2403
|
+
activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
|
|
2404
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/benchmark.rb:308:in `realtime'
|
|
2405
|
+
activesupport (5.0.0.1) lib/active_support/core_ext/benchmark.rb:12:in `ms'
|
|
2406
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:44:in `block in render'
|
|
2407
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:87:in `cleanup_view_runtime'
|
|
2408
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:43:in `render'
|
|
2409
|
+
/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/sessions_controller.rb:19:in `destroy'
|
|
2410
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
2411
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
2412
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
2413
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2414
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
2415
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
2416
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
2417
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
2418
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
2419
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2420
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2421
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
2422
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
2423
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2424
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
2425
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
2426
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2427
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
2428
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
2429
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
2430
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
2431
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
2432
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
2433
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
2434
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2435
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2436
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2437
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2438
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2439
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
2440
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
2441
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
2442
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
2443
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
2444
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
2445
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
2446
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
2447
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
|
|
2448
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
|
|
2449
|
+
omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
|
|
2450
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
2451
|
+
rack (2.0.1) lib/rack/conditional_get.rb:38:in `call'
|
|
2452
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
2453
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
2454
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
2455
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
2456
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
2457
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
2458
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
2459
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
2460
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
2461
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2462
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
2463
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
2464
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2465
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2466
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2467
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2468
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2469
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2470
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2471
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2472
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2473
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2474
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2475
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2476
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2477
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2478
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2479
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2480
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2481
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2482
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2483
|
+
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
|
|
2484
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2485
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.1ms)
|
|
2486
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2487
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
2488
|
+
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
|
|
2489
|
+
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)
|
|
2490
|
+
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 (33.8ms)
|
|
2491
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:48:34 -0600
|
|
2492
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2493
|
+
Parameters: {"authenticity_token"=>"lOomQBoLnyFTDa3w4EF8+IlxWWswSpDx2b02n5/5JyzTMKz7l0Cgb7cbrYSyVuOVCiDTLA1aCFAqlW0p9D2R7A=="}
|
|
2494
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
2495
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (3.5ms)
|
|
2496
|
+
Completed 200 OK in 19ms (Views: 11.2ms)
|
|
2497
|
+
|
|
2498
|
+
|
|
2499
|
+
Started GET "/private" for ::1 at 2016-09-11 17:48:57 -0600
|
|
2500
|
+
Processing by PrivateController#show as HTML
|
|
2501
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2502
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2503
|
+
Completed 302 Found in 1ms
|
|
2504
|
+
|
|
2505
|
+
|
|
2506
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:48:57 -0600
|
|
2507
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2508
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2509
|
+
Completed 302 Found in 1ms
|
|
2510
|
+
|
|
2511
|
+
|
|
2512
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:48:57 -0600
|
|
2513
|
+
(google_oauth2) Request phase initiated.
|
|
2514
|
+
Started GET "/auth/google_oauth2/callback?state=ca124d23d707ff84f20f277081bebe97a35a5d8987bd72ff&code=4/YSnPnnHyGfMuanMykhj1ckPL7m9X2YTKHK2AHfjtG90" for ::1 at 2016-09-11 17:48:58 -0600
|
|
2515
|
+
(google_oauth2) Callback phase initiated.
|
|
2516
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2517
|
+
Parameters: {"state"=>"ca124d23d707ff84f20f277081bebe97a35a5d8987bd72ff", "code"=>"4/YSnPnnHyGfMuanMykhj1ckPL7m9X2YTKHK2AHfjtG90", "provider"=>"google_oauth2"}
|
|
2518
|
+
Redirected to http://localhost:3000/
|
|
2519
|
+
Completed 302 Found in 1ms
|
|
2520
|
+
|
|
2521
|
+
|
|
2522
|
+
Started GET "/" for ::1 at 2016-09-11 17:48:58 -0600
|
|
2523
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2524
|
+
Parameters: {"internal"=>true}
|
|
2525
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2526
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
|
|
2527
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
2528
|
+
|
|
2529
|
+
|
|
2530
|
+
Started GET "/private" for ::1 at 2016-09-11 17:49:01 -0600
|
|
2531
|
+
Processing by PrivateController#show as HTML
|
|
2532
|
+
Rendering private/show.html.erb within layouts/application
|
|
2533
|
+
Rendered private/show.html.erb within layouts/application (0.6ms)
|
|
2534
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
|
2535
|
+
|
|
2536
|
+
|
|
2537
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 17:49:04 -0600
|
|
2538
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2539
|
+
Parameters: {"authenticity_token"=>"3qQJDvH17BmYt4k/NBQprHCa+KPforvEYoeZ6eW8YzSZfoO1fL7TV3yhiUtmA7bB88ty5OKyI2WRr8JfjnjV9A=="}
|
|
2540
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
2541
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
|
2542
|
+
Completed 200 OK in 5ms (Views: 4.9ms)
|
|
2543
|
+
|
|
2544
|
+
|
|
2545
|
+
Started GET "/" for ::1 at 2016-09-11 17:49:15 -0600
|
|
2546
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2547
|
+
Parameters: {"internal"=>true}
|
|
2548
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2549
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
|
|
2550
|
+
Completed 200 OK in 5ms (Views: 3.5ms)
|
|
2551
|
+
|
|
2552
|
+
|
|
2553
|
+
Started GET "/private" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2554
|
+
Processing by PrivateController#show as HTML
|
|
2555
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2556
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2557
|
+
Completed 302 Found in 3ms
|
|
2558
|
+
|
|
2559
|
+
|
|
2560
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2561
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2562
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2563
|
+
Completed 302 Found in 1ms
|
|
2564
|
+
|
|
2565
|
+
|
|
2566
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2567
|
+
(google_oauth2) Request phase initiated.
|
|
2568
|
+
Started GET "/auth/google_oauth2/callback?state=41f806412dfdbe7a506f9eb2bd73b131674f27f124185026&code=4/8Py-5yJgjdNXfXX7kWGTP0-7ixmdl_65riHDsnMzjN8" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2569
|
+
(google_oauth2) Callback phase initiated.
|
|
2570
|
+
Started GET "/private" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2571
|
+
Processing by PrivateController#show as HTML
|
|
2572
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
2573
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
2574
|
+
Completed 302 Found in 1ms
|
|
2575
|
+
|
|
2576
|
+
|
|
2577
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2578
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
2579
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
2580
|
+
Completed 302 Found in 0ms
|
|
2581
|
+
|
|
2582
|
+
|
|
2583
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2584
|
+
(google_oauth2) Request phase initiated.
|
|
2585
|
+
Started GET "/auth/google_oauth2/callback?state=51d8653815cd04fd7c749e811f3a46be5fe170c34836b125&code=4/guxEeCTHOULOgO4z1MgHGkpu3jYsCK4TSLAG2UIwhsM" for ::1 at 2016-09-11 17:55:51 -0600
|
|
2586
|
+
(google_oauth2) Callback phase initiated.
|
|
2587
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2588
|
+
Parameters: {"state"=>"41f806412dfdbe7a506f9eb2bd73b131674f27f124185026", "code"=>"4/8Py-5yJgjdNXfXX7kWGTP0-7ixmdl_65riHDsnMzjN8", "provider"=>"google_oauth2"}
|
|
2589
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
2590
|
+
Parameters: {"state"=>"51d8653815cd04fd7c749e811f3a46be5fe170c34836b125", "code"=>"4/guxEeCTHOULOgO4z1MgHGkpu3jYsCK4TSLAG2UIwhsM", "provider"=>"google_oauth2"}
|
|
2591
|
+
Redirected to http://localhost:3000/
|
|
2592
|
+
Redirected to http://localhost:3000/
|
|
2593
|
+
Completed 302 Found in 3ms
|
|
2594
|
+
|
|
2595
|
+
|
|
2596
|
+
Completed 302 Found in 175ms
|
|
2597
|
+
|
|
2598
|
+
|
|
2599
|
+
Started GET "/" for ::1 at 2016-09-11 17:55:52 -0600
|
|
2600
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
2601
|
+
Parameters: {"internal"=>true}
|
|
2602
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
2603
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.9ms)
|
|
2604
|
+
Completed 200 OK in 7ms (Views: 4.8ms)
|
|
2605
|
+
|
|
2606
|
+
|
|
2607
|
+
Started GET "/private" for ::1 at 2016-09-11 17:55:56 -0600
|
|
2608
|
+
Processing by PrivateController#show as HTML
|
|
2609
|
+
Rendering private/show.html.erb within layouts/application
|
|
2610
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
2611
|
+
Completed 200 OK in 9ms (Views: 5.6ms)
|
|
2612
|
+
|
|
2613
|
+
|
|
2614
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 17:55:56 -0600
|
|
2615
|
+
|
|
2616
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2617
|
+
|
|
2618
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2619
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2620
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2621
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2622
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2623
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2624
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2625
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2626
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2627
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2628
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2629
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2630
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2631
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2632
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2633
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2634
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2635
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2636
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2637
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2638
|
+
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
|
|
2639
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2640
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
2641
|
+
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] (1.5ms)
|
|
2642
|
+
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)
|
|
2643
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.2ms)
|
|
2644
|
+
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
|
|
2645
|
+
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)
|
|
2646
|
+
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 (61.9ms)
|
|
2647
|
+
Started GET "/private" for ::1 at 2016-09-11 17:55:56 -0600
|
|
2648
|
+
Processing by PrivateController#show as HTML
|
|
2649
|
+
Rendering private/show.html.erb within layouts/application
|
|
2650
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
2651
|
+
Completed 200 OK in 8ms (Views: 6.5ms)
|
|
2652
|
+
|
|
2653
|
+
|
|
2654
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 17:55:56 -0600
|
|
2655
|
+
|
|
2656
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2657
|
+
|
|
2658
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2659
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2660
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2661
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2662
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2663
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2664
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2665
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2666
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2667
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2668
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2669
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2670
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2671
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2672
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2673
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2674
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2675
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2676
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2677
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2678
|
+
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
|
|
2679
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2680
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
2681
|
+
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] (1.8ms)
|
|
2682
|
+
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] (1.1ms)
|
|
2683
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
|
|
2684
|
+
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
|
|
2685
|
+
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.8ms)
|
|
2686
|
+
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 (88.5ms)
|
|
2687
|
+
Started GET "/private" for ::1 at 2016-09-11 17:56:07 -0600
|
|
2688
|
+
Processing by PrivateController#show as HTML
|
|
2689
|
+
Rendering private/show.html.erb within layouts/application
|
|
2690
|
+
Rendered private/show.html.erb within layouts/application (1.0ms)
|
|
2691
|
+
Completed 200 OK in 20ms (Views: 10.6ms)
|
|
2692
|
+
|
|
2693
|
+
|
|
2694
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 17:56:07 -0600
|
|
2695
|
+
|
|
2696
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2697
|
+
|
|
2698
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2699
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2700
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2701
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2702
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2703
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2704
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2705
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2706
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2707
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2708
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2709
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2710
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2711
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2712
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2713
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2714
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2715
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2716
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2717
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2718
|
+
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
|
|
2719
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2720
|
+
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)
|
|
2721
|
+
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] (1.2ms)
|
|
2722
|
+
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)
|
|
2723
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.2ms)
|
|
2724
|
+
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
|
|
2725
|
+
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.4ms)
|
|
2726
|
+
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 (65.6ms)
|
|
2727
|
+
Started GET "/private" for ::1 at 2016-09-11 17:56:12 -0600
|
|
2728
|
+
Processing by PrivateController#show as HTML
|
|
2729
|
+
Rendering private/show.html.erb within layouts/application
|
|
2730
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
2731
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
2732
|
+
|
|
2733
|
+
|
|
2734
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 17:56:12 -0600
|
|
2735
|
+
|
|
2736
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2737
|
+
|
|
2738
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2739
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2740
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2741
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2742
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2743
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2744
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2745
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2746
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2747
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2748
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2749
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2750
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2751
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2752
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2753
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2754
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2755
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2756
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2757
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2758
|
+
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
|
|
2759
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2760
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
2761
|
+
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)
|
|
2762
|
+
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.6ms)
|
|
2763
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
|
|
2764
|
+
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
|
|
2765
|
+
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)
|
|
2766
|
+
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 (61.9ms)
|
|
2767
|
+
Started GET "/private" for ::1 at 2016-09-11 17:58:08 -0600
|
|
2768
|
+
Processing by PrivateController#show as HTML
|
|
2769
|
+
Rendering private/show.html.erb within layouts/application
|
|
2770
|
+
Rendered private/show.html.erb within layouts/application (0.8ms)
|
|
2771
|
+
Completed 200 OK in 21ms (Views: 10.2ms)
|
|
2772
|
+
|
|
2773
|
+
|
|
2774
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 17:58:08 -0600
|
|
2775
|
+
|
|
2776
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2777
|
+
|
|
2778
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2779
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2780
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2781
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2782
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2783
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2784
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2785
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2786
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2787
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2788
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2789
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2790
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2791
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2792
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2793
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2794
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2795
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2796
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2797
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2798
|
+
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
|
|
2799
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2800
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
|
|
2801
|
+
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] (1.6ms)
|
|
2802
|
+
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)
|
|
2803
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms)
|
|
2804
|
+
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
|
|
2805
|
+
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)
|
|
2806
|
+
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 (67.7ms)
|
|
2807
|
+
Started GET "/private" for ::1 at 2016-09-11 17:58:10 -0600
|
|
2808
|
+
Processing by PrivateController#show as HTML
|
|
2809
|
+
Rendering private/show.html.erb within layouts/application
|
|
2810
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
2811
|
+
Completed 200 OK in 5ms (Views: 3.8ms)
|
|
2812
|
+
|
|
2813
|
+
|
|
2814
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 17:58:10 -0600
|
|
2815
|
+
|
|
2816
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2817
|
+
|
|
2818
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2819
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2820
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2821
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2822
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2823
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2824
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2825
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2826
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2827
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2828
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2829
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2830
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2831
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2832
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2833
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2834
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2835
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2836
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2837
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2838
|
+
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
|
|
2839
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2840
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
|
|
2841
|
+
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] (1.2ms)
|
|
2842
|
+
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)
|
|
2843
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
|
|
2844
|
+
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
|
|
2845
|
+
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.8ms)
|
|
2846
|
+
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 (61.7ms)
|
|
2847
|
+
Started GET "/private" for ::1 at 2016-09-11 18:00:12 -0600
|
|
2848
|
+
Processing by PrivateController#show as HTML
|
|
2849
|
+
Rendering private/show.html.erb within layouts/application
|
|
2850
|
+
Rendered private/show.html.erb within layouts/application (1.1ms)
|
|
2851
|
+
Completed 200 OK in 22ms (Views: 11.9ms)
|
|
2852
|
+
|
|
2853
|
+
|
|
2854
|
+
Started GET "/stylesheets/omniauth/rails/application.css" for ::1 at 2016-09-11 18:00:12 -0600
|
|
2855
|
+
|
|
2856
|
+
ActionController::RoutingError (No route matches [GET] "/stylesheets/omniauth/rails/application.css"):
|
|
2857
|
+
|
|
2858
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:53:in `call'
|
|
2859
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
2860
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
2861
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
2862
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
2863
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2864
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
2865
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
2866
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
2867
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
2868
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
2869
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2870
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
2871
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
2872
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
2873
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
2874
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
2875
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
2876
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
2877
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
2878
|
+
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
|
|
2879
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2880
|
+
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)
|
|
2881
|
+
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] (1.4ms)
|
|
2882
|
+
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)
|
|
2883
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.7ms)
|
|
2884
|
+
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
|
|
2885
|
+
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.1ms)
|
|
2886
|
+
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 (74.4ms)
|
|
2887
|
+
Started GET "/private" for ::1 at 2016-09-11 18:02:34 -0600
|
|
2888
|
+
Processing by PrivateController#show as HTML
|
|
2889
|
+
Rendering private/show.html.erb within layouts/application
|
|
2890
|
+
Rendered private/show.html.erb within layouts/application (1.1ms)
|
|
2891
|
+
Completed 200 OK in 120ms (Views: 110.1ms)
|
|
2892
|
+
|
|
2893
|
+
|
|
2894
|
+
Started GET "/assets/omniauth/rails/application-7ecc8250e50a2ea8fc0fbc788446a940c7365f698f01846a386ac0c382805f5b.css" for ::1 at 2016-09-11 18:02:34 -0600
|
|
2895
|
+
Started GET "/private" for ::1 at 2016-09-11 18:02:39 -0600
|
|
2896
|
+
Processing by PrivateController#show as HTML
|
|
2897
|
+
Rendering private/show.html.erb within layouts/application
|
|
2898
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
2899
|
+
Completed 200 OK in 6ms (Views: 4.5ms)
|
|
2900
|
+
|
|
2901
|
+
|
|
2902
|
+
Started GET "/assets/omniauth/rails/application-7ecc8250e50a2ea8fc0fbc788446a940c7365f698f01846a386ac0c382805f5b.css" for ::1 at 2016-09-11 18:02:39 -0600
|
|
2903
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 18:02:44 -0600
|
|
2904
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2905
|
+
Parameters: {"authenticity_token"=>"wNjWqmLXYnut2tTyjZMQ4a9vVCdbcmAcV1sF3Dx4Yi2HAlwR75xdNUnM1IbfhI+MLD7eYGZi+L2kc15qV7zU7Q=="}
|
|
2906
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb within layouts/application
|
|
2907
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb within layouts/application (0.6ms)
|
|
2908
|
+
Completed 500 Internal Server Error in 33ms
|
|
2909
|
+
|
|
2910
|
+
|
|
2911
|
+
|
|
2912
|
+
ActionView::Template::Error (undefined local variable or method `public_path' for #<#<Class:0x007f84fff704a0>:0x007f85031072e8>
|
|
2913
|
+
Did you mean? public_method):
|
|
2914
|
+
9: <body>
|
|
2915
|
+
10: Navigation:
|
|
2916
|
+
11: <ul>
|
|
2917
|
+
12: <li><%= link_to "Public page", public_path %></li>
|
|
2918
|
+
13: <li><%= link_to "Private page", private_path %></li>
|
|
2919
|
+
14: </ul>
|
|
2920
|
+
15:
|
|
2921
|
+
|
|
2922
|
+
app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___3717051717272230237_70104588299640'
|
|
2923
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
2924
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2925
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (26.9ms)
|
|
2926
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2927
|
+
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)
|
|
2928
|
+
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
|
|
2929
|
+
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)
|
|
2930
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (62.3ms)
|
|
2931
|
+
Started GET "/private" for ::1 at 2016-09-11 18:03:00 -0600
|
|
2932
|
+
Processing by PrivateController#show as HTML
|
|
2933
|
+
Rendering private/show.html.erb within layouts/application
|
|
2934
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
2935
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
2936
|
+
|
|
2937
|
+
|
|
2938
|
+
Started GET "/private" for ::1 at 2016-09-11 18:03:00 -0600
|
|
2939
|
+
Processing by PrivateController#show as HTML
|
|
2940
|
+
Rendering private/show.html.erb within layouts/application
|
|
2941
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
2942
|
+
Completed 200 OK in 10ms (Views: 8.3ms)
|
|
2943
|
+
|
|
2944
|
+
|
|
2945
|
+
Started GET "/public" for ::1 at 2016-09-11 18:03:03 -0600
|
|
2946
|
+
Processing by PublicController#show as HTML
|
|
2947
|
+
Rendering public/show.html.erb within layouts/application
|
|
2948
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
2949
|
+
Completed 200 OK in 7ms (Views: 5.5ms)
|
|
2950
|
+
|
|
2951
|
+
|
|
2952
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 18:03:05 -0600
|
|
2953
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
2954
|
+
Parameters: {"authenticity_token"=>"VY+eK3Y8vz820eN1WQxiDpCpWAFskUQA+Acj6MoCl2ISVRSQ+3eAcdLH4wELG/1jE/jSRlGB3KELL3heocYhog=="}
|
|
2955
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb within layouts/application
|
|
2956
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb within layouts/application (0.5ms)
|
|
2957
|
+
Completed 500 Internal Server Error in 26ms
|
|
2958
|
+
|
|
2959
|
+
|
|
2960
|
+
|
|
2961
|
+
ActionView::Template::Error (undefined local variable or method `public_path' for #<#<Class:0x007f84fff704a0>:0x007f84fcc4e6a8>
|
|
2962
|
+
Did you mean? public_method):
|
|
2963
|
+
9: <body>
|
|
2964
|
+
10: Navigation:
|
|
2965
|
+
11: <ul>
|
|
2966
|
+
12: <li><%= link_to "Public page", public_path %></li>
|
|
2967
|
+
13: <li><%= link_to "Private page", private_path %></li>
|
|
2968
|
+
14: </ul>
|
|
2969
|
+
15:
|
|
2970
|
+
|
|
2971
|
+
app/views/layouts/application.html.erb:12:in `_app_views_layouts_application_html_erb___3717051717272230237_70104576534340'
|
|
2972
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
2973
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
2974
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (4.7ms)
|
|
2975
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
2976
|
+
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)
|
|
2977
|
+
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
|
|
2978
|
+
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.8ms)
|
|
2979
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (38.2ms)
|
|
2980
|
+
Started GET "/private" for ::1 at 2016-09-11 18:07:31 -0600
|
|
2981
|
+
Processing by PrivateController#show as HTML
|
|
2982
|
+
Rendering private/show.html.erb within layouts/application
|
|
2983
|
+
Rendered private/show.html.erb within layouts/application (0.8ms)
|
|
2984
|
+
Completed 200 OK in 112ms (Views: 103.5ms)
|
|
2985
|
+
|
|
2986
|
+
|
|
2987
|
+
Started GET "/private" for ::1 at 2016-09-11 18:07:31 -0600
|
|
2988
|
+
Processing by PrivateController#show as HTML
|
|
2989
|
+
Rendering private/show.html.erb within layouts/application
|
|
2990
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
2991
|
+
Completed 200 OK in 10ms (Views: 8.0ms)
|
|
2992
|
+
|
|
2993
|
+
|
|
2994
|
+
Started GET "/public" for ::1 at 2016-09-11 18:07:37 -0600
|
|
2995
|
+
Processing by PublicController#show as HTML
|
|
2996
|
+
Rendering public/show.html.erb within layouts/application
|
|
2997
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
2998
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
|
2999
|
+
|
|
3000
|
+
|
|
3001
|
+
Started GET "/private" for ::1 at 2016-09-11 18:07:38 -0600
|
|
3002
|
+
Processing by PrivateController#show as HTML
|
|
3003
|
+
Rendering private/show.html.erb within layouts/application
|
|
3004
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3005
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
|
3006
|
+
|
|
3007
|
+
|
|
3008
|
+
Started GET "/public" for ::1 at 2016-09-11 18:07:39 -0600
|
|
3009
|
+
Processing by PublicController#show as HTML
|
|
3010
|
+
Rendering public/show.html.erb within layouts/application
|
|
3011
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3012
|
+
Completed 200 OK in 7ms (Views: 6.3ms)
|
|
3013
|
+
|
|
3014
|
+
|
|
3015
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 18:07:41 -0600
|
|
3016
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
3017
|
+
Parameters: {"authenticity_token"=>"lQIEvrwQkQYPPNerT+x29IOiEwm+nnXtvC+uWoUbspLS2I4FMVuuSOsq198d++mZAPOZToOO7UxPB/Xs7t8EUg=="}
|
|
3018
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
3019
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
|
3020
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
|
3021
|
+
|
|
3022
|
+
|
|
3023
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:07:43 -0600
|
|
3024
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3025
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3026
|
+
Completed 302 Found in 1ms
|
|
3027
|
+
|
|
3028
|
+
|
|
3029
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:07:43 -0600
|
|
3030
|
+
(google_oauth2) Request phase initiated.
|
|
3031
|
+
Started GET "/auth/google_oauth2/callback?state=b2bf964d569cb9f2749e5aa7d7a24b10851526948338b2ab&code=4/jOTIJPqrq0VM9DKghPXZ05nGyTuXAR6ctiVrvLJR0sg" for ::1 at 2016-09-11 18:07:43 -0600
|
|
3032
|
+
(google_oauth2) Callback phase initiated.
|
|
3033
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3034
|
+
Parameters: {"state"=>"b2bf964d569cb9f2749e5aa7d7a24b10851526948338b2ab", "code"=>"4/jOTIJPqrq0VM9DKghPXZ05nGyTuXAR6ctiVrvLJR0sg", "provider"=>"google_oauth2"}
|
|
3035
|
+
Redirected to http://localhost:3000/
|
|
3036
|
+
Completed 302 Found in 1ms
|
|
3037
|
+
|
|
3038
|
+
|
|
3039
|
+
Started GET "/" for ::1 at 2016-09-11 18:07:43 -0600
|
|
3040
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3041
|
+
Parameters: {"internal"=>true}
|
|
3042
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3043
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.8ms)
|
|
3044
|
+
Completed 200 OK in 6ms (Views: 4.7ms)
|
|
3045
|
+
|
|
3046
|
+
|
|
3047
|
+
Started GET "/private" for ::1 at 2016-09-11 18:08:28 -0600
|
|
3048
|
+
Processing by PrivateController#show as HTML
|
|
3049
|
+
Rendering private/show.html.erb within layouts/application
|
|
3050
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3051
|
+
Completed 200 OK in 6ms (Views: 4.9ms)
|
|
3052
|
+
|
|
3053
|
+
|
|
3054
|
+
Started GET "/private" for ::1 at 2016-09-11 18:08:28 -0600
|
|
3055
|
+
Processing by PrivateController#show as HTML
|
|
3056
|
+
Rendering private/show.html.erb within layouts/application
|
|
3057
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3058
|
+
Completed 200 OK in 9ms (Views: 7.7ms)
|
|
3059
|
+
|
|
3060
|
+
|
|
3061
|
+
Started GET "/private" for ::1 at 2016-09-11 18:10:56 -0600
|
|
3062
|
+
Processing by PrivateController#show as HTML
|
|
3063
|
+
Rendering private/show.html.erb within layouts/application
|
|
3064
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3065
|
+
Completed 200 OK in 7ms (Views: 5.7ms)
|
|
3066
|
+
|
|
3067
|
+
|
|
3068
|
+
Started GET "/private" for ::1 at 2016-09-11 18:13:09 -0600
|
|
3069
|
+
Processing by PrivateController#show as HTML
|
|
3070
|
+
Rendering private/show.html.erb within layouts/application
|
|
3071
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3072
|
+
Completed 200 OK in 10ms (Views: 8.6ms)
|
|
3073
|
+
|
|
3074
|
+
|
|
3075
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 18:13:09 -0600
|
|
3076
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 18:13:17 -0600
|
|
3077
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
3078
|
+
Parameters: {"authenticity_token"=>"8HWQlwWhNaTauQWOsr80UMiL3ulNuBbVDVrTgJGgD3+3rxosiOoK6j6vBfrgqKs9S9pUrnCojnT+cog2+mS5vw=="}
|
|
3079
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
3080
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
|
3081
|
+
Completed 200 OK in 5ms (Views: 4.1ms)
|
|
3082
|
+
|
|
3083
|
+
|
|
3084
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:13:19 -0600
|
|
3085
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3086
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3087
|
+
Completed 302 Found in 0ms
|
|
3088
|
+
|
|
3089
|
+
|
|
3090
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:13:19 -0600
|
|
3091
|
+
(google_oauth2) Request phase initiated.
|
|
3092
|
+
Started GET "/auth/google_oauth2/callback?state=6df20b712a34940a0062e93b7885f8b9ee99bb745018eb15&code=4/8ZGBvT9TgfxB7ClwW8V9Ac6b37CuVI0hkrAntqQTokY" for ::1 at 2016-09-11 18:13:19 -0600
|
|
3093
|
+
(google_oauth2) Callback phase initiated.
|
|
3094
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3095
|
+
Parameters: {"state"=>"6df20b712a34940a0062e93b7885f8b9ee99bb745018eb15", "code"=>"4/8ZGBvT9TgfxB7ClwW8V9Ac6b37CuVI0hkrAntqQTokY", "provider"=>"google_oauth2"}
|
|
3096
|
+
Redirected to http://localhost:3000/
|
|
3097
|
+
Completed 302 Found in 0ms
|
|
3098
|
+
|
|
3099
|
+
|
|
3100
|
+
Started GET "/" for ::1 at 2016-09-11 18:13:20 -0600
|
|
3101
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3102
|
+
Parameters: {"internal"=>true}
|
|
3103
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3104
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
|
|
3105
|
+
Completed 200 OK in 7ms (Views: 4.1ms)
|
|
3106
|
+
|
|
3107
|
+
|
|
3108
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:18 -0600
|
|
3109
|
+
Processing by PrivateController#show as HTML
|
|
3110
|
+
Rendering private/show.html.erb within layouts/application
|
|
3111
|
+
Rendered private/show.html.erb within layouts/application (0.8ms)
|
|
3112
|
+
Completed 200 OK in 108ms (Views: 100.2ms)
|
|
3113
|
+
|
|
3114
|
+
|
|
3115
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 18:26:22 -0600
|
|
3116
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
3117
|
+
Parameters: {"authenticity_token"=>"1ez2L2WuNNV4K0T07iYuTn/Wv912lG+YDA25A8QmPFGSNnyU6OULm5w9RIC8MbEj/Ic1mkuE9zn/JeK1r+KKkQ=="}
|
|
3118
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
3119
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.5ms)
|
|
3120
|
+
Completed 200 OK in 3ms (Views: 2.2ms)
|
|
3121
|
+
|
|
3122
|
+
|
|
3123
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:26:24 -0600
|
|
3124
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3125
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3126
|
+
Completed 302 Found in 1ms
|
|
3127
|
+
|
|
3128
|
+
|
|
3129
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:26:24 -0600
|
|
3130
|
+
(google_oauth2) Request phase initiated.
|
|
3131
|
+
Started GET "/auth/google_oauth2/callback?state=3b5fe5819b26d9294ac6e0c69675ab7a2ad3eb8a29759477&code=4/QF5kYlspoSv8iyZ8UBXsbRWCkhFPraaiq5lj8w_m900" for ::1 at 2016-09-11 18:26:24 -0600
|
|
3132
|
+
(google_oauth2) Callback phase initiated.
|
|
3133
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3134
|
+
Parameters: {"state"=>"3b5fe5819b26d9294ac6e0c69675ab7a2ad3eb8a29759477", "code"=>"4/QF5kYlspoSv8iyZ8UBXsbRWCkhFPraaiq5lj8w_m900", "provider"=>"google_oauth2"}
|
|
3135
|
+
Redirected to http://localhost:3000/
|
|
3136
|
+
Completed 302 Found in 1ms
|
|
3137
|
+
|
|
3138
|
+
|
|
3139
|
+
Started GET "/" for ::1 at 2016-09-11 18:26:24 -0600
|
|
3140
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3141
|
+
Parameters: {"internal"=>true}
|
|
3142
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3143
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
|
|
3144
|
+
Completed 200 OK in 6ms (Views: 4.1ms)
|
|
3145
|
+
|
|
3146
|
+
|
|
3147
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:29 -0600
|
|
3148
|
+
Processing by PrivateController#show as HTML
|
|
3149
|
+
Rendering private/show.html.erb within layouts/application
|
|
3150
|
+
Rendered private/show.html.erb within layouts/application (0.2ms)
|
|
3151
|
+
Completed 200 OK in 6ms (Views: 4.6ms)
|
|
3152
|
+
|
|
3153
|
+
|
|
3154
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:33 -0600
|
|
3155
|
+
Processing by PrivateController#show as HTML
|
|
3156
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3157
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3158
|
+
Completed 302 Found in 1ms
|
|
3159
|
+
|
|
3160
|
+
|
|
3161
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:26:33 -0600
|
|
3162
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3163
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3164
|
+
Completed 302 Found in 0ms
|
|
3165
|
+
|
|
3166
|
+
|
|
3167
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:26:33 -0600
|
|
3168
|
+
(google_oauth2) Request phase initiated.
|
|
3169
|
+
Started GET "/auth/google_oauth2/callback?state=cdcdb231dc93eae59c2f2ac36ed21c4961686459bd9bbdaa&code=4/SBJKMV-YStxh7T8A0FYII4-Z39kwNnzFLaG14pzIZMs" for ::1 at 2016-09-11 18:26:33 -0600
|
|
3170
|
+
(google_oauth2) Callback phase initiated.
|
|
3171
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3172
|
+
Parameters: {"state"=>"cdcdb231dc93eae59c2f2ac36ed21c4961686459bd9bbdaa", "code"=>"4/SBJKMV-YStxh7T8A0FYII4-Z39kwNnzFLaG14pzIZMs", "provider"=>"google_oauth2"}
|
|
3173
|
+
Redirected to http://localhost:3000/
|
|
3174
|
+
Completed 302 Found in 0ms
|
|
3175
|
+
|
|
3176
|
+
|
|
3177
|
+
Started GET "/" for ::1 at 2016-09-11 18:26:33 -0600
|
|
3178
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3179
|
+
Parameters: {"internal"=>true}
|
|
3180
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3181
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
|
|
3182
|
+
Completed 200 OK in 6ms (Views: 4.1ms)
|
|
3183
|
+
|
|
3184
|
+
|
|
3185
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:36 -0600
|
|
3186
|
+
Processing by PrivateController#show as HTML
|
|
3187
|
+
Rendering private/show.html.erb within layouts/application
|
|
3188
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3189
|
+
Completed 200 OK in 6ms (Views: 4.8ms)
|
|
3190
|
+
|
|
3191
|
+
|
|
3192
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:37 -0600
|
|
3193
|
+
Processing by PrivateController#show as HTML
|
|
3194
|
+
Rendering private/show.html.erb within layouts/application
|
|
3195
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3196
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
|
3197
|
+
|
|
3198
|
+
|
|
3199
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 18:26:37 -0600
|
|
3200
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:38 -0600
|
|
3201
|
+
Processing by PrivateController#show as HTML
|
|
3202
|
+
Rendering private/show.html.erb within layouts/application
|
|
3203
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3204
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
3205
|
+
|
|
3206
|
+
|
|
3207
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 18:26:38 -0600
|
|
3208
|
+
Started GET "/private" for ::1 at 2016-09-11 18:26:40 -0600
|
|
3209
|
+
Processing by PrivateController#show as HTML
|
|
3210
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3211
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3212
|
+
Completed 302 Found in 1ms
|
|
3213
|
+
|
|
3214
|
+
|
|
3215
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:26:40 -0600
|
|
3216
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3217
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3218
|
+
Completed 302 Found in 0ms
|
|
3219
|
+
|
|
3220
|
+
|
|
3221
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:26:40 -0600
|
|
3222
|
+
(google_oauth2) Request phase initiated.
|
|
3223
|
+
Started GET "/auth/google_oauth2/callback?state=e42b81d6709b2d2c0c791aba5187903a6e737048e90588c2&code=4/Clm5pac3a9QeDZllOuloUY-Z39kwNnzFLaG14pzIZMs" for ::1 at 2016-09-11 18:26:40 -0600
|
|
3224
|
+
(google_oauth2) Callback phase initiated.
|
|
3225
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3226
|
+
Parameters: {"state"=>"e42b81d6709b2d2c0c791aba5187903a6e737048e90588c2", "code"=>"4/Clm5pac3a9QeDZllOuloUY-Z39kwNnzFLaG14pzIZMs", "provider"=>"google_oauth2"}
|
|
3227
|
+
Redirected to http://localhost:3000/
|
|
3228
|
+
Completed 302 Found in 0ms
|
|
3229
|
+
|
|
3230
|
+
|
|
3231
|
+
Started GET "/" for ::1 at 2016-09-11 18:26:40 -0600
|
|
3232
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3233
|
+
Parameters: {"internal"=>true}
|
|
3234
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3235
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
|
|
3236
|
+
Completed 200 OK in 5ms (Views: 3.6ms)
|
|
3237
|
+
|
|
3238
|
+
|
|
3239
|
+
Started GET "/private" for ::1 at 2016-09-11 18:46:19 -0600
|
|
3240
|
+
Processing by PrivateController#show as HTML
|
|
3241
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3242
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3243
|
+
Completed 302 Found in 11ms
|
|
3244
|
+
|
|
3245
|
+
|
|
3246
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:46:19 -0600
|
|
3247
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3248
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3249
|
+
Completed 302 Found in 2ms
|
|
3250
|
+
|
|
3251
|
+
|
|
3252
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:46:19 -0600
|
|
3253
|
+
(google_oauth2) Request phase initiated.
|
|
3254
|
+
Started GET "/auth/google_oauth2/callback?state=8b4e08e2471e2b7920b828c2fbbe94078783b13d78b0897e&code=4/s6sUyWsBk0V1NvgA6E9xILKIhYzz6qoDg59Os71rEfY" for ::1 at 2016-09-11 18:46:19 -0600
|
|
3255
|
+
(google_oauth2) Callback phase initiated.
|
|
3256
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3257
|
+
Parameters: {"state"=>"8b4e08e2471e2b7920b828c2fbbe94078783b13d78b0897e", "code"=>"4/s6sUyWsBk0V1NvgA6E9xILKIhYzz6qoDg59Os71rEfY", "provider"=>"google_oauth2"}
|
|
3258
|
+
Redirected to http://localhost:3000/
|
|
3259
|
+
Completed 302 Found in 1ms
|
|
3260
|
+
|
|
3261
|
+
|
|
3262
|
+
Started GET "/" for ::1 at 2016-09-11 18:46:20 -0600
|
|
3263
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3264
|
+
Parameters: {"internal"=>true}
|
|
3265
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3266
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (3.2ms)
|
|
3267
|
+
Completed 200 OK in 10ms (Views: 7.5ms)
|
|
3268
|
+
|
|
3269
|
+
|
|
3270
|
+
Started GET "/private" for ::1 at 2016-09-11 18:46:23 -0600
|
|
3271
|
+
Processing by PrivateController#show as HTML
|
|
3272
|
+
Rendering private/show.html.erb within layouts/application
|
|
3273
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3274
|
+
Completed 200 OK in 101ms (Views: 100.3ms)
|
|
3275
|
+
|
|
3276
|
+
|
|
3277
|
+
Started GET "/private" for ::1 at 2016-09-11 18:46:30 -0600
|
|
3278
|
+
Processing by PrivateController#show as HTML
|
|
3279
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3280
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3281
|
+
Completed 302 Found in 1ms
|
|
3282
|
+
|
|
3283
|
+
|
|
3284
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:46:30 -0600
|
|
3285
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3286
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3287
|
+
Completed 302 Found in 1ms
|
|
3288
|
+
|
|
3289
|
+
|
|
3290
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:46:30 -0600
|
|
3291
|
+
(google_oauth2) Request phase initiated.
|
|
3292
|
+
Started GET "/auth/google_oauth2/callback?state=bb61dc205e3fef0215c6daa1833d028fe413442a12f0009b&code=4/8DJYKeMnECQhSa7KjklqiVZRxYoOnSZd751PDFk3WJY" for ::1 at 2016-09-11 18:46:31 -0600
|
|
3293
|
+
(google_oauth2) Callback phase initiated.
|
|
3294
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3295
|
+
Parameters: {"state"=>"bb61dc205e3fef0215c6daa1833d028fe413442a12f0009b", "code"=>"4/8DJYKeMnECQhSa7KjklqiVZRxYoOnSZd751PDFk3WJY", "provider"=>"google_oauth2"}
|
|
3296
|
+
Redirected to http://localhost:3000/
|
|
3297
|
+
Completed 302 Found in 0ms
|
|
3298
|
+
|
|
3299
|
+
|
|
3300
|
+
Started GET "/" for ::1 at 2016-09-11 18:46:31 -0600
|
|
3301
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3302
|
+
Parameters: {"internal"=>true}
|
|
3303
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3304
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.7ms)
|
|
3305
|
+
Completed 200 OK in 5ms (Views: 4.0ms)
|
|
3306
|
+
|
|
3307
|
+
|
|
3308
|
+
Started GET "/private" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3309
|
+
Processing by PrivateController#show as HTML
|
|
3310
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3311
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3312
|
+
Completed 302 Found in 1ms
|
|
3313
|
+
|
|
3314
|
+
|
|
3315
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3316
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3317
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3318
|
+
Completed 302 Found in 0ms
|
|
3319
|
+
|
|
3320
|
+
|
|
3321
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3322
|
+
(google_oauth2) Request phase initiated.
|
|
3323
|
+
Started GET "/auth/google_oauth2/callback?state=25bcb1062ad7fb1779509e6fb3a54445e5f9e18252e4aa90&code=4/j2ZPZ-Ga16MIUUsgiYudNPCWhvp_eXPJ1xeaSXBYtRU" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3324
|
+
(google_oauth2) Callback phase initiated.
|
|
3325
|
+
Started GET "/private" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3326
|
+
Processing by PrivateController#show as HTML
|
|
3327
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3328
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3329
|
+
Completed 302 Found in 1ms
|
|
3330
|
+
|
|
3331
|
+
|
|
3332
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3333
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3334
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3335
|
+
Completed 302 Found in 1ms
|
|
3336
|
+
|
|
3337
|
+
|
|
3338
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3339
|
+
(google_oauth2) Request phase initiated.
|
|
3340
|
+
Started GET "/auth/google_oauth2/callback?state=baace68415cd9a67fc0c185387167d3ad4bdce9b57a856c2&code=4/zcCpBzjEyekmm2y9ulMdBmqvRIkNz4aYJiFG8BZMynI" for ::1 at 2016-09-11 18:46:40 -0600
|
|
3341
|
+
(google_oauth2) Callback phase initiated.
|
|
3342
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3343
|
+
Parameters: {"state"=>"25bcb1062ad7fb1779509e6fb3a54445e5f9e18252e4aa90", "code"=>"4/j2ZPZ-Ga16MIUUsgiYudNPCWhvp_eXPJ1xeaSXBYtRU", "provider"=>"google_oauth2"}
|
|
3344
|
+
Redirected to http://localhost:3000/
|
|
3345
|
+
Completed 302 Found in 0ms
|
|
3346
|
+
|
|
3347
|
+
|
|
3348
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3349
|
+
Parameters: {"state"=>"baace68415cd9a67fc0c185387167d3ad4bdce9b57a856c2", "code"=>"4/zcCpBzjEyekmm2y9ulMdBmqvRIkNz4aYJiFG8BZMynI", "provider"=>"google_oauth2"}
|
|
3350
|
+
Redirected to http://localhost:3000/
|
|
3351
|
+
Completed 302 Found in 0ms
|
|
3352
|
+
|
|
3353
|
+
|
|
3354
|
+
Started GET "/" for ::1 at 2016-09-11 18:46:41 -0600
|
|
3355
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3356
|
+
Parameters: {"internal"=>true}
|
|
3357
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3358
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
|
|
3359
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
3360
|
+
|
|
3361
|
+
|
|
3362
|
+
Started GET "/private" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3363
|
+
Processing by PrivateController#show as HTML
|
|
3364
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3365
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3366
|
+
Completed 302 Found in 2ms
|
|
3367
|
+
|
|
3368
|
+
|
|
3369
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3370
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3371
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3372
|
+
Completed 302 Found in 1ms
|
|
3373
|
+
|
|
3374
|
+
|
|
3375
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3376
|
+
(google_oauth2) Request phase initiated.
|
|
3377
|
+
Started GET "/auth/google_oauth2/callback?state=88ba468a434dae444aab838d91ecc5a215e78dd00158cc7e&code=4/6D_GsQPmPZmECi1qUR6R5N-gc0-rRYjfcPkbvP_MzVE" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3378
|
+
(google_oauth2) Callback phase initiated.
|
|
3379
|
+
Started GET "/private" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3380
|
+
Processing by PrivateController#show as HTML
|
|
3381
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3382
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3383
|
+
Completed 302 Found in 1ms
|
|
3384
|
+
|
|
3385
|
+
|
|
3386
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3387
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3388
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3389
|
+
Completed 302 Found in 1ms
|
|
3390
|
+
|
|
3391
|
+
|
|
3392
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:47:13 -0600
|
|
3393
|
+
(google_oauth2) Request phase initiated.
|
|
3394
|
+
Started GET "/auth/google_oauth2/callback?state=2511ecd9ab3ebbc107ec977ede2ed61bf1c1135d66489a54&code=4/9kPmYEqFrqs0b10pAk2ZQOntlsNAOAvxalyhNra8LR0" for ::1 at 2016-09-11 18:47:14 -0600
|
|
3395
|
+
(google_oauth2) Callback phase initiated.
|
|
3396
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3397
|
+
Parameters: {"state"=>"88ba468a434dae444aab838d91ecc5a215e78dd00158cc7e", "code"=>"4/6D_GsQPmPZmECi1qUR6R5N-gc0-rRYjfcPkbvP_MzVE", "provider"=>"google_oauth2"}
|
|
3398
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3399
|
+
Parameters: {"state"=>"2511ecd9ab3ebbc107ec977ede2ed61bf1c1135d66489a54", "code"=>"4/9kPmYEqFrqs0b10pAk2ZQOntlsNAOAvxalyhNra8LR0", "provider"=>"google_oauth2"}
|
|
3400
|
+
Redirected to http://localhost:3000/
|
|
3401
|
+
Completed 302 Found in 340ms
|
|
3402
|
+
|
|
3403
|
+
|
|
3404
|
+
Redirected to http://localhost:3000/
|
|
3405
|
+
Completed 302 Found in 3ms
|
|
3406
|
+
|
|
3407
|
+
|
|
3408
|
+
Started GET "/" for ::1 at 2016-09-11 18:47:14 -0600
|
|
3409
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3410
|
+
Parameters: {"internal"=>true}
|
|
3411
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3412
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.5ms)
|
|
3413
|
+
Completed 200 OK in 5ms (Views: 3.9ms)
|
|
3414
|
+
|
|
3415
|
+
|
|
3416
|
+
Started GET "/private" for ::1 at 2016-09-11 18:50:43 -0600
|
|
3417
|
+
Processing by PrivateController#show as HTML
|
|
3418
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3419
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3420
|
+
Completed 302 Found in 3ms
|
|
3421
|
+
|
|
3422
|
+
|
|
3423
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:50:43 -0600
|
|
3424
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3425
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3426
|
+
Completed 302 Found in 1ms
|
|
3427
|
+
|
|
3428
|
+
|
|
3429
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:50:43 -0600
|
|
3430
|
+
(google_oauth2) Request phase initiated.
|
|
3431
|
+
Started GET "/auth/google_oauth2/callback?state=66bcac3765e541629a5804f07e3c57cee1cb0ca1a96c09cf&code=4/tScnZYtBWR1iLzPYveJ2VumPmc3WLLPda_847WC88kg" for ::1 at 2016-09-11 18:50:44 -0600
|
|
3432
|
+
(google_oauth2) Callback phase initiated.
|
|
3433
|
+
Started GET "/private" for ::1 at 2016-09-11 18:50:44 -0600
|
|
3434
|
+
Processing by PrivateController#show as HTML
|
|
3435
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3436
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3437
|
+
Completed 302 Found in 1ms
|
|
3438
|
+
|
|
3439
|
+
|
|
3440
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:50:44 -0600
|
|
3441
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3442
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3443
|
+
Completed 302 Found in 1ms
|
|
3444
|
+
|
|
3445
|
+
|
|
3446
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:50:44 -0600
|
|
3447
|
+
(google_oauth2) Request phase initiated.
|
|
3448
|
+
Started GET "/auth/google_oauth2/callback?state=850e42e2f02f983579308208c1beb277cbadd7d17db80314&code=4/rsWUzPEJxVTCUMk-YgiHdhtpavP1TxeSfaQq6mcyhUk" for ::1 at 2016-09-11 18:50:44 -0600
|
|
3449
|
+
(google_oauth2) Callback phase initiated.
|
|
3450
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3451
|
+
Parameters: {"state"=>"66bcac3765e541629a5804f07e3c57cee1cb0ca1a96c09cf", "code"=>"4/tScnZYtBWR1iLzPYveJ2VumPmc3WLLPda_847WC88kg", "provider"=>"google_oauth2"}
|
|
3452
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3453
|
+
Parameters: {"state"=>"850e42e2f02f983579308208c1beb277cbadd7d17db80314", "code"=>"4/rsWUzPEJxVTCUMk-YgiHdhtpavP1TxeSfaQq6mcyhUk", "provider"=>"google_oauth2"}
|
|
3454
|
+
Redirected to http://localhost:3000/private
|
|
3455
|
+
Redirected to http://localhost:3000/private
|
|
3456
|
+
Completed 302 Found in 10ms
|
|
3457
|
+
|
|
3458
|
+
|
|
3459
|
+
Completed 302 Found in 6ms
|
|
3460
|
+
|
|
3461
|
+
|
|
3462
|
+
Started GET "/private" for ::1 at 2016-09-11 18:50:45 -0600
|
|
3463
|
+
Processing by PrivateController#show as HTML
|
|
3464
|
+
Rendering private/show.html.erb within layouts/application
|
|
3465
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3466
|
+
Completed 200 OK in 15ms (Views: 13.8ms)
|
|
3467
|
+
|
|
3468
|
+
|
|
3469
|
+
Started GET "/private" for ::1 at 2016-09-11 18:53:32 -0600
|
|
3470
|
+
Processing by PrivateController#show as HTML
|
|
3471
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3472
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3473
|
+
Completed 302 Found in 2ms
|
|
3474
|
+
|
|
3475
|
+
|
|
3476
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:53:32 -0600
|
|
3477
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3478
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3479
|
+
Completed 302 Found in 2ms
|
|
3480
|
+
|
|
3481
|
+
|
|
3482
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:53:32 -0600
|
|
3483
|
+
(google_oauth2) Request phase initiated.
|
|
3484
|
+
Started GET "/auth/google_oauth2/callback?state=f4f651438693a7889b0b7cba7b6354dfd81980b0479bf4b9&code=4/_pKgkiCh1qIPc-IcpCWETlS75OrNLK3sSwMY_MBqLDM" for ::1 at 2016-09-11 18:53:32 -0600
|
|
3485
|
+
(google_oauth2) Callback phase initiated.
|
|
3486
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3487
|
+
Parameters: {"state"=>"f4f651438693a7889b0b7cba7b6354dfd81980b0479bf4b9", "code"=>"4/_pKgkiCh1qIPc-IcpCWETlS75OrNLK3sSwMY_MBqLDM", "provider"=>"google_oauth2"}
|
|
3488
|
+
Redirected to http://localhost:3000/private
|
|
3489
|
+
Completed 302 Found in 1ms
|
|
3490
|
+
|
|
3491
|
+
|
|
3492
|
+
Started GET "/private" for ::1 at 2016-09-11 18:53:32 -0600
|
|
3493
|
+
Processing by PrivateController#show as HTML
|
|
3494
|
+
Rendering private/show.html.erb within layouts/application
|
|
3495
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3496
|
+
Completed 200 OK in 7ms (Views: 5.8ms)
|
|
3497
|
+
|
|
3498
|
+
|
|
3499
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 18:53:32 -0600
|
|
3500
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:13 -0600
|
|
3501
|
+
Processing by PrivateController#show as HTML
|
|
3502
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3503
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3504
|
+
Completed 302 Found in 2ms
|
|
3505
|
+
|
|
3506
|
+
|
|
3507
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:58:13 -0600
|
|
3508
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3509
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3510
|
+
Completed 302 Found in 1ms
|
|
3511
|
+
|
|
3512
|
+
|
|
3513
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:58:13 -0600
|
|
3514
|
+
(google_oauth2) Request phase initiated.
|
|
3515
|
+
Started GET "/auth/google_oauth2/callback?state=efdac6efdaf12e9f63561ad731b46d14ad186f555b9eca2a&code=4/c4dLmhPo4tDPvYNJSCiZHMw3pZk5wwLJ92zO2yIogxU" for ::1 at 2016-09-11 18:58:13 -0600
|
|
3516
|
+
(google_oauth2) Callback phase initiated.
|
|
3517
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3518
|
+
Parameters: {"state"=>"efdac6efdaf12e9f63561ad731b46d14ad186f555b9eca2a", "code"=>"4/c4dLmhPo4tDPvYNJSCiZHMw3pZk5wwLJ92zO2yIogxU", "provider"=>"google_oauth2"}
|
|
3519
|
+
Redirected to http://localhost:3000/private
|
|
3520
|
+
Completed 302 Found in 1ms
|
|
3521
|
+
|
|
3522
|
+
|
|
3523
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:13 -0600
|
|
3524
|
+
Processing by PrivateController#show as HTML
|
|
3525
|
+
Rendering private/show.html.erb within layouts/application
|
|
3526
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3527
|
+
Completed 200 OK in 7ms (Views: 6.0ms)
|
|
3528
|
+
|
|
3529
|
+
|
|
3530
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:17 -0600
|
|
3531
|
+
Processing by PrivateController#show as HTML
|
|
3532
|
+
Rendering private/show.html.erb within layouts/application
|
|
3533
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3534
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
|
3535
|
+
|
|
3536
|
+
|
|
3537
|
+
Started GET "/public" for ::1 at 2016-09-11 18:58:17 -0600
|
|
3538
|
+
Processing by PublicController#show as HTML
|
|
3539
|
+
Rendering public/show.html.erb within layouts/application
|
|
3540
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3541
|
+
Completed 200 OK in 7ms (Views: 5.8ms)
|
|
3542
|
+
|
|
3543
|
+
|
|
3544
|
+
Started GET "/public" for ::1 at 2016-09-11 18:58:19 -0600
|
|
3545
|
+
Processing by PublicController#show as HTML
|
|
3546
|
+
Rendering public/show.html.erb within layouts/application
|
|
3547
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3548
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
|
3549
|
+
|
|
3550
|
+
|
|
3551
|
+
Started GET "/public" for ::1 at 2016-09-11 18:58:23 -0600
|
|
3552
|
+
Processing by PublicController#show as HTML
|
|
3553
|
+
Rendering public/show.html.erb within layouts/application
|
|
3554
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3555
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
3556
|
+
|
|
3557
|
+
|
|
3558
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:25 -0600
|
|
3559
|
+
Processing by PrivateController#show as HTML
|
|
3560
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3561
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3562
|
+
Completed 302 Found in 1ms
|
|
3563
|
+
|
|
3564
|
+
|
|
3565
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:58:25 -0600
|
|
3566
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3567
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3568
|
+
Completed 302 Found in 1ms
|
|
3569
|
+
|
|
3570
|
+
|
|
3571
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:58:25 -0600
|
|
3572
|
+
(google_oauth2) Request phase initiated.
|
|
3573
|
+
Started GET "/auth/google_oauth2/callback?state=7bc352f6427c69cfe9b535afe17ab25f224d0e81821156b3&code=4/rpl5AjUVQS0jMAdTs9CnTRSlLOpOP1-Jj38o2XEBQtI" for ::1 at 2016-09-11 18:58:25 -0600
|
|
3574
|
+
(google_oauth2) Callback phase initiated.
|
|
3575
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3576
|
+
Parameters: {"state"=>"7bc352f6427c69cfe9b535afe17ab25f224d0e81821156b3", "code"=>"4/rpl5AjUVQS0jMAdTs9CnTRSlLOpOP1-Jj38o2XEBQtI", "provider"=>"google_oauth2"}
|
|
3577
|
+
Redirected to http://localhost:3000/private
|
|
3578
|
+
Completed 302 Found in 0ms
|
|
3579
|
+
|
|
3580
|
+
|
|
3581
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:25 -0600
|
|
3582
|
+
Processing by PrivateController#show as HTML
|
|
3583
|
+
Rendering private/show.html.erb within layouts/application
|
|
3584
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
3585
|
+
Completed 200 OK in 7ms (Views: 5.7ms)
|
|
3586
|
+
|
|
3587
|
+
|
|
3588
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:30 -0600
|
|
3589
|
+
Processing by PrivateController#show as HTML
|
|
3590
|
+
Rendering private/show.html.erb within layouts/application
|
|
3591
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3592
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
|
3593
|
+
|
|
3594
|
+
|
|
3595
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:32 -0600
|
|
3596
|
+
Processing by PrivateController#show as HTML
|
|
3597
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3598
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3599
|
+
Completed 302 Found in 1ms
|
|
3600
|
+
|
|
3601
|
+
|
|
3602
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:58:32 -0600
|
|
3603
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3604
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3605
|
+
Completed 302 Found in 1ms
|
|
3606
|
+
|
|
3607
|
+
|
|
3608
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:58:32 -0600
|
|
3609
|
+
(google_oauth2) Request phase initiated.
|
|
3610
|
+
Started GET "/auth/google_oauth2/callback?state=5fdecaa059c5aefdf9aa660f14e126e6ce46ccf322f73f3e&code=4/9noiHGWZ0o_MqkdLd9vBa8w3pZk5wwLJ92zO2yIogxU" for ::1 at 2016-09-11 18:58:32 -0600
|
|
3611
|
+
(google_oauth2) Callback phase initiated.
|
|
3612
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3613
|
+
Parameters: {"state"=>"5fdecaa059c5aefdf9aa660f14e126e6ce46ccf322f73f3e", "code"=>"4/9noiHGWZ0o_MqkdLd9vBa8w3pZk5wwLJ92zO2yIogxU", "provider"=>"google_oauth2"}
|
|
3614
|
+
Redirected to http://localhost:3000/private
|
|
3615
|
+
Completed 302 Found in 0ms
|
|
3616
|
+
|
|
3617
|
+
|
|
3618
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:32 -0600
|
|
3619
|
+
Processing by PrivateController#show as HTML
|
|
3620
|
+
Rendering private/show.html.erb within layouts/application
|
|
3621
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
3622
|
+
Completed 200 OK in 7ms (Views: 5.7ms)
|
|
3623
|
+
|
|
3624
|
+
|
|
3625
|
+
Started GET "/public" for ::1 at 2016-09-11 18:58:37 -0600
|
|
3626
|
+
Processing by PublicController#show as HTML
|
|
3627
|
+
Rendering public/show.html.erb within layouts/application
|
|
3628
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
3629
|
+
Completed 200 OK in 7ms (Views: 5.7ms)
|
|
3630
|
+
|
|
3631
|
+
|
|
3632
|
+
Started GET "/public" for ::1 at 2016-09-11 18:58:39 -0600
|
|
3633
|
+
Processing by PublicController#show as HTML
|
|
3634
|
+
Rendering public/show.html.erb within layouts/application
|
|
3635
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3636
|
+
Completed 200 OK in 7ms (Views: 5.9ms)
|
|
3637
|
+
|
|
3638
|
+
|
|
3639
|
+
Started GET "/public" for ::1 at 2016-09-11 18:58:41 -0600
|
|
3640
|
+
Processing by PublicController#show as HTML
|
|
3641
|
+
Rendering public/show.html.erb within layouts/application
|
|
3642
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3643
|
+
Completed 200 OK in 16ms (Views: 14.6ms)
|
|
3644
|
+
|
|
3645
|
+
|
|
3646
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:42 -0600
|
|
3647
|
+
Processing by PrivateController#show as HTML
|
|
3648
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3649
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3650
|
+
Completed 302 Found in 1ms
|
|
3651
|
+
|
|
3652
|
+
|
|
3653
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 18:58:42 -0600
|
|
3654
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3655
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3656
|
+
Completed 302 Found in 1ms
|
|
3657
|
+
|
|
3658
|
+
|
|
3659
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 18:58:42 -0600
|
|
3660
|
+
(google_oauth2) Request phase initiated.
|
|
3661
|
+
Started GET "/auth/google_oauth2/callback?state=b84df738029f5b6ea876205131e8996f5539df165d1c0fa9&code=4/SbOipkQ51fgNzIj8sZ04vcw3pZk5wwLJ92zO2yIogxU" for ::1 at 2016-09-11 18:58:42 -0600
|
|
3662
|
+
(google_oauth2) Callback phase initiated.
|
|
3663
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3664
|
+
Parameters: {"state"=>"b84df738029f5b6ea876205131e8996f5539df165d1c0fa9", "code"=>"4/SbOipkQ51fgNzIj8sZ04vcw3pZk5wwLJ92zO2yIogxU", "provider"=>"google_oauth2"}
|
|
3665
|
+
Redirected to http://localhost:3000/private
|
|
3666
|
+
Completed 302 Found in 0ms
|
|
3667
|
+
|
|
3668
|
+
|
|
3669
|
+
Started GET "/private" for ::1 at 2016-09-11 18:58:43 -0600
|
|
3670
|
+
Processing by PrivateController#show as HTML
|
|
3671
|
+
Rendering private/show.html.erb within layouts/application
|
|
3672
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
3673
|
+
Completed 200 OK in 7ms (Views: 5.9ms)
|
|
3674
|
+
|
|
3675
|
+
|
|
3676
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 18:58:45 -0600
|
|
3677
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
3678
|
+
Parameters: {"authenticity_token"=>"Ij81TSmWtVoQh2vM3cyBHoGuEzlCKL2cOvqD8kNayBBl5b/2pN2KFPSRa7iP2x5zAv+Zfn84JT3J0thEKJ5+0A=="}
|
|
3679
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
3680
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
|
3681
|
+
Completed 200 OK in 3ms (Views: 3.0ms)
|
|
3682
|
+
|
|
3683
|
+
|
|
3684
|
+
Started GET "/private" for ::1 at 2016-09-11 19:02:17 -0600
|
|
3685
|
+
Processing by PrivateController#show as HTML
|
|
3686
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3687
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3688
|
+
Completed 302 Found in 2ms
|
|
3689
|
+
|
|
3690
|
+
|
|
3691
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 19:02:17 -0600
|
|
3692
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3693
|
+
Completed 500 Internal Server Error in 7ms
|
|
3694
|
+
|
|
3695
|
+
|
|
3696
|
+
|
|
3697
|
+
NoMethodError (undefined method `authenticated?' for #<Omniauth::Rails::SessionsController:0x007fc02b63b4e0>):
|
|
3698
|
+
|
|
3699
|
+
/Users/danrabinowitz/code/omniauth-rails/app/controllers/omniauth/rails/sessions_controller.rb:14:in `new'
|
|
3700
|
+
actionpack (5.0.0.1) lib/action_controller/metal/basic_implicit_render.rb:4:in `send_action'
|
|
3701
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:188:in `process_action'
|
|
3702
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rendering.rb:30:in `process_action'
|
|
3703
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
3704
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:126:in `call'
|
|
3705
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:506:in `block (2 levels) in compile'
|
|
3706
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:455:in `call'
|
|
3707
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:101:in `__run_callbacks__'
|
|
3708
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_process_action_callbacks'
|
|
3709
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3710
|
+
actionpack (5.0.0.1) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
3711
|
+
actionpack (5.0.0.1) lib/action_controller/metal/rescue.rb:20:in `process_action'
|
|
3712
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:32:in `block in process_action'
|
|
3713
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
3714
|
+
activesupport (5.0.0.1) lib/active_support/notifications/instrumenter.rb:21:in `instrument'
|
|
3715
|
+
activesupport (5.0.0.1) lib/active_support/notifications.rb:164:in `instrument'
|
|
3716
|
+
actionpack (5.0.0.1) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
3717
|
+
actionpack (5.0.0.1) lib/action_controller/metal/params_wrapper.rb:248:in `process_action'
|
|
3718
|
+
actionpack (5.0.0.1) lib/abstract_controller/base.rb:126:in `process'
|
|
3719
|
+
actionview (5.0.0.1) lib/action_view/rendering.rb:30:in `process'
|
|
3720
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:190:in `dispatch'
|
|
3721
|
+
actionpack (5.0.0.1) lib/action_controller/metal.rb:262:in `dispatch'
|
|
3722
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:50:in `dispatch'
|
|
3723
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:32:in `serve'
|
|
3724
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
3725
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
3726
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
3727
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
3728
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
3729
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `public_send'
|
|
3730
|
+
railties (5.0.0.1) lib/rails/railtie.rb:193:in `method_missing'
|
|
3731
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:17:in `block in <class:Constraints>'
|
|
3732
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/mapper.rb:46:in `serve'
|
|
3733
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:39:in `block in serve'
|
|
3734
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `each'
|
|
3735
|
+
actionpack (5.0.0.1) lib/action_dispatch/journey/router.rb:26:in `serve'
|
|
3736
|
+
actionpack (5.0.0.1) lib/action_dispatch/routing/route_set.rb:725:in `call'
|
|
3737
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:186:in `call!'
|
|
3738
|
+
omniauth (1.3.1) lib/omniauth/strategy.rb:164:in `call'
|
|
3739
|
+
omniauth (1.3.1) lib/omniauth/builder.rb:63:in `call'
|
|
3740
|
+
rack (2.0.1) lib/rack/etag.rb:25:in `call'
|
|
3741
|
+
rack (2.0.1) lib/rack/conditional_get.rb:25:in `call'
|
|
3742
|
+
rack (2.0.1) lib/rack/head.rb:12:in `call'
|
|
3743
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:222:in `context'
|
|
3744
|
+
rack (2.0.1) lib/rack/session/abstract/id.rb:216:in `call'
|
|
3745
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/cookies.rb:613:in `call'
|
|
3746
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:38:in `block in call'
|
|
3747
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:97:in `__run_callbacks__'
|
|
3748
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:750:in `_run_call_callbacks'
|
|
3749
|
+
activesupport (5.0.0.1) lib/active_support/callbacks.rb:90:in `run_callbacks'
|
|
3750
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/callbacks.rb:36:in `call'
|
|
3751
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3752
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/remote_ip.rb:79:in `call'
|
|
3753
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/debug_exceptions.rb:49:in `call'
|
|
3754
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/show_exceptions.rb:31:in `call'
|
|
3755
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:36:in `call_app'
|
|
3756
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `block in call'
|
|
3757
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `block in tagged'
|
|
3758
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3759
|
+
activesupport (5.0.0.1) lib/active_support/tagged_logging.rb:70:in `tagged'
|
|
3760
|
+
railties (5.0.0.1) lib/rails/rack/logger.rb:24:in `call'
|
|
3761
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/request_id.rb:24:in `call'
|
|
3762
|
+
rack (2.0.1) lib/rack/method_override.rb:22:in `call'
|
|
3763
|
+
rack (2.0.1) lib/rack/runtime.rb:22:in `call'
|
|
3764
|
+
activesupport (5.0.0.1) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3765
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/executor.rb:12:in `call'
|
|
3766
|
+
actionpack (5.0.0.1) lib/action_dispatch/middleware/static.rb:136:in `call'
|
|
3767
|
+
rack (2.0.1) lib/rack/sendfile.rb:111:in `call'
|
|
3768
|
+
railties (5.0.0.1) lib/rails/engine.rb:522:in `call'
|
|
3769
|
+
rack (2.0.1) lib/rack/handler/webrick.rb:86:in `service'
|
|
3770
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:140:in `service'
|
|
3771
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/httpserver.rb:96:in `run'
|
|
3772
|
+
/Users/danrabinowitz/.rubies/ruby-2.3.1/lib/ruby/2.3.0/webrick/server.rb:296:in `block in start_thread'
|
|
3773
|
+
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
|
|
3774
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
3775
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (2.8ms)
|
|
3776
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
3777
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.5ms)
|
|
3778
|
+
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
|
|
3779
|
+
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)
|
|
3780
|
+
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 (45.0ms)
|
|
3781
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 19:02:34 -0600
|
|
3782
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3783
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3784
|
+
Completed 302 Found in 3ms
|
|
3785
|
+
|
|
3786
|
+
|
|
3787
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 19:02:34 -0600
|
|
3788
|
+
(google_oauth2) Request phase initiated.
|
|
3789
|
+
Started GET "/auth/google_oauth2/callback?state=7981a20bdb1847ef7238ff452390a2b94f6d32f486ff62ea&code=4/DB8LJyJhfcl_8iLkicv0aVtFa74YcMjqWyqOA5Vh1Wc" for ::1 at 2016-09-11 19:02:34 -0600
|
|
3790
|
+
(google_oauth2) Callback phase initiated.
|
|
3791
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3792
|
+
Parameters: {"state"=>"7981a20bdb1847ef7238ff452390a2b94f6d32f486ff62ea", "code"=>"4/DB8LJyJhfcl_8iLkicv0aVtFa74YcMjqWyqOA5Vh1Wc", "provider"=>"google_oauth2"}
|
|
3793
|
+
Redirected to http://localhost:3000/private
|
|
3794
|
+
Completed 302 Found in 1ms
|
|
3795
|
+
|
|
3796
|
+
|
|
3797
|
+
Started GET "/private" for ::1 at 2016-09-11 19:02:34 -0600
|
|
3798
|
+
Processing by PrivateController#show as HTML
|
|
3799
|
+
Rendering private/show.html.erb within layouts/application
|
|
3800
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3801
|
+
Completed 200 OK in 7ms (Views: 5.5ms)
|
|
3802
|
+
|
|
3803
|
+
|
|
3804
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 19:02:34 -0600
|
|
3805
|
+
Started GET "/private" for ::1 at 2016-09-11 19:02:36 -0600
|
|
3806
|
+
Processing by PrivateController#show as HTML
|
|
3807
|
+
Rendering private/show.html.erb within layouts/application
|
|
3808
|
+
Rendered private/show.html.erb within layouts/application (0.5ms)
|
|
3809
|
+
Completed 200 OK in 10ms (Views: 8.7ms)
|
|
3810
|
+
|
|
3811
|
+
|
|
3812
|
+
Started GET "/private" for ::1 at 2016-09-11 19:02:38 -0600
|
|
3813
|
+
Processing by PrivateController#show as HTML
|
|
3814
|
+
Rendering private/show.html.erb within layouts/application
|
|
3815
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
3816
|
+
Completed 200 OK in 7ms (Views: 5.6ms)
|
|
3817
|
+
|
|
3818
|
+
|
|
3819
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 19:02:38 -0600
|
|
3820
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 19:02:40 -0600
|
|
3821
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
3822
|
+
Parameters: {"authenticity_token"=>"2jV7SJfXw6oX4+qgoEFqKVyw8S74Yp08z5Pip3bXcTmd7/HzGpz85PP16tTyVvVE3+F7acVyBZ08u7kRHRPH+Q=="}
|
|
3823
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
3824
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
|
3825
|
+
Completed 200 OK in 31766ms (Views: 3.6ms)
|
|
3826
|
+
|
|
3827
|
+
|
|
3828
|
+
Started GET "/private" for ::1 at 2016-09-11 19:03:17 -0600
|
|
3829
|
+
Processing by PrivateController#show as HTML
|
|
3830
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3831
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3832
|
+
Completed 302 Found in 1ms
|
|
3833
|
+
|
|
3834
|
+
|
|
3835
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 19:03:17 -0600
|
|
3836
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3837
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3838
|
+
Completed 302 Found in 1ms
|
|
3839
|
+
|
|
3840
|
+
|
|
3841
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 19:03:17 -0600
|
|
3842
|
+
(google_oauth2) Request phase initiated.
|
|
3843
|
+
Started GET "/auth/google_oauth2/callback?state=10496dc0bef098fd63517c953555ef8d1f0b9a7b91d727db&code=4/UnzurOrpTzZNMijVng1eJZGDM508OJM0GeoeQI48sm4" for ::1 at 2016-09-11 19:03:17 -0600
|
|
3844
|
+
(google_oauth2) Callback phase initiated.
|
|
3845
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3846
|
+
Parameters: {"state"=>"10496dc0bef098fd63517c953555ef8d1f0b9a7b91d727db", "code"=>"4/UnzurOrpTzZNMijVng1eJZGDM508OJM0GeoeQI48sm4", "provider"=>"google_oauth2"}
|
|
3847
|
+
Redirected to http://localhost:3000/private
|
|
3848
|
+
Completed 302 Found in 0ms
|
|
3849
|
+
|
|
3850
|
+
|
|
3851
|
+
Started GET "/private" for ::1 at 2016-09-11 19:03:17 -0600
|
|
3852
|
+
Processing by PrivateController#show as HTML
|
|
3853
|
+
Rendering private/show.html.erb within layouts/application
|
|
3854
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
3855
|
+
Completed 200 OK in 7ms (Views: 5.4ms)
|
|
3856
|
+
|
|
3857
|
+
|
|
3858
|
+
Started GET "/public" for ::1 at 2016-09-11 19:03:18 -0600
|
|
3859
|
+
Processing by PublicController#show as HTML
|
|
3860
|
+
Rendering public/show.html.erb within layouts/application
|
|
3861
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3862
|
+
Completed 200 OK in 8ms (Views: 6.6ms)
|
|
3863
|
+
|
|
3864
|
+
|
|
3865
|
+
Started GET "/public" for ::1 at 2016-09-11 19:03:19 -0600
|
|
3866
|
+
Processing by PublicController#show as HTML
|
|
3867
|
+
Rendering public/show.html.erb within layouts/application
|
|
3868
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
3869
|
+
Completed 200 OK in 7ms (Views: 6.2ms)
|
|
3870
|
+
|
|
3871
|
+
|
|
3872
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 19:03:19 -0600
|
|
3873
|
+
Started GET "/public" for ::1 at 2016-09-11 19:03:25 -0600
|
|
3874
|
+
Processing by PublicController#show as HTML
|
|
3875
|
+
Rendering public/show.html.erb within layouts/application
|
|
3876
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
3877
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
|
3878
|
+
|
|
3879
|
+
|
|
3880
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 19:03:25 -0600
|
|
3881
|
+
Started GET "/private" for ::1 at 2016-09-11 19:03:34 -0600
|
|
3882
|
+
Processing by PrivateController#show as HTML
|
|
3883
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3884
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3885
|
+
Completed 302 Found in 1ms
|
|
3886
|
+
|
|
3887
|
+
|
|
3888
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 19:03:34 -0600
|
|
3889
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3890
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3891
|
+
Completed 302 Found in 1ms
|
|
3892
|
+
|
|
3893
|
+
|
|
3894
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 19:03:34 -0600
|
|
3895
|
+
(google_oauth2) Request phase initiated.
|
|
3896
|
+
Started GET "/auth/google_oauth2/callback?state=7cc01ff09cc722fad0623ccacf61136e31a1835c7cd935dc&code=4/x4ZYfYBLHD3CBpz9FfoVTZGDM508OJM0GeoeQI48sm4" for ::1 at 2016-09-11 19:03:34 -0600
|
|
3897
|
+
(google_oauth2) Callback phase initiated.
|
|
3898
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3899
|
+
Parameters: {"state"=>"7cc01ff09cc722fad0623ccacf61136e31a1835c7cd935dc", "code"=>"4/x4ZYfYBLHD3CBpz9FfoVTZGDM508OJM0GeoeQI48sm4", "provider"=>"google_oauth2"}
|
|
3900
|
+
Redirected to http://localhost:3000/private
|
|
3901
|
+
Completed 302 Found in 0ms
|
|
3902
|
+
|
|
3903
|
+
|
|
3904
|
+
Started GET "/private" for ::1 at 2016-09-11 19:03:34 -0600
|
|
3905
|
+
Processing by PrivateController#show as HTML
|
|
3906
|
+
Rendering private/show.html.erb within layouts/application
|
|
3907
|
+
Rendered private/show.html.erb within layouts/application (0.5ms)
|
|
3908
|
+
Completed 200 OK in 8ms (Views: 6.3ms)
|
|
3909
|
+
|
|
3910
|
+
|
|
3911
|
+
Started GET "/private" for ::1 at 2016-09-11 19:04:33 -0600
|
|
3912
|
+
Processing by PrivateController#show as HTML
|
|
3913
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3914
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3915
|
+
Completed 302 Found in 2ms
|
|
3916
|
+
|
|
3917
|
+
|
|
3918
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 19:04:33 -0600
|
|
3919
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3920
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3921
|
+
Completed 302 Found in 1ms
|
|
3922
|
+
|
|
3923
|
+
|
|
3924
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 19:04:33 -0600
|
|
3925
|
+
(google_oauth2) Request phase initiated.
|
|
3926
|
+
Started GET "/auth/google_oauth2/callback?state=3d7800a7a5bfe63dfab71d411e5154e133b1b2c72b40df99&code=4/vNgizRUz9oi-6JpsN58VknRmHOmOCvWOvJKyxsnziOY" for ::1 at 2016-09-11 19:04:33 -0600
|
|
3927
|
+
(google_oauth2) Callback phase initiated.
|
|
3928
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3929
|
+
Parameters: {"state"=>"3d7800a7a5bfe63dfab71d411e5154e133b1b2c72b40df99", "code"=>"4/vNgizRUz9oi-6JpsN58VknRmHOmOCvWOvJKyxsnziOY", "provider"=>"google_oauth2"}
|
|
3930
|
+
Redirected to http://localhost:3000/private
|
|
3931
|
+
Completed 302 Found in 2ms
|
|
3932
|
+
|
|
3933
|
+
|
|
3934
|
+
Started GET "/private" for ::1 at 2016-09-11 19:04:35 -0600
|
|
3935
|
+
Processing by PrivateController#show as HTML
|
|
3936
|
+
Rendering private/show.html.erb within layouts/application
|
|
3937
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
3938
|
+
Completed 200 OK in 7ms (Views: 6.1ms)
|
|
3939
|
+
|
|
3940
|
+
|
|
3941
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 19:04:36 -0600
|
|
3942
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
3943
|
+
Parameters: {"authenticity_token"=>"tzuLxWHCwpl5P4twQlZBww/MQS3YK7j2eGhpV4fmbTrw4QF+7In9150piwQQQd6ujJ3LauU7IFeLQDLh7CLb+g=="}
|
|
3944
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
3945
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
|
3946
|
+
Completed 200 OK in 3ms (Views: 2.9ms)
|
|
3947
|
+
|
|
3948
|
+
|
|
3949
|
+
Started GET "/" for ::1 at 2016-09-11 22:57:07 -0600
|
|
3950
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
3951
|
+
Parameters: {"internal"=>true}
|
|
3952
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
3953
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (3.8ms)
|
|
3954
|
+
Completed 200 OK in 12ms (Views: 9.7ms)
|
|
3955
|
+
|
|
3956
|
+
|
|
3957
|
+
Started GET "/private" for ::1 at 2016-09-11 22:57:52 -0600
|
|
3958
|
+
Processing by PrivateController#show as HTML
|
|
3959
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3960
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3961
|
+
Completed 302 Found in 15ms
|
|
3962
|
+
|
|
3963
|
+
|
|
3964
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 22:57:52 -0600
|
|
3965
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3966
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3967
|
+
Completed 302 Found in 2ms
|
|
3968
|
+
|
|
3969
|
+
|
|
3970
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 22:57:52 -0600
|
|
3971
|
+
(google_oauth2) Request phase initiated.
|
|
3972
|
+
Started GET "/auth/google_oauth2/callback?state=9f02d6d327789b773f45ec8907dbb33a4a9249e2293f9b8f&code=4/qrxJ9AnQ90KZsHWudIiB613SLEOutZ9KZsV3KBnfzSU" for ::1 at 2016-09-11 22:57:52 -0600
|
|
3973
|
+
(google_oauth2) Callback phase initiated.
|
|
3974
|
+
Started GET "/private" for ::1 at 2016-09-11 22:57:53 -0600
|
|
3975
|
+
Processing by PrivateController#show as HTML
|
|
3976
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
3977
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
3978
|
+
Completed 302 Found in 1ms
|
|
3979
|
+
|
|
3980
|
+
|
|
3981
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 22:57:53 -0600
|
|
3982
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
3983
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
3984
|
+
Completed 302 Found in 1ms
|
|
3985
|
+
|
|
3986
|
+
|
|
3987
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 22:57:53 -0600
|
|
3988
|
+
(google_oauth2) Request phase initiated.
|
|
3989
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3990
|
+
Parameters: {"state"=>"9f02d6d327789b773f45ec8907dbb33a4a9249e2293f9b8f", "code"=>"4/qrxJ9AnQ90KZsHWudIiB613SLEOutZ9KZsV3KBnfzSU", "provider"=>"google_oauth2"}
|
|
3991
|
+
Redirected to http://localhost:3000/private
|
|
3992
|
+
Completed 302 Found in 3ms
|
|
3993
|
+
|
|
3994
|
+
|
|
3995
|
+
Started GET "/auth/google_oauth2/callback?state=80b402053f4b1a478fc1bab538ed56a51067f3f0f442246d&code=4/tYOZ51eDjnY3ndeuaKHAxJD9i9z-9DRjq6s-FjwBago" for ::1 at 2016-09-11 22:57:53 -0600
|
|
3996
|
+
(google_oauth2) Callback phase initiated.
|
|
3997
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
3998
|
+
Parameters: {"state"=>"80b402053f4b1a478fc1bab538ed56a51067f3f0f442246d", "code"=>"4/tYOZ51eDjnY3ndeuaKHAxJD9i9z-9DRjq6s-FjwBago", "provider"=>"google_oauth2"}
|
|
3999
|
+
Redirected to http://localhost:3000/private
|
|
4000
|
+
Completed 302 Found in 0ms
|
|
4001
|
+
|
|
4002
|
+
|
|
4003
|
+
Started GET "/private" for ::1 at 2016-09-11 22:57:53 -0600
|
|
4004
|
+
Processing by PrivateController#show as HTML
|
|
4005
|
+
Rendering private/show.html.erb within layouts/application
|
|
4006
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4007
|
+
Completed 200 OK in 110ms (Views: 108.7ms)
|
|
4008
|
+
|
|
4009
|
+
|
|
4010
|
+
Started GET "/public" for ::1 at 2016-09-11 22:57:56 -0600
|
|
4011
|
+
Processing by PublicController#show as HTML
|
|
4012
|
+
Rendering public/show.html.erb within layouts/application
|
|
4013
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4014
|
+
Completed 200 OK in 7ms (Views: 5.9ms)
|
|
4015
|
+
|
|
4016
|
+
|
|
4017
|
+
Started GET "/public" for ::1 at 2016-09-11 22:57:58 -0600
|
|
4018
|
+
Processing by PublicController#show as HTML
|
|
4019
|
+
Rendering public/show.html.erb within layouts/application
|
|
4020
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4021
|
+
Completed 200 OK in 7ms (Views: 5.7ms)
|
|
4022
|
+
|
|
4023
|
+
|
|
4024
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 22:57:58 -0600
|
|
4025
|
+
Started GET "/public" for ::1 at 2016-09-11 22:58:03 -0600
|
|
4026
|
+
Processing by PublicController#show as HTML
|
|
4027
|
+
Rendering public/show.html.erb within layouts/application
|
|
4028
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4029
|
+
Completed 200 OK in 7ms (Views: 5.9ms)
|
|
4030
|
+
|
|
4031
|
+
|
|
4032
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 22:58:03 -0600
|
|
4033
|
+
Started GET "/public" for ::1 at 2016-09-11 22:58:06 -0600
|
|
4034
|
+
Processing by PublicController#show as HTML
|
|
4035
|
+
Rendering public/show.html.erb within layouts/application
|
|
4036
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4037
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
4038
|
+
|
|
4039
|
+
|
|
4040
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 22:58:06 -0600
|
|
4041
|
+
Started GET "/public" for ::1 at 2016-09-11 22:58:15 -0600
|
|
4042
|
+
Processing by PublicController#show as HTML
|
|
4043
|
+
Rendering public/show.html.erb within layouts/application
|
|
4044
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4045
|
+
Completed 200 OK in 6ms (Views: 5.5ms)
|
|
4046
|
+
|
|
4047
|
+
|
|
4048
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 22:58:15 -0600
|
|
4049
|
+
Started GET "/public" for ::1 at 2016-09-11 22:58:16 -0600
|
|
4050
|
+
Processing by PublicController#show as HTML
|
|
4051
|
+
Rendering public/show.html.erb within layouts/application
|
|
4052
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4053
|
+
Completed 200 OK in 7ms (Views: 5.6ms)
|
|
4054
|
+
|
|
4055
|
+
|
|
4056
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 22:58:16 -0600
|
|
4057
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 22:59:10 -0600
|
|
4058
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
4059
|
+
Parameters: {"authenticity_token"=>"OqljjghIlRN6oUbgnfI3HnCgDcoWqEw1jnF16ToXDEt9c+k1hQOqXZ63RpTP5ahz8/GHjSu41JR9WS5fUdO6iw=="}
|
|
4060
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
4061
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.6ms)
|
|
4062
|
+
Completed 200 OK in 5ms (Views: 2.8ms)
|
|
4063
|
+
|
|
4064
|
+
|
|
4065
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 22:59:11 -0600
|
|
4066
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4067
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4068
|
+
Completed 302 Found in 3ms
|
|
4069
|
+
|
|
4070
|
+
|
|
4071
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 22:59:11 -0600
|
|
4072
|
+
(google_oauth2) Request phase initiated.
|
|
4073
|
+
Started GET "/auth/google_oauth2/callback?state=3622e8051ab1702f18b8c50556ccd3ea2a6928ee4768f58d&code=4/tu8NDjiDF1Yrgvb9enxYSPP5YlQLu23u74XdF3fYuAE" for ::1 at 2016-09-11 22:59:11 -0600
|
|
4074
|
+
(google_oauth2) Callback phase initiated.
|
|
4075
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4076
|
+
Parameters: {"state"=>"3622e8051ab1702f18b8c50556ccd3ea2a6928ee4768f58d", "code"=>"4/tu8NDjiDF1Yrgvb9enxYSPP5YlQLu23u74XdF3fYuAE", "provider"=>"google_oauth2"}
|
|
4077
|
+
Redirected to http://localhost:3000/
|
|
4078
|
+
Completed 302 Found in 1ms
|
|
4079
|
+
|
|
4080
|
+
|
|
4081
|
+
Started GET "/" for ::1 at 2016-09-11 22:59:12 -0600
|
|
4082
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
4083
|
+
Parameters: {"internal"=>true}
|
|
4084
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
4085
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
|
|
4086
|
+
Completed 200 OK in 7ms (Views: 3.7ms)
|
|
4087
|
+
|
|
4088
|
+
|
|
4089
|
+
Started GET "/public" for ::1 at 2016-09-11 22:59:14 -0600
|
|
4090
|
+
Processing by PublicController#show as HTML
|
|
4091
|
+
Rendering public/show.html.erb within layouts/application
|
|
4092
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4093
|
+
Completed 200 OK in 7ms (Views: 6.1ms)
|
|
4094
|
+
|
|
4095
|
+
|
|
4096
|
+
Started GET "/public" for ::1 at 2016-09-11 23:03:10 -0600
|
|
4097
|
+
Processing by PublicController#show as HTML
|
|
4098
|
+
Rendering public/show.html.erb within layouts/application
|
|
4099
|
+
Rendered public/show.html.erb within layouts/application (1.2ms)
|
|
4100
|
+
Completed 200 OK in 121ms (Views: 119.9ms)
|
|
4101
|
+
|
|
4102
|
+
|
|
4103
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 23:03:13 -0600
|
|
4104
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
4105
|
+
Parameters: {"authenticity_token"=>"aFyFST6jypHT9wj2aanCOQmSRLJ9lqvx55Ry/WXfbskvhg/ys+j13zfhCII7vl1UisPO9UCGM1AUvClLDhvYCQ=="}
|
|
4106
|
+
Rendering /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb
|
|
4107
|
+
Rendered /Users/danrabinowitz/code/omniauth-rails/app/views/omniauth/rails/sessions/destroy.html.erb (0.7ms)
|
|
4108
|
+
Completed 200 OK in 3ms (Views: 2.8ms)
|
|
4109
|
+
|
|
4110
|
+
|
|
4111
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 23:03:14 -0600
|
|
4112
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4113
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4114
|
+
Completed 302 Found in 3ms
|
|
4115
|
+
|
|
4116
|
+
|
|
4117
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 23:03:14 -0600
|
|
4118
|
+
(google_oauth2) Request phase initiated.
|
|
4119
|
+
Started GET "/auth/google_oauth2/callback?state=4dd42076b9ebca905c19712c46bd1b58420027543c9ceac1&code=4/NE0c_Po6cLO10mJGNh5W94aKTEDyxmHU6bzdbGBOwT8" for ::1 at 2016-09-11 23:03:14 -0600
|
|
4120
|
+
(google_oauth2) Callback phase initiated.
|
|
4121
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4122
|
+
Parameters: {"state"=>"4dd42076b9ebca905c19712c46bd1b58420027543c9ceac1", "code"=>"4/NE0c_Po6cLO10mJGNh5W94aKTEDyxmHU6bzdbGBOwT8", "provider"=>"google_oauth2"}
|
|
4123
|
+
Redirected to http://localhost:3000/
|
|
4124
|
+
Completed 302 Found in 3ms
|
|
4125
|
+
|
|
4126
|
+
|
|
4127
|
+
Started GET "/" for ::1 at 2016-09-11 23:03:15 -0600
|
|
4128
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
4129
|
+
Parameters: {"internal"=>true}
|
|
4130
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
4131
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (2.4ms)
|
|
4132
|
+
Completed 200 OK in 5ms (Views: 3.7ms)
|
|
4133
|
+
|
|
4134
|
+
|
|
4135
|
+
Started GET "/private" for ::1 at 2016-09-11 23:03:16 -0600
|
|
4136
|
+
Processing by PrivateController#show as HTML
|
|
4137
|
+
Rendering private/show.html.erb within layouts/application
|
|
4138
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4139
|
+
Completed 200 OK in 7ms (Views: 5.8ms)
|
|
4140
|
+
|
|
4141
|
+
|
|
4142
|
+
Started GET "/public" for ::1 at 2016-09-11 23:03:18 -0600
|
|
4143
|
+
Processing by PublicController#show as HTML
|
|
4144
|
+
Rendering public/show.html.erb within layouts/application
|
|
4145
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4146
|
+
Completed 200 OK in 6ms (Views: 5.3ms)
|
|
4147
|
+
|
|
4148
|
+
|
|
4149
|
+
Started GET "/public" for ::1 at 2016-09-11 23:03:24 -0600
|
|
4150
|
+
Processing by PublicController#show as HTML
|
|
4151
|
+
Rendering public/show.html.erb within layouts/application
|
|
4152
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4153
|
+
Completed 200 OK in 6ms (Views: 5.0ms)
|
|
4154
|
+
|
|
4155
|
+
|
|
4156
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 23:03:24 -0600
|
|
4157
|
+
Started GET "/private" for ::1 at 2016-09-11 23:03:46 -0600
|
|
4158
|
+
Processing by PrivateController#show as HTML
|
|
4159
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
4160
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
4161
|
+
Completed 302 Found in 1ms
|
|
4162
|
+
|
|
4163
|
+
|
|
4164
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 23:03:46 -0600
|
|
4165
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4166
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4167
|
+
Completed 302 Found in 1ms
|
|
4168
|
+
|
|
4169
|
+
|
|
4170
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 23:03:46 -0600
|
|
4171
|
+
(google_oauth2) Request phase initiated.
|
|
4172
|
+
Started GET "/auth/google_oauth2/callback?state=1d46a50b251dfe594e526608d7029eab50ffed3d8c639d81&code=4/azXZqU4GnN8P6cwKyNHf_b8A_JQf6sAHKDAqWV_RsF8" for ::1 at 2016-09-11 23:03:46 -0600
|
|
4173
|
+
(google_oauth2) Callback phase initiated.
|
|
4174
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4175
|
+
Parameters: {"state"=>"1d46a50b251dfe594e526608d7029eab50ffed3d8c639d81", "code"=>"4/azXZqU4GnN8P6cwKyNHf_b8A_JQf6sAHKDAqWV_RsF8", "provider"=>"google_oauth2"}
|
|
4176
|
+
Redirected to http://localhost:3000/private
|
|
4177
|
+
Completed 302 Found in 0ms
|
|
4178
|
+
|
|
4179
|
+
|
|
4180
|
+
Started GET "/private" for ::1 at 2016-09-11 23:03:47 -0600
|
|
4181
|
+
Processing by PrivateController#show as HTML
|
|
4182
|
+
Rendering private/show.html.erb within layouts/application
|
|
4183
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4184
|
+
Completed 200 OK in 7ms (Views: 5.6ms)
|
|
4185
|
+
|
|
4186
|
+
|
|
4187
|
+
Started GET "/" for ::1 at 2016-09-11 23:09:26 -0600
|
|
4188
|
+
Processing by Rails::WelcomeController#index as HTML
|
|
4189
|
+
Parameters: {"internal"=>true}
|
|
4190
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb
|
|
4191
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/railties-5.0.0.1/lib/rails/templates/rails/welcome/index.html.erb (3.8ms)
|
|
4192
|
+
Completed 200 OK in 10ms (Views: 7.6ms)
|
|
4193
|
+
|
|
4194
|
+
|
|
4195
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:28 -0600
|
|
4196
|
+
Processing by PrivateController#show as HTML
|
|
4197
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
4198
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
4199
|
+
Completed 302 Found in 10ms
|
|
4200
|
+
|
|
4201
|
+
|
|
4202
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 23:09:28 -0600
|
|
4203
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4204
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4205
|
+
Completed 302 Found in 1ms
|
|
4206
|
+
|
|
4207
|
+
|
|
4208
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 23:09:28 -0600
|
|
4209
|
+
(google_oauth2) Request phase initiated.
|
|
4210
|
+
Started GET "/auth/google_oauth2/callback?state=f1d35e0d152a8561548c25574e4967d06163ee0582e05a76&code=4/1SAWE7O26-VVjXFityCRMbM_Xi2CnxAfSEwHr7NS_nU" for ::1 at 2016-09-11 23:09:28 -0600
|
|
4211
|
+
(google_oauth2) Callback phase initiated.
|
|
4212
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4213
|
+
Parameters: {"state"=>"f1d35e0d152a8561548c25574e4967d06163ee0582e05a76", "code"=>"4/1SAWE7O26-VVjXFityCRMbM_Xi2CnxAfSEwHr7NS_nU", "provider"=>"google_oauth2"}
|
|
4214
|
+
Redirected to http://localhost:3000/private
|
|
4215
|
+
Completed 302 Found in 1ms
|
|
4216
|
+
|
|
4217
|
+
|
|
4218
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:29 -0600
|
|
4219
|
+
Processing by PrivateController#show as HTML
|
|
4220
|
+
Rendering private/show.html.erb within layouts/application
|
|
4221
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4222
|
+
Completed 200 OK in 103ms (Views: 101.4ms)
|
|
4223
|
+
|
|
4224
|
+
|
|
4225
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 23:09:31 -0600
|
|
4226
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
4227
|
+
Parameters: {"authenticity_token"=>"JjxoxwEdnxJn3YHsH8FReiyN7SaKUAXKSRKAHWn6Eh1h5uJ8jFagXIPLgZhN1s4Xr9xnYbdAnWu6OturAj6k3Q=="}
|
|
4228
|
+
Redirected to http://localhost:3000/public
|
|
4229
|
+
Completed 302 Found in 1ms
|
|
4230
|
+
|
|
4231
|
+
|
|
4232
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:31 -0600
|
|
4233
|
+
Processing by PublicController#show as HTML
|
|
4234
|
+
Rendering public/show.html.erb within layouts/application
|
|
4235
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
4236
|
+
Completed 200 OK in 6ms (Views: 5.6ms)
|
|
4237
|
+
|
|
4238
|
+
|
|
4239
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:34 -0600
|
|
4240
|
+
Processing by PublicController#show as HTML
|
|
4241
|
+
Rendering public/show.html.erb within layouts/application
|
|
4242
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4243
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
|
4244
|
+
|
|
4245
|
+
|
|
4246
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:35 -0600
|
|
4247
|
+
Processing by PrivateController#show as HTML
|
|
4248
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
4249
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
4250
|
+
Completed 302 Found in 1ms
|
|
4251
|
+
|
|
4252
|
+
|
|
4253
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 23:09:35 -0600
|
|
4254
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4255
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4256
|
+
Completed 302 Found in 1ms
|
|
4257
|
+
|
|
4258
|
+
|
|
4259
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 23:09:35 -0600
|
|
4260
|
+
(google_oauth2) Request phase initiated.
|
|
4261
|
+
Started GET "/auth/google_oauth2/callback?state=837f0cf7c91f94a3c2c09513158f24060161b8cf9fa1cc1d&code=4/l_VqaXvu5RVUPFJ_XGiUjdX4ujNh2_1amglNf0eh3HQ" for ::1 at 2016-09-11 23:09:35 -0600
|
|
4262
|
+
(google_oauth2) Callback phase initiated.
|
|
4263
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4264
|
+
Parameters: {"state"=>"837f0cf7c91f94a3c2c09513158f24060161b8cf9fa1cc1d", "code"=>"4/l_VqaXvu5RVUPFJ_XGiUjdX4ujNh2_1amglNf0eh3HQ", "provider"=>"google_oauth2"}
|
|
4265
|
+
Redirected to http://localhost:3000/private
|
|
4266
|
+
Completed 302 Found in 0ms
|
|
4267
|
+
|
|
4268
|
+
|
|
4269
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:35 -0600
|
|
4270
|
+
Processing by PrivateController#show as HTML
|
|
4271
|
+
Rendering private/show.html.erb within layouts/application
|
|
4272
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4273
|
+
Completed 200 OK in 8ms (Views: 6.4ms)
|
|
4274
|
+
|
|
4275
|
+
|
|
4276
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:37 -0600
|
|
4277
|
+
Processing by PrivateController#show as HTML
|
|
4278
|
+
Rendering private/show.html.erb within layouts/application
|
|
4279
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
4280
|
+
Completed 200 OK in 7ms (Views: 5.6ms)
|
|
4281
|
+
|
|
4282
|
+
|
|
4283
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:38 -0600
|
|
4284
|
+
Processing by PublicController#show as HTML
|
|
4285
|
+
Rendering public/show.html.erb within layouts/application
|
|
4286
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4287
|
+
Completed 200 OK in 7ms (Views: 5.9ms)
|
|
4288
|
+
|
|
4289
|
+
|
|
4290
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:39 -0600
|
|
4291
|
+
Processing by PrivateController#show as HTML
|
|
4292
|
+
Rendering private/show.html.erb within layouts/application
|
|
4293
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4294
|
+
Completed 200 OK in 6ms (Views: 4.6ms)
|
|
4295
|
+
|
|
4296
|
+
|
|
4297
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:39 -0600
|
|
4298
|
+
Processing by PublicController#show as HTML
|
|
4299
|
+
Rendering public/show.html.erb within layouts/application
|
|
4300
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4301
|
+
Completed 200 OK in 6ms (Views: 5.1ms)
|
|
4302
|
+
|
|
4303
|
+
|
|
4304
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:45 -0600
|
|
4305
|
+
Processing by PublicController#show as HTML
|
|
4306
|
+
Rendering public/show.html.erb within layouts/application
|
|
4307
|
+
Rendered public/show.html.erb within layouts/application (0.2ms)
|
|
4308
|
+
Completed 200 OK in 5ms (Views: 4.4ms)
|
|
4309
|
+
|
|
4310
|
+
|
|
4311
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:46 -0600
|
|
4312
|
+
Processing by PublicController#show as HTML
|
|
4313
|
+
Rendering public/show.html.erb within layouts/application
|
|
4314
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4315
|
+
Completed 200 OK in 5ms (Views: 4.5ms)
|
|
4316
|
+
|
|
4317
|
+
|
|
4318
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:47 -0600
|
|
4319
|
+
Processing by PrivateController#show as HTML
|
|
4320
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
4321
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
4322
|
+
Completed 302 Found in 1ms
|
|
4323
|
+
|
|
4324
|
+
|
|
4325
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 23:09:47 -0600
|
|
4326
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4327
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4328
|
+
Completed 302 Found in 1ms
|
|
4329
|
+
|
|
4330
|
+
|
|
4331
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 23:09:47 -0600
|
|
4332
|
+
(google_oauth2) Request phase initiated.
|
|
4333
|
+
Started GET "/auth/google_oauth2/callback?state=b4f2e17b3a77ab3f7aaf321d8cebbd27f6cbb8aeb7527079&code=4/n4YXTpZnGqpiZWPQwQ84o7M_Xi2CnxAfSEwHr7NS_nU" for ::1 at 2016-09-11 23:09:47 -0600
|
|
4334
|
+
(google_oauth2) Callback phase initiated.
|
|
4335
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4336
|
+
Parameters: {"state"=>"b4f2e17b3a77ab3f7aaf321d8cebbd27f6cbb8aeb7527079", "code"=>"4/n4YXTpZnGqpiZWPQwQ84o7M_Xi2CnxAfSEwHr7NS_nU", "provider"=>"google_oauth2"}
|
|
4337
|
+
Redirected to http://localhost:3000/private
|
|
4338
|
+
Completed 302 Found in 0ms
|
|
4339
|
+
|
|
4340
|
+
|
|
4341
|
+
Started GET "/private" for ::1 at 2016-09-11 23:09:47 -0600
|
|
4342
|
+
Processing by PrivateController#show as HTML
|
|
4343
|
+
Rendering private/show.html.erb within layouts/application
|
|
4344
|
+
Rendered private/show.html.erb within layouts/application (0.3ms)
|
|
4345
|
+
Completed 200 OK in 6ms (Views: 5.2ms)
|
|
4346
|
+
|
|
4347
|
+
|
|
4348
|
+
Started DELETE "/auth/sign_out" for ::1 at 2016-09-11 23:09:50 -0600
|
|
4349
|
+
Processing by Omniauth::Rails::SessionsController#destroy as HTML
|
|
4350
|
+
Parameters: {"authenticity_token"=>"fzmW24ykmz5fO72D3rlyOYw0UzhVrxpZ8rX2QnMywf444xxgAe+kcLstvfeMru1UD2XZf2i/gvgBna30GPZ3Pg=="}
|
|
4351
|
+
Redirected to http://localhost:3000/public
|
|
4352
|
+
Completed 302 Found in 0ms
|
|
4353
|
+
|
|
4354
|
+
|
|
4355
|
+
Started GET "/public" for ::1 at 2016-09-11 23:09:50 -0600
|
|
4356
|
+
Processing by PublicController#show as HTML
|
|
4357
|
+
Rendering public/show.html.erb within layouts/application
|
|
4358
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
4359
|
+
Completed 200 OK in 8ms (Views: 6.5ms)
|
|
4360
|
+
|
|
4361
|
+
|
|
4362
|
+
Started GET "/public" for ::1 at 2016-09-11 23:11:41 -0600
|
|
4363
|
+
Processing by PublicController#show as HTML
|
|
4364
|
+
Rendering public/show.html.erb within layouts/application
|
|
4365
|
+
Rendered public/show.html.erb within layouts/application (0.3ms)
|
|
4366
|
+
Completed 500 Internal Server Error in 13ms
|
|
4367
|
+
|
|
4368
|
+
|
|
4369
|
+
|
|
4370
|
+
ActionView::Template::Error (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
|
|
4371
|
+
13: <li><%= link_to "Private page", private_path %></li>
|
|
4372
|
+
14: </ul>
|
|
4373
|
+
15:
|
|
4374
|
+
16: <% if authenticated? %>
|
|
4375
|
+
17: Logged in as <%= current_user %>
|
|
4376
|
+
18: |
|
|
4377
|
+
19: <%= button_to "Logout", omniauth_rails.sign_out_url, method: :delete %>
|
|
4378
|
+
|
|
4379
|
+
app/views/layouts/application.html.erb:16:in `_app_views_layouts_application_html_erb__2978963262379495963_70295148021180'
|
|
4380
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
4381
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
4382
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.5ms)
|
|
4383
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
4384
|
+
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)
|
|
4385
|
+
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
|
|
4386
|
+
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.8ms)
|
|
4387
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (39.0ms)
|
|
4388
|
+
Started GET "/public" for ::1 at 2016-09-11 23:11:47 -0600
|
|
4389
|
+
Processing by PublicController#show as HTML
|
|
4390
|
+
Rendering public/show.html.erb within layouts/application
|
|
4391
|
+
Rendered public/show.html.erb within layouts/application (0.4ms)
|
|
4392
|
+
Completed 500 Internal Server Error in 8ms
|
|
4393
|
+
|
|
4394
|
+
|
|
4395
|
+
|
|
4396
|
+
ActionView::Template::Error (A copy of Omniauth::Rails::ApplicationHelper has been removed from the module tree but is still active!):
|
|
4397
|
+
13: <li><%= link_to "Private page", private_path %></li>
|
|
4398
|
+
14: </ul>
|
|
4399
|
+
15:
|
|
4400
|
+
16: <% if authenticated? %>
|
|
4401
|
+
17: Logged in as <%= current_user %>
|
|
4402
|
+
18: |
|
|
4403
|
+
19: <%= button_to "Logout", omniauth_rails.sign_out_url, method: :delete %>
|
|
4404
|
+
|
|
4405
|
+
app/views/layouts/application.html.erb:16:in `_app_views_layouts_application_html_erb__2978963262379495963_70295084554440'
|
|
4406
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout
|
|
4407
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb
|
|
4408
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_source.html.erb (3.2ms)
|
|
4409
|
+
Rendering /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb
|
|
4410
|
+
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)
|
|
4411
|
+
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
|
|
4412
|
+
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)
|
|
4413
|
+
Rendered /Users/danrabinowitz/.gem/ruby/2.3.1/gems/actionpack-5.0.0.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (33.8ms)
|
|
4414
|
+
Started GET "/public" for ::1 at 2016-09-11 23:12:01 -0600
|
|
4415
|
+
Processing by PublicController#show as HTML
|
|
4416
|
+
Rendering public/show.html.erb within layouts/application
|
|
4417
|
+
Rendered public/show.html.erb within layouts/application (0.9ms)
|
|
4418
|
+
Completed 200 OK in 112ms (Views: 111.2ms)
|
|
4419
|
+
|
|
4420
|
+
|
|
4421
|
+
Started GET "/assets/omniauth/rails/application-9521e1f7e09e189a0e3daecf5508eaaf172236ce0e16b3b17b90a828a3c67adb.css" for ::1 at 2016-09-11 23:12:01 -0600
|
|
4422
|
+
Started GET "/private" for ::1 at 2016-09-11 23:12:03 -0600
|
|
4423
|
+
Processing by PrivateController#show as HTML
|
|
4424
|
+
Redirected to http://localhost:3000/auth/sign_in
|
|
4425
|
+
Filter chain halted as :require_authentication rendered or redirected
|
|
4426
|
+
Completed 302 Found in 2ms
|
|
4427
|
+
|
|
4428
|
+
|
|
4429
|
+
Started GET "/auth/sign_in" for ::1 at 2016-09-11 23:12:03 -0600
|
|
4430
|
+
Processing by Omniauth::Rails::SessionsController#new as HTML
|
|
4431
|
+
Redirected to http://localhost:3000/auth/google_oauth2
|
|
4432
|
+
Completed 302 Found in 1ms
|
|
4433
|
+
|
|
4434
|
+
|
|
4435
|
+
Started GET "/auth/google_oauth2" for ::1 at 2016-09-11 23:12:03 -0600
|
|
4436
|
+
(google_oauth2) Request phase initiated.
|
|
4437
|
+
Started GET "/auth/google_oauth2/callback?state=5b6031db85f142f296d90cd2aa1287a3a0a7fcb4cdd1c3ed&code=4/xrlXoFSUWGtSrnA4dUacvrhWxE8IZniwCAZ7EObZ8To" for ::1 at 2016-09-11 23:12:03 -0600
|
|
4438
|
+
(google_oauth2) Callback phase initiated.
|
|
4439
|
+
Processing by Omniauth::Rails::SessionsController#create as HTML
|
|
4440
|
+
Parameters: {"state"=>"5b6031db85f142f296d90cd2aa1287a3a0a7fcb4cdd1c3ed", "code"=>"4/xrlXoFSUWGtSrnA4dUacvrhWxE8IZniwCAZ7EObZ8To", "provider"=>"google_oauth2"}
|
|
4441
|
+
Redirected to http://localhost:3000/private
|
|
4442
|
+
Completed 302 Found in 1ms
|
|
4443
|
+
|
|
4444
|
+
|
|
4445
|
+
Started GET "/private" for ::1 at 2016-09-11 23:12:04 -0600
|
|
4446
|
+
Processing by PrivateController#show as HTML
|
|
4447
|
+
Rendering private/show.html.erb within layouts/application
|
|
4448
|
+
Rendered private/show.html.erb within layouts/application (0.4ms)
|
|
4449
|
+
Completed 200 OK in 27996ms (Views: 6.5ms)
|
|
4450
|
+
|
|
4451
|
+
|