authic_client 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -14,7 +14,7 @@ module AuthicClient
14
14
  def destroy
15
15
  session[:user_id] = nil
16
16
  #TODO: Change to PROD url
17
- redirect_path = "http://#{$authic_client_subdomain}.authicstaging.com/authic_sign_out?&return_path=#{URI.escape root_url}"
17
+ redirect_path = "http://#{AuthicClient::AUTHIC_CLIENT_SUBDOMAIN}.authicstaging.com/authic_sign_out?&return_path=#{URI.escape root_url}"
18
18
  redirect_to redirect_path
19
19
  end
20
20
  end
@@ -1,3 +1,3 @@
1
1
  module AuthicClient
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -0,0 +1,13 @@
1
+ module Authic
2
+ module Generators
3
+ class InstallGenerator < Rails::Generators::Base
4
+ source_root File.expand_path("../../templates", __FILE__)
5
+
6
+ def copy_initializers
7
+ template "authic.rb", "config/initializers/authic.rb"
8
+ template "omniauth.rb", "config/initializers/omniauth.rb"
9
+ end
10
+
11
+ end
12
+ end
13
+ end
@@ -0,0 +1,6 @@
1
+ module AuthicClient
2
+ # Authic config
3
+ AUTHIC_CLIENT_KEY ||= ENV['AUTHIC_CLIENT_KEY'] ||= 'E6FRBHNNhWDOMhubF9hfg4ibhuiHn4XMngkbXl5o'
4
+ AUTHIC_CLIENT_SECRET ||= ENV['AUTHIC_CLIENT_SECRET'] ||= 'YjpvSh7KqjnpTfhZgklBQqrpFRamz7354t9GzPoj'
5
+ AUTHIC_CLIENT_SUBDOMAIN ||= ENV['AUTHIC_CLIENT_SUBDOMAIN'] ||= 'dev'
6
+ end
@@ -0,0 +1,6 @@
1
+ Rails.application.config.middleware.use OmniAuth::Builder do
2
+
3
+ #TODO: Change to PROD url
4
+ provider :authic, AuthicClient::AUTHIC_CLIENT_KEY, AuthicClient::AUTHIC_CLIENT_SECRET, :subdomain => AuthicClient::AUTHIC_CLIENT_SUBDOMAIN, :domain => "authicstaging.com"
5
+
6
+ end
@@ -521,3 +521,2107 @@ Served asset /welcome.js - 304 Not Modified (0ms)
521
521
 
522
522
  Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 00:57:59 +1100
523
523
  Served asset /application.js - 304 Not Modified (0ms)
524
+
525
+
526
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:08:50 +1100
527
+ Connecting to database specified by database.yml
528
+ Processing by WelcomeController#index as HTML
529
+ Rendered welcome/index.html.erb within layouts/application (10.8ms)
530
+ Completed 200 OK in 132ms (Views: 131.2ms | ActiveRecord: 0.0ms)
531
+
532
+
533
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:08:51 +1100
534
+ Served asset /welcome.css - 304 Not Modified (2ms)
535
+
536
+
537
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:51 +1100
538
+ Served asset /jquery.js - 304 Not Modified (3ms)
539
+
540
+
541
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:51 +1100
542
+ Served asset /welcome.js - 304 Not Modified (2ms)
543
+
544
+
545
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:51 +1100
546
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
547
+
548
+
549
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:51 +1100
550
+ Served asset /application.js - 304 Not Modified (49ms)
551
+
552
+
553
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:08:51 +1100
554
+ Served asset /application.css - 304 Not Modified (3ms)
555
+
556
+
557
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-10-31 22:08:53 +1100
558
+
559
+
560
+ Started GET "/auth/authic/callback?code=WWd1UwEJtfAATQjX4RRF&state=ace493d498e3b966364364732f5c58944840deb1eb185b8e" for 127.0.0.1 at 2012-10-31 22:08:53 +1100
561
+ Processing by AuthicClient::SessionsController#create as HTML
562
+ Parameters: {"code"=>"WWd1UwEJtfAATQjX4RRF", "state"=>"ace493d498e3b966364364732f5c58944840deb1eb185b8e"}
563
+ User Load (14.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
564
+ Redirected to http://localhost:3001/
565
+ Completed 302 Found in 179ms (ActiveRecord: 21.7ms)
566
+
567
+
568
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
569
+ Processing by WelcomeController#index as HTML
570
+ User Load (31.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
571
+ Rendered welcome/index.html.erb within layouts/application (33.4ms)
572
+ Completed 200 OK in 38ms (Views: 6.5ms | ActiveRecord: 31.4ms)
573
+
574
+
575
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
576
+ Served asset /jquery.js - 304 Not Modified (0ms)
577
+
578
+
579
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
580
+ Served asset /welcome.js - 304 Not Modified (0ms)
581
+
582
+
583
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
584
+ Served asset /welcome.css - 304 Not Modified (0ms)
585
+
586
+
587
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
588
+ Served asset /application.css - 304 Not Modified (0ms)
589
+
590
+
591
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
592
+ Served asset /application.js - 304 Not Modified (0ms)
593
+
594
+
595
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:56 +1100
596
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
597
+
598
+
599
+ Started GET "/signout" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
600
+ Processing by AuthicClient::SessionsController#destroy as HTML
601
+ Redirected to http://dev.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
602
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
603
+
604
+
605
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
606
+ Processing by WelcomeController#index as HTML
607
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
608
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
609
+
610
+
611
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
612
+ Served asset /application.js - 304 Not Modified (0ms)
613
+
614
+
615
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
616
+ Served asset /application.css - 304 Not Modified (0ms)
617
+
618
+
619
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
620
+ Served asset /welcome.css - 304 Not Modified (0ms)
621
+
622
+
623
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
624
+ Served asset /jquery.js - 304 Not Modified (0ms)
625
+
626
+
627
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
628
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
629
+
630
+
631
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:08:58 +1100
632
+ Served asset /welcome.js - 304 Not Modified (0ms)
633
+
634
+
635
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-10-31 22:09:03 +1100
636
+
637
+
638
+ Started GET "/auth/authic/callback?code=x6tIgBVqVk8kBYzekCxR" for 127.0.0.1 at 2012-10-31 22:09:17 +1100
639
+
640
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
641
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:71:in `callback_phase'
642
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
643
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
644
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
645
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
646
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
647
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
648
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
649
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
650
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
651
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
652
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
653
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
654
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
655
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
656
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
657
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
658
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2392010793439615603__call__4400248829295476240__callbacks'
659
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
660
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
661
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
662
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
663
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
664
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
665
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
666
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
667
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
668
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
669
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
670
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
671
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
672
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
673
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
674
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
675
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
676
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
677
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
678
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
679
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
680
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
681
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
682
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
683
+
684
+
685
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
686
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.3ms)
687
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (15.8ms)
688
+
689
+
690
+ Started GET "/auth/authic/callback?code=x6tIgBVqVk8kBYzekCxR" for 127.0.0.1 at 2012-10-31 22:09:29 +1100
691
+
692
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
693
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:71:in `callback_phase'
694
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
695
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
696
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
697
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
698
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
699
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
700
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
701
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
702
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
703
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
704
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
705
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
706
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
707
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
708
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
709
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
710
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__2392010793439615603__call__4400248829295476240__callbacks'
711
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
712
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
713
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
714
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
715
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
716
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
717
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
718
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
719
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
720
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
721
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
722
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
723
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
724
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
725
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
726
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
727
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
728
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
729
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
730
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
731
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
732
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
733
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
734
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
735
+
736
+
737
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
738
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
739
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (41.0ms)
740
+
741
+
742
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
743
+ Processing by WelcomeController#index as HTML
744
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
745
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
746
+
747
+
748
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
749
+ Served asset /application.css - 304 Not Modified (0ms)
750
+
751
+
752
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
753
+ Served asset /welcome.css - 304 Not Modified (0ms)
754
+
755
+
756
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
757
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
758
+
759
+
760
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
761
+ Served asset /welcome.js - 304 Not Modified (0ms)
762
+
763
+
764
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
765
+ Served asset /jquery.js - 304 Not Modified (0ms)
766
+
767
+
768
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:33 +1100
769
+ Served asset /application.js - 304 Not Modified (0ms)
770
+
771
+
772
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-10-31 22:09:36 +1100
773
+
774
+
775
+ Started GET "/auth/authic/callback?code=Pqg2881JzrrR8NKxrlBi&state=e3cb8e8532c0612348c36eaf491eb27b9b1b8c70d782dc0d" for 127.0.0.1 at 2012-10-31 22:09:36 +1100
776
+ Processing by AuthicClient::SessionsController#create as HTML
777
+ Parameters: {"code"=>"Pqg2881JzrrR8NKxrlBi", "state"=>"e3cb8e8532c0612348c36eaf491eb27b9b1b8c70d782dc0d"}
778
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
779
+ Redirected to http://localhost:3001/
780
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
781
+
782
+
783
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
784
+ Processing by WelcomeController#index as HTML
785
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
786
+ Rendered welcome/index.html.erb within layouts/application (1.6ms)
787
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.1ms)
788
+
789
+
790
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
791
+ Served asset /welcome.js - 304 Not Modified (0ms)
792
+
793
+
794
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
795
+ Served asset /application.css - 304 Not Modified (0ms)
796
+
797
+
798
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
799
+ Served asset /application.js - 304 Not Modified (0ms)
800
+
801
+
802
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
803
+ Served asset /welcome.css - 304 Not Modified (0ms)
804
+
805
+
806
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
807
+ Served asset /jquery.js - 304 Not Modified (0ms)
808
+
809
+
810
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:09:38 +1100
811
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
812
+
813
+
814
+ Started GET "/signout" for 127.0.0.1 at 2012-10-31 22:13:35 +1100
815
+ Connecting to database specified by database.yml
816
+ Processing by AuthicClient::SessionsController#destroy as HTML
817
+ Redirected to http://dev.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
818
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
819
+
820
+
821
+ Started GET "/signout" for 127.0.0.1 at 2012-10-31 22:13:46 +1100
822
+ Processing by AuthicClient::SessionsController#destroy as HTML
823
+ Redirected to http://dev.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
824
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
825
+
826
+
827
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
828
+ Processing by WelcomeController#index as HTML
829
+ Rendered welcome/index.html.erb within layouts/application (10.3ms)
830
+ Completed 200 OK in 56ms (Views: 55.6ms | ActiveRecord: 0.0ms)
831
+
832
+
833
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
834
+ Served asset /welcome.css - 304 Not Modified (4ms)
835
+
836
+
837
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
838
+ Served asset /jquery.js - 304 Not Modified (2ms)
839
+
840
+
841
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
842
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
843
+
844
+
845
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
846
+ Served asset /application.js - 304 Not Modified (5ms)
847
+
848
+
849
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
850
+ Served asset /welcome.js - 304 Not Modified (1ms)
851
+
852
+
853
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:13:47 +1100
854
+ Served asset /application.css - 304 Not Modified (4ms)
855
+
856
+
857
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-10-31 22:13:51 +1100
858
+
859
+
860
+ Started GET "/auth/authic/callback?code=3jaDzVmOZGeXwA03iYws" for 127.0.0.1 at 2012-10-31 22:14:08 +1100
861
+
862
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
863
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:71:in `callback_phase'
864
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
865
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
866
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
867
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
868
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
869
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
870
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
871
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
872
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
873
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
874
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
875
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
876
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
877
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
878
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
879
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
880
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4481500590967835078__call__1825815514849123397__callbacks'
881
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
882
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
883
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
884
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
885
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
886
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
887
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
888
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
889
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
890
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
891
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
892
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
893
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
894
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
895
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
896
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
897
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
898
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
899
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
900
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
901
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
902
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
903
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
904
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
905
+
906
+
907
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
908
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
909
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.6ms)
910
+
911
+
912
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:18:04 +1100
913
+ Processing by WelcomeController#index as HTML
914
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
915
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
916
+
917
+
918
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:18:05 +1100
919
+ Served asset /welcome.css - 304 Not Modified (0ms)
920
+
921
+
922
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:05 +1100
923
+ Served asset /application.js - 304 Not Modified (0ms)
924
+
925
+
926
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:05 +1100
927
+ Served asset /jquery.js - 304 Not Modified (0ms)
928
+
929
+
930
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:05 +1100
931
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
932
+
933
+
934
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:18:05 +1100
935
+ Served asset /application.css - 304 Not Modified (0ms)
936
+
937
+
938
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:05 +1100
939
+ Served asset /welcome.js - 304 Not Modified (0ms)
940
+
941
+
942
+ Started GET "/auth/authic?&state=sign_up" for 127.0.0.1 at 2012-10-31 22:18:09 +1100
943
+
944
+
945
+ Started GET "/auth/authic/callback?code=0HfG2O3fcHQGnYnlKFpo&state=44680b09046769df77819ee3fe5cade1c62f0d043de6795e" for 127.0.0.1 at 2012-10-31 22:18:09 +1100
946
+ Processing by AuthicClient::SessionsController#create as HTML
947
+ Parameters: {"code"=>"0HfG2O3fcHQGnYnlKFpo", "state"=>"44680b09046769df77819ee3fe5cade1c62f0d043de6795e"}
948
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
949
+ Redirected to http://localhost:3001/
950
+ Completed 302 Found in 116ms (ActiveRecord: 7.2ms)
951
+
952
+
953
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
954
+ Processing by WelcomeController#index as HTML
955
+ User Load (11.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
956
+ Rendered welcome/index.html.erb within layouts/application (13.3ms)
957
+ Completed 200 OK in 18ms (Views: 6.2ms | ActiveRecord: 11.6ms)
958
+
959
+
960
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
961
+ Served asset /welcome.css - 304 Not Modified (0ms)
962
+
963
+
964
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
965
+ Served asset /application.css - 304 Not Modified (0ms)
966
+
967
+
968
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
969
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
970
+
971
+
972
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
973
+ Served asset /welcome.js - 304 Not Modified (0ms)
974
+
975
+
976
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
977
+ Served asset /jquery.js - 304 Not Modified (0ms)
978
+
979
+
980
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:11 +1100
981
+ Served asset /application.js - 304 Not Modified (0ms)
982
+
983
+
984
+ Started GET "/signout" for 127.0.0.1 at 2012-10-31 22:18:17 +1100
985
+ Processing by AuthicClient::SessionsController#destroy as HTML
986
+ Redirected to http://dev.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
987
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
988
+
989
+
990
+ Started GET "/" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
991
+ Processing by WelcomeController#index as HTML
992
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
993
+ Completed 200 OK in 4ms (Views: 4.4ms | ActiveRecord: 0.0ms)
994
+
995
+
996
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
997
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
998
+
999
+
1000
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
1001
+ Served asset /welcome.js - 304 Not Modified (0ms)
1002
+
1003
+
1004
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
1005
+ Served asset /application.js - 304 Not Modified (0ms)
1006
+
1007
+
1008
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
1009
+ Served asset /welcome.css - 304 Not Modified (0ms)
1010
+
1011
+
1012
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
1013
+ Served asset /application.css - 304 Not Modified (0ms)
1014
+
1015
+
1016
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 22:18:18 +1100
1017
+ Served asset /jquery.js - 304 Not Modified (0ms)
1018
+
1019
+
1020
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-10-31 22:18:20 +1100
1021
+
1022
+
1023
+ Started GET "/auth/authic?&state=sign_up" for 127.0.0.1 at 2012-10-31 22:18:24 +1100
1024
+
1025
+
1026
+ Started GET "/auth/authic/callback?code=e0tfXDspOxz7f7oacKic" for 127.0.0.1 at 2012-10-31 22:18:45 +1100
1027
+
1028
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1029
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:71:in `callback_phase'
1030
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1031
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1032
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1033
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1034
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1035
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1036
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1037
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1038
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1039
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1040
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1041
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1042
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1043
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1044
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1045
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1046
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4481500590967835078__call__1825815514849123397__callbacks'
1047
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1048
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1049
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1050
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1051
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1052
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1053
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1054
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1055
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1056
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1057
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1058
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1059
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1060
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1061
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1062
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1063
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1064
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1065
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1066
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1067
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1068
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1069
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1070
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1071
+
1072
+
1073
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1074
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1075
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (7.8ms)
1076
+
1077
+
1078
+ Started GET "/auth/authic/callback" for 127.0.0.1 at 2012-10-31 23:34:34 +1100
1079
+ Connecting to database specified by database.yml
1080
+
1081
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1082
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:71:in `callback_phase'
1083
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1084
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1085
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1086
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1087
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1088
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1089
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1090
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1091
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1092
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1093
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1094
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1095
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1096
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1097
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1098
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1099
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__1060028277608747590__call__343196595182234730__callbacks'
1100
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1101
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1102
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1103
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1104
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1105
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1106
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1107
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1108
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1109
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1110
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1111
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1112
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1113
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1114
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1115
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1116
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1117
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1118
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1119
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1120
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1121
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1122
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1123
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1124
+
1125
+
1126
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1127
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.0ms)
1128
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (26.8ms)
1129
+
1130
+
1131
+ Started GET "/auth/authic/callback" for 127.0.0.1 at 2012-10-31 23:38:11 +1100
1132
+ Connecting to database specified by database.yml
1133
+
1134
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1135
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:79:in `callback_phase'
1136
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1137
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1138
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1139
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1140
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1141
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1142
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1143
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1144
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1145
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1146
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1147
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1148
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1149
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1150
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1151
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1152
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4343773189656229648__call__388124184799267867__callbacks'
1153
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1154
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1155
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1156
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1157
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1158
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1159
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1160
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1161
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1162
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1163
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1164
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1165
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1166
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1167
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1168
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1169
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1170
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1171
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1172
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1173
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1174
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1175
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1176
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1177
+
1178
+
1179
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.4ms)
1180
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (7.2ms)
1181
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (25.8ms)
1182
+
1183
+
1184
+ Started GET "/" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1185
+ Processing by WelcomeController#index as HTML
1186
+ Rendered welcome/index.html.erb within layouts/application (0.6ms)
1187
+ Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms)
1188
+
1189
+
1190
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1191
+ Served asset /application.css - 304 Not Modified (3ms)
1192
+
1193
+
1194
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1195
+ Served asset /welcome.css - 304 Not Modified (4ms)
1196
+
1197
+
1198
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1199
+ Served asset /jquery.js - 200 OK (2ms)
1200
+
1201
+
1202
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1203
+ Served asset /jquery_ujs.js - 200 OK (3ms)
1204
+
1205
+
1206
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1207
+ Served asset /welcome.js - 304 Not Modified (1ms)
1208
+
1209
+
1210
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-10-31 23:39:28 +1100
1211
+ Served asset /application.js - 304 Not Modified (9ms)
1212
+
1213
+
1214
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-10-31 23:39:30 +1100
1215
+
1216
+
1217
+ Started GET "/auth/authic/callback?code=fq4Mu0M8wZHguVOS13E6" for 127.0.0.1 at 2012-10-31 23:39:50 +1100
1218
+
1219
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1220
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:79:in `callback_phase'
1221
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1222
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1223
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1224
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1225
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1226
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1227
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1228
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1229
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1230
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1231
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1232
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1233
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1234
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1235
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1236
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1237
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__4343773189656229648__call__388124184799267867__callbacks'
1238
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1239
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1240
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1241
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1242
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1243
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1244
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1245
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1246
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1247
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1248
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1249
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1250
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1251
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1252
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1253
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1254
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1255
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1256
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1257
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1258
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1259
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1260
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1261
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1262
+
1263
+
1264
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
1265
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
1266
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
1267
+
1268
+
1269
+ Started GET "/auth/authic/callback?code=fq4Mu0M8wZHguVOS13E6" for 127.0.0.1 at 2012-10-31 23:45:20 +1100
1270
+ Connecting to database specified by database.yml
1271
+
1272
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1273
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:85:in `callback_phase'
1274
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1275
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1276
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1277
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1278
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1279
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1280
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1281
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1282
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1283
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1284
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1285
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1286
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1287
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1288
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1289
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1290
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__381571733229137522__call__3837521739979311071__callbacks'
1291
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1292
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1293
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1294
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1295
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1296
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1297
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1298
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1299
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1300
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1301
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1302
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1303
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1304
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1305
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1306
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1307
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1308
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1309
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1310
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1311
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1312
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1313
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1314
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1315
+
1316
+
1317
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1318
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1319
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (17.8ms)
1320
+
1321
+
1322
+ Started GET "/" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1323
+ Connecting to database specified by database.yml
1324
+ Processing by WelcomeController#index as HTML
1325
+ Rendered welcome/index.html.erb within layouts/application (10.3ms)
1326
+ Completed 200 OK in 57ms (Views: 56.2ms | ActiveRecord: 0.0ms)
1327
+
1328
+
1329
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1330
+ Served asset /welcome.css - 304 Not Modified (4ms)
1331
+
1332
+
1333
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1334
+ Served asset /application.css - 304 Not Modified (4ms)
1335
+
1336
+
1337
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1338
+ Served asset /jquery.js - 304 Not Modified (4ms)
1339
+
1340
+
1341
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1342
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
1343
+
1344
+
1345
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1346
+ Served asset /welcome.js - 304 Not Modified (2ms)
1347
+
1348
+
1349
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 11:42:09 +1100
1350
+ Served asset /application.js - 304 Not Modified (40ms)
1351
+
1352
+
1353
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 11:42:11 +1100
1354
+
1355
+
1356
+ Started GET "/" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1357
+ Processing by WelcomeController#index as HTML
1358
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
1359
+ Completed 200 OK in 5ms (Views: 5.2ms | ActiveRecord: 0.0ms)
1360
+
1361
+
1362
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1363
+ Served asset /welcome.css - 304 Not Modified (0ms)
1364
+
1365
+
1366
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1367
+ Served asset /jquery.js - 304 Not Modified (0ms)
1368
+
1369
+
1370
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1371
+ Served asset /application.css - 304 Not Modified (0ms)
1372
+
1373
+
1374
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1375
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1376
+
1377
+
1378
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1379
+ Served asset /application.js - 304 Not Modified (0ms)
1380
+
1381
+
1382
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 11:45:21 +1100
1383
+ Served asset /welcome.js - 304 Not Modified (0ms)
1384
+
1385
+
1386
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 11:46:50 +1100
1387
+
1388
+
1389
+ Started GET "/auth/authic/callback?code=WlWrQ27vCUZgVc2IDzY3&state=969bbf388c92337253f39113b0a7e570056a0d5db2002a36&state=969bbf388c92337253f39113b0a7e570056a0d5db2002a36" for 127.0.0.1 at 2012-11-01 11:46:52 +1100
1390
+ Processing by AuthicClient::SessionsController#create as HTML
1391
+ Parameters: {"code"=>"WlWrQ27vCUZgVc2IDzY3", "state"=>"969bbf388c92337253f39113b0a7e570056a0d5db2002a36"}
1392
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
1393
+ Redirected to http://localhost:3001/
1394
+ Completed 302 Found in 88ms (ActiveRecord: 7.6ms)
1395
+
1396
+
1397
+ Started GET "/" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1398
+ Processing by WelcomeController#index as HTML
1399
+ User Load (13.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1400
+ Rendered welcome/index.html.erb within layouts/application (15.0ms)
1401
+ Completed 200 OK in 20ms (Views: 6.4ms | ActiveRecord: 13.2ms)
1402
+
1403
+
1404
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1405
+ Served asset /application.css - 304 Not Modified (0ms)
1406
+
1407
+
1408
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1409
+ Served asset /welcome.css - 304 Not Modified (0ms)
1410
+
1411
+
1412
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1413
+ Served asset /jquery.js - 304 Not Modified (0ms)
1414
+
1415
+
1416
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1417
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1418
+
1419
+
1420
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1421
+ Served asset /welcome.js - 304 Not Modified (0ms)
1422
+
1423
+
1424
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 11:46:55 +1100
1425
+ Served asset /application.js - 304 Not Modified (0ms)
1426
+
1427
+
1428
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1429
+ Processing by AuthicClient::SessionsController#destroy as HTML
1430
+ Redirected to http://dev.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
1431
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1432
+
1433
+
1434
+ Started GET "/" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1435
+ Processing by WelcomeController#index as HTML
1436
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
1437
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1438
+
1439
+
1440
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1441
+ Served asset /application.css - 304 Not Modified (0ms)
1442
+
1443
+
1444
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1445
+ Served asset /welcome.css - 304 Not Modified (0ms)
1446
+
1447
+
1448
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1449
+ Served asset /application.js - 304 Not Modified (0ms)
1450
+
1451
+
1452
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1453
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1454
+
1455
+
1456
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1457
+ Served asset /welcome.js - 304 Not Modified (0ms)
1458
+
1459
+
1460
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 11:47:06 +1100
1461
+ Served asset /jquery.js - 304 Not Modified (0ms)
1462
+
1463
+
1464
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 11:47:10 +1100
1465
+
1466
+
1467
+ Started GET "/auth/authic/callback?code=cD10fT9k7wtOWEyizxM5&state=" for 127.0.0.1 at 2012-11-01 11:47:27 +1100
1468
+
1469
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1470
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:85:in `callback_phase'
1471
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1472
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1473
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1474
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1475
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1476
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1477
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1478
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1479
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1480
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1481
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1482
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1483
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1484
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1485
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1486
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1487
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__325587486464189234__call__3002347677698313842__callbacks'
1488
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1489
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1490
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1491
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1492
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1493
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1494
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1495
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1496
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1497
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1498
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1499
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1500
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1501
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1502
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1503
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1504
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1505
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1506
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1507
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1508
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1509
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1510
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1511
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1512
+
1513
+
1514
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.3ms)
1515
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms)
1516
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.4ms)
1517
+
1518
+
1519
+ Started GET "/" for 127.0.0.1 at 2012-11-01 12:44:32 +1100
1520
+ Connecting to database specified by database.yml
1521
+ Processing by WelcomeController#index as HTML
1522
+ Rendered welcome/index.html.erb within layouts/application (10.6ms)
1523
+ Completed 200 OK in 58ms (Views: 57.9ms | ActiveRecord: 0.0ms)
1524
+
1525
+
1526
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 12:44:33 +1100
1527
+ Served asset /welcome.css - 304 Not Modified (4ms)
1528
+
1529
+
1530
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 12:44:33 +1100
1531
+ Served asset /jquery.js - 304 Not Modified (3ms)
1532
+
1533
+
1534
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 12:44:33 +1100
1535
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1536
+
1537
+
1538
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 12:44:33 +1100
1539
+ Served asset /welcome.js - 304 Not Modified (2ms)
1540
+
1541
+
1542
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 12:44:33 +1100
1543
+ Served asset /application.css - 304 Not Modified (47ms)
1544
+
1545
+
1546
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 12:44:33 +1100
1547
+ Served asset /application.js - 304 Not Modified (5ms)
1548
+
1549
+
1550
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 12:44:35 +1100
1551
+
1552
+
1553
+ Started GET "/" for 127.0.0.1 at 2012-11-01 12:45:06 +1100
1554
+ Connecting to database specified by database.yml
1555
+ Processing by WelcomeController#index as HTML
1556
+ Rendered welcome/index.html.erb within layouts/application (10.5ms)
1557
+ Completed 200 OK in 57ms (Views: 56.4ms | ActiveRecord: 0.0ms)
1558
+
1559
+
1560
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 12:45:07 +1100
1561
+ Served asset /jquery.js - 304 Not Modified (10ms)
1562
+
1563
+
1564
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 12:45:07 +1100
1565
+ Served asset /welcome.css - 304 Not Modified (1ms)
1566
+
1567
+
1568
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 12:45:07 +1100
1569
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
1570
+
1571
+
1572
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 12:45:07 +1100
1573
+ Served asset /application.css - 304 Not Modified (3ms)
1574
+
1575
+
1576
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 12:45:07 +1100
1577
+ Served asset /welcome.js - 304 Not Modified (1ms)
1578
+
1579
+
1580
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 12:45:07 +1100
1581
+ Served asset /application.js - 304 Not Modified (44ms)
1582
+
1583
+
1584
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 12:45:09 +1100
1585
+
1586
+
1587
+ Started GET "/" for 127.0.0.1 at 2012-11-01 12:49:35 +1100
1588
+ Connecting to database specified by database.yml
1589
+ Processing by WelcomeController#index as HTML
1590
+ Rendered welcome/index.html.erb within layouts/application (10.2ms)
1591
+ Completed 200 OK in 57ms (Views: 57.0ms | ActiveRecord: 0.0ms)
1592
+
1593
+
1594
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 12:49:36 +1100
1595
+ Served asset /jquery.js - 304 Not Modified (11ms)
1596
+
1597
+
1598
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 12:49:36 +1100
1599
+ Served asset /welcome.css - 304 Not Modified (2ms)
1600
+
1601
+
1602
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 12:49:36 +1100
1603
+ Served asset /jquery_ujs.js - 304 Not Modified (6ms)
1604
+
1605
+
1606
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 12:49:36 +1100
1607
+ Served asset /welcome.js - 304 Not Modified (1ms)
1608
+
1609
+
1610
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 12:49:36 +1100
1611
+ Served asset /application.css - 304 Not Modified (40ms)
1612
+
1613
+
1614
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 12:49:36 +1100
1615
+ Served asset /application.js - 304 Not Modified (5ms)
1616
+
1617
+
1618
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 12:49:37 +1100
1619
+
1620
+
1621
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 12:50:29 +1100
1622
+
1623
+
1624
+ Started GET "/users/auth/authic/callback?code=IZb1P1AsIiGGVISMaxZ8&state=" for 127.0.0.1 at 2012-11-01 12:55:50 +1100
1625
+
1626
+ ActionController::RoutingError (No route matches [GET] "/users/auth/authic/callback"):
1627
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1628
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1629
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1630
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1631
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1632
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1633
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1634
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1635
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1636
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1637
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1638
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1639
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1640
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1641
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1642
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1643
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1644
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1645
+
1646
+
1647
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.7ms)
1648
+
1649
+
1650
+ Started GET "/auth/authic/callback?code=IZb1P1AsIiGGVISMaxZ8&state=" for 127.0.0.1 at 2012-11-01 13:00:44 +1100
1651
+
1652
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1653
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:74:in `callback_phase'
1654
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1655
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1656
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1657
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1658
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1659
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1660
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1661
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1662
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1663
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1664
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1665
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1666
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1667
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1668
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1669
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1670
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__334284610131701716__call__1174451127382691668__callbacks'
1671
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1672
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1673
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1674
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1675
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1676
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1677
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1678
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1679
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1680
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
1681
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
1682
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
1683
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
1684
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
1685
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
1686
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
1687
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
1688
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
1689
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
1690
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
1691
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
1692
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
1693
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
1694
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
1695
+
1696
+
1697
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.1ms)
1698
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (0.9ms)
1699
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.8ms)
1700
+
1701
+
1702
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:00:49 +1100
1703
+ Processing by WelcomeController#index as HTML
1704
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
1705
+ Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
1706
+
1707
+
1708
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:00:50 +1100
1709
+ Served asset /welcome.css - 304 Not Modified (0ms)
1710
+
1711
+
1712
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:50 +1100
1713
+ Served asset /jquery.js - 304 Not Modified (0ms)
1714
+
1715
+
1716
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:00:50 +1100
1717
+ Served asset /application.css - 304 Not Modified (0ms)
1718
+
1719
+
1720
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:50 +1100
1721
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1722
+
1723
+
1724
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:50 +1100
1725
+ Served asset /welcome.js - 304 Not Modified (0ms)
1726
+
1727
+
1728
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:50 +1100
1729
+ Served asset /application.js - 304 Not Modified (0ms)
1730
+
1731
+
1732
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:00:51 +1100
1733
+
1734
+
1735
+ Started GET "/auth/authic/callback?code=MYunjx7M5nh8Lw1vpKBq&state=8b8d4dceb410586b22594f7d2fca29c066285ba1797c1f7a&state=8b8d4dceb410586b22594f7d2fca29c066285ba1797c1f7a" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1736
+ Processing by AuthicClient::SessionsController#create as HTML
1737
+ Parameters: {"code"=>"MYunjx7M5nh8Lw1vpKBq", "state"=>"8b8d4dceb410586b22594f7d2fca29c066285ba1797c1f7a"}
1738
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
1739
+ Redirected to http://localhost:3001/
1740
+ Completed 302 Found in 121ms (ActiveRecord: 7.2ms)
1741
+
1742
+
1743
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1744
+ Processing by WelcomeController#index as HTML
1745
+ User Load (12.9ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1746
+ Rendered welcome/index.html.erb within layouts/application (15.0ms)
1747
+ Completed 200 OK in 20ms (Views: 6.4ms | ActiveRecord: 12.9ms)
1748
+
1749
+
1750
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1751
+ Served asset /application.css - 304 Not Modified (0ms)
1752
+
1753
+
1754
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1755
+ Served asset /jquery.js - 304 Not Modified (0ms)
1756
+
1757
+
1758
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1759
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1760
+
1761
+
1762
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1763
+ Served asset /application.js - 304 Not Modified (0ms)
1764
+
1765
+
1766
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1767
+ Served asset /welcome.css - 304 Not Modified (0ms)
1768
+
1769
+
1770
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:00:52 +1100
1771
+ Served asset /welcome.js - 304 Not Modified (0ms)
1772
+
1773
+
1774
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:01:02 +1100
1775
+ Processing by AuthicClient::SessionsController#destroy as HTML
1776
+ Redirected to http://test.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
1777
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1778
+
1779
+
1780
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1781
+ Processing by WelcomeController#index as HTML
1782
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
1783
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1784
+
1785
+
1786
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1787
+ Served asset /application.css - 304 Not Modified (0ms)
1788
+
1789
+
1790
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1791
+ Served asset /welcome.css - 304 Not Modified (0ms)
1792
+
1793
+
1794
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1795
+ Served asset /application.js - 304 Not Modified (0ms)
1796
+
1797
+
1798
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1799
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1800
+
1801
+
1802
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1803
+ Served asset /jquery.js - 304 Not Modified (0ms)
1804
+
1805
+
1806
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:05 +1100
1807
+ Served asset /welcome.js - 304 Not Modified (0ms)
1808
+
1809
+
1810
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1811
+
1812
+
1813
+ Started GET "/auth/authic/callback?code=TXhb3pTdZbqCLEUvUMC5&state=418a69363e86607be4971eedb1a158d73f85ae9d28e887e6&state=418a69363e86607be4971eedb1a158d73f85ae9d28e887e6" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1814
+ Processing by AuthicClient::SessionsController#create as HTML
1815
+ Parameters: {"code"=>"TXhb3pTdZbqCLEUvUMC5", "state"=>"418a69363e86607be4971eedb1a158d73f85ae9d28e887e6"}
1816
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
1817
+ Redirected to http://localhost:3001/
1818
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
1819
+
1820
+
1821
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1822
+ Processing by WelcomeController#index as HTML
1823
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1824
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
1825
+ Completed 200 OK in 6ms (Views: 5.6ms | ActiveRecord: 0.1ms)
1826
+
1827
+
1828
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1829
+ Served asset /jquery.js - 304 Not Modified (0ms)
1830
+
1831
+
1832
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1833
+ Served asset /application.js - 304 Not Modified (0ms)
1834
+
1835
+
1836
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1837
+ Served asset /welcome.js - 304 Not Modified (0ms)
1838
+
1839
+
1840
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1841
+ Served asset /application.css - 304 Not Modified (0ms)
1842
+
1843
+
1844
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1845
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1846
+
1847
+
1848
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:01:08 +1100
1849
+ Served asset /welcome.css - 304 Not Modified (0ms)
1850
+
1851
+
1852
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1853
+ Processing by AuthicClient::SessionsController#destroy as HTML
1854
+ Redirected to http://test.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
1855
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1856
+
1857
+
1858
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1859
+ Processing by WelcomeController#index as HTML
1860
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
1861
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
1862
+
1863
+
1864
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1865
+ Served asset /application.css - 304 Not Modified (0ms)
1866
+
1867
+
1868
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1869
+ Served asset /application.js - 304 Not Modified (0ms)
1870
+
1871
+
1872
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1873
+ Served asset /welcome.css - 304 Not Modified (0ms)
1874
+
1875
+
1876
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1877
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1878
+
1879
+
1880
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1881
+ Served asset /welcome.js - 304 Not Modified (0ms)
1882
+
1883
+
1884
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:01:18 +1100
1885
+ Served asset /jquery.js - 304 Not Modified (0ms)
1886
+
1887
+
1888
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1889
+
1890
+
1891
+ Started GET "/auth/authic/callback?code=UNwNOHf5amPXeTWx8Pov&state=c0ec99dbafb55c77dde8440e3f1b432c90a732d6ac2dfc93&state=c0ec99dbafb55c77dde8440e3f1b432c90a732d6ac2dfc93" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1892
+ Processing by AuthicClient::SessionsController#create as HTML
1893
+ Parameters: {"code"=>"UNwNOHf5amPXeTWx8Pov", "state"=>"c0ec99dbafb55c77dde8440e3f1b432c90a732d6ac2dfc93"}
1894
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
1895
+ Redirected to http://localhost:3001/
1896
+ Completed 302 Found in 14ms (ActiveRecord: 0.7ms)
1897
+
1898
+
1899
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1900
+ Processing by WelcomeController#index as HTML
1901
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
1902
+ Rendered welcome/index.html.erb within layouts/application (1.7ms)
1903
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.2ms)
1904
+
1905
+
1906
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1907
+ Served asset /application.css - 304 Not Modified (0ms)
1908
+
1909
+
1910
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1911
+ Served asset /welcome.css - 304 Not Modified (0ms)
1912
+
1913
+
1914
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1915
+ Served asset /jquery.js - 304 Not Modified (0ms)
1916
+
1917
+
1918
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1919
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1920
+
1921
+
1922
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1923
+ Served asset /application.js - 304 Not Modified (0ms)
1924
+
1925
+
1926
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:44 +1100
1927
+ Served asset /welcome.js - 304 Not Modified (0ms)
1928
+
1929
+
1930
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1931
+ Processing by AuthicClient::SessionsController#destroy as HTML
1932
+ Redirected to http://test.authic.dev:3000/authic_sign_out?&return_path=http://localhost:3001/
1933
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1934
+
1935
+
1936
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1937
+ Processing by WelcomeController#index as HTML
1938
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
1939
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1940
+
1941
+
1942
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1943
+ Served asset /welcome.css - 304 Not Modified (0ms)
1944
+
1945
+
1946
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1947
+ Served asset /jquery.js - 304 Not Modified (0ms)
1948
+
1949
+
1950
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1951
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
1952
+
1953
+
1954
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1955
+ Served asset /application.js - 304 Not Modified (0ms)
1956
+
1957
+
1958
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1959
+ Served asset /welcome.js - 304 Not Modified (0ms)
1960
+
1961
+
1962
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:03:46 +1100
1963
+ Served asset /application.css - 304 Not Modified (0ms)
1964
+
1965
+
1966
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:03:48 +1100
1967
+
1968
+
1969
+ Started GET "/auth/authic/callback?code=g4ceQV7RwkGrqykaS0XP&state=" for 127.0.0.1 at 2012-11-01 13:04:06 +1100
1970
+
1971
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
1972
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:74:in `callback_phase'
1973
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
1974
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
1975
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
1976
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
1977
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
1978
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
1979
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
1980
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
1981
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
1982
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
1983
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
1984
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
1985
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
1986
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
1987
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
1988
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
1989
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__334284610131701716__call__1174451127382691668__callbacks'
1990
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
1991
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
1992
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
1993
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1994
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
1995
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
1996
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
1997
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
1998
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
1999
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
2000
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2001
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2002
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2003
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2004
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2005
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
2006
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
2007
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
2008
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2009
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
2010
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2011
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2012
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2013
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2014
+
2015
+
2016
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.5ms)
2017
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.2ms)
2018
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.0ms)
2019
+
2020
+
2021
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2022
+ Processing by WelcomeController#index as HTML
2023
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
2024
+ Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2025
+
2026
+
2027
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2028
+ Served asset /welcome.css - 304 Not Modified (0ms)
2029
+
2030
+
2031
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2032
+ Served asset /application.css - 304 Not Modified (0ms)
2033
+
2034
+
2035
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2036
+ Served asset /jquery.js - 304 Not Modified (0ms)
2037
+
2038
+
2039
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2040
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2041
+
2042
+
2043
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2044
+ Served asset /welcome.js - 304 Not Modified (0ms)
2045
+
2046
+
2047
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:50 +1100
2048
+ Served asset /application.js - 304 Not Modified (0ms)
2049
+
2050
+
2051
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:07:51 +1100
2052
+
2053
+
2054
+ Started GET "/auth/authic/callback?code=fPsGjgFTUVaOlEmntV6m&state=95ca098c6484fbb75681c6b42d16cbb44ed2b923593796a4&state=95ca098c6484fbb75681c6b42d16cbb44ed2b923593796a4" for 127.0.0.1 at 2012-11-01 13:07:52 +1100
2055
+ Processing by AuthicClient::SessionsController#create as HTML
2056
+ Parameters: {"code"=>"fPsGjgFTUVaOlEmntV6m", "state"=>"95ca098c6484fbb75681c6b42d16cbb44ed2b923593796a4"}
2057
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
2058
+ Redirected to http://localhost:3001/
2059
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
2060
+
2061
+
2062
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:07:52 +1100
2063
+ Processing by WelcomeController#index as HTML
2064
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
2065
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
2066
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.1ms)
2067
+
2068
+
2069
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:53 +1100
2070
+ Served asset /welcome.js - 304 Not Modified (0ms)
2071
+
2072
+
2073
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:07:53 +1100
2074
+ Served asset /application.css - 304 Not Modified (0ms)
2075
+
2076
+
2077
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:53 +1100
2078
+ Served asset /jquery.js - 304 Not Modified (0ms)
2079
+
2080
+
2081
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:07:53 +1100
2082
+ Served asset /welcome.css - 304 Not Modified (0ms)
2083
+
2084
+
2085
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:53 +1100
2086
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2087
+
2088
+
2089
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:07:53 +1100
2090
+ Served asset /application.js - 304 Not Modified (0ms)
2091
+
2092
+
2093
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:08:01 +1100
2094
+ Processing by AuthicClient::SessionsController#destroy as HTML
2095
+ Redirected to http://test.authic.dev:3000/authic_sign_out?&return_path=http://localhost:3001/
2096
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2097
+
2098
+
2099
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2100
+ Processing by WelcomeController#index as HTML
2101
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
2102
+ Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
2103
+
2104
+
2105
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2106
+ Served asset /welcome.css - 304 Not Modified (0ms)
2107
+
2108
+
2109
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2110
+ Served asset /jquery.js - 304 Not Modified (0ms)
2111
+
2112
+
2113
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2114
+ Served asset /application.css - 304 Not Modified (0ms)
2115
+
2116
+
2117
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2118
+ Served asset /welcome.js - 304 Not Modified (0ms)
2119
+
2120
+
2121
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2122
+ Served asset /application.js - 304 Not Modified (0ms)
2123
+
2124
+
2125
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:08:02 +1100
2126
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2127
+
2128
+
2129
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:08:03 +1100
2130
+
2131
+
2132
+ Started GET "/auth/authic/callback?code=09lRWZil92GvJnI3rELv&state=" for 127.0.0.1 at 2012-11-01 13:08:14 +1100
2133
+
2134
+ OmniAuth::Strategies::OAuth2::CallbackError (OmniAuth::Strategies::OAuth2::CallbackError):
2135
+ omniauth-oauth2 (1.1.1) lib/omniauth/strategies/oauth2.rb:74:in `callback_phase'
2136
+ omniauth (1.1.1) lib/omniauth/strategy.rb:219:in `callback_call'
2137
+ omniauth (1.1.1) lib/omniauth/strategy.rb:175:in `call!'
2138
+ omniauth (1.1.1) lib/omniauth/strategy.rb:157:in `call'
2139
+ omniauth (1.1.1) lib/omniauth/builder.rb:48:in `call'
2140
+ actionpack (3.2.8) lib/action_dispatch/middleware/best_standards_support.rb:17:in `call'
2141
+ rack (1.4.1) lib/rack/etag.rb:23:in `call'
2142
+ rack (1.4.1) lib/rack/conditionalget.rb:25:in `call'
2143
+ actionpack (3.2.8) lib/action_dispatch/middleware/head.rb:14:in `call'
2144
+ actionpack (3.2.8) lib/action_dispatch/middleware/params_parser.rb:21:in `call'
2145
+ actionpack (3.2.8) lib/action_dispatch/middleware/flash.rb:242:in `call'
2146
+ rack (1.4.1) lib/rack/session/abstract/id.rb:205:in `context'
2147
+ rack (1.4.1) lib/rack/session/abstract/id.rb:200:in `call'
2148
+ actionpack (3.2.8) lib/action_dispatch/middleware/cookies.rb:339:in `call'
2149
+ activerecord (3.2.8) lib/active_record/query_cache.rb:64:in `call'
2150
+ activerecord (3.2.8) lib/active_record/connection_adapters/abstract/connection_pool.rb:473:in `call'
2151
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:28:in `block in call'
2152
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `_run__334284610131701716__call__1174451127382691668__callbacks'
2153
+ activesupport (3.2.8) lib/active_support/callbacks.rb:405:in `__run_callback'
2154
+ activesupport (3.2.8) lib/active_support/callbacks.rb:385:in `_run_call_callbacks'
2155
+ activesupport (3.2.8) lib/active_support/callbacks.rb:81:in `run_callbacks'
2156
+ actionpack (3.2.8) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2157
+ actionpack (3.2.8) lib/action_dispatch/middleware/reloader.rb:65:in `call'
2158
+ actionpack (3.2.8) lib/action_dispatch/middleware/remote_ip.rb:31:in `call'
2159
+ actionpack (3.2.8) lib/action_dispatch/middleware/debug_exceptions.rb:16:in `call'
2160
+ actionpack (3.2.8) lib/action_dispatch/middleware/show_exceptions.rb:56:in `call'
2161
+ railties (3.2.8) lib/rails/rack/logger.rb:26:in `call_app'
2162
+ railties (3.2.8) lib/rails/rack/logger.rb:16:in `call'
2163
+ actionpack (3.2.8) lib/action_dispatch/middleware/request_id.rb:22:in `call'
2164
+ rack (1.4.1) lib/rack/methodoverride.rb:21:in `call'
2165
+ rack (1.4.1) lib/rack/runtime.rb:17:in `call'
2166
+ activesupport (3.2.8) lib/active_support/cache/strategy/local_cache.rb:72:in `call'
2167
+ rack (1.4.1) lib/rack/lock.rb:15:in `call'
2168
+ actionpack (3.2.8) lib/action_dispatch/middleware/static.rb:62:in `call'
2169
+ railties (3.2.8) lib/rails/engine.rb:479:in `call'
2170
+ railties (3.2.8) lib/rails/application.rb:223:in `call'
2171
+ rack (1.4.1) lib/rack/content_length.rb:14:in `call'
2172
+ railties (3.2.8) lib/rails/rack/log_tailer.rb:17:in `call'
2173
+ rack (1.4.1) lib/rack/handler/webrick.rb:59:in `service'
2174
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:111:in `service'
2175
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/httpserver.rb:70:in `run'
2176
+ /Users/ctrand/.rvm/rubies/ruby-1.9.2-p180/lib/ruby/1.9.1/webrick/server.rb:183:in `block in start_thread'
2177
+
2178
+
2179
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_trace.erb (1.2ms)
2180
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.4ms)
2181
+ Rendered /Users/ctrand/.rvm/gems/ruby-1.9.2-p180@authic_client/gems/actionpack-3.2.8/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (8.5ms)
2182
+
2183
+
2184
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2185
+ Processing by WelcomeController#index as HTML
2186
+ Rendered welcome/index.html.erb within layouts/application (0.2ms)
2187
+ Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
2188
+
2189
+
2190
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2191
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2192
+
2193
+
2194
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2195
+ Served asset /welcome.css - 304 Not Modified (0ms)
2196
+
2197
+
2198
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2199
+ Served asset /application.css - 304 Not Modified (0ms)
2200
+
2201
+
2202
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2203
+ Served asset /jquery.js - 304 Not Modified (0ms)
2204
+
2205
+
2206
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2207
+ Served asset /welcome.js - 304 Not Modified (0ms)
2208
+
2209
+
2210
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:47 +1100
2211
+ Served asset /application.js - 304 Not Modified (0ms)
2212
+
2213
+
2214
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:13:48 +1100
2215
+
2216
+
2217
+ Started GET "/auth/authic/callback?code=WNpfEyOrOxuAjXEeFOOw&state=4005f5507bc9138a3fa584a619c75fa9c2481b87c36cc11a&state=4005f5507bc9138a3fa584a619c75fa9c2481b87c36cc11a" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2218
+ Processing by AuthicClient::SessionsController#create as HTML
2219
+ Parameters: {"code"=>"WNpfEyOrOxuAjXEeFOOw", "state"=>"4005f5507bc9138a3fa584a619c75fa9c2481b87c36cc11a"}
2220
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
2221
+ Redirected to http://localhost:3001/
2222
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
2223
+
2224
+
2225
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2226
+ Processing by WelcomeController#index as HTML
2227
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
2228
+ Rendered welcome/index.html.erb within layouts/application (1.4ms)
2229
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.1ms)
2230
+
2231
+
2232
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2233
+ Served asset /jquery.js - 304 Not Modified (0ms)
2234
+
2235
+
2236
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2237
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2238
+
2239
+
2240
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2241
+ Served asset /application.css - 304 Not Modified (0ms)
2242
+
2243
+
2244
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2245
+ Served asset /application.js - 304 Not Modified (0ms)
2246
+
2247
+
2248
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2249
+ Served asset /welcome.css - 304 Not Modified (0ms)
2250
+
2251
+
2252
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:49 +1100
2253
+ Served asset /welcome.js - 304 Not Modified (0ms)
2254
+
2255
+
2256
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:13:50 +1100
2257
+ Processing by AuthicClient::SessionsController#destroy as HTML
2258
+ Redirected to http://test.authic.dev:3000/authic_sign_out?&return_path=http://localhost:3001/
2259
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2260
+
2261
+
2262
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:13:50 +1100
2263
+ Processing by WelcomeController#index as HTML
2264
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
2265
+ Completed 200 OK in 4ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2266
+
2267
+
2268
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:13:50 +1100
2269
+ Served asset /welcome.css - 304 Not Modified (0ms)
2270
+
2271
+
2272
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:51 +1100
2273
+ Served asset /jquery.js - 304 Not Modified (0ms)
2274
+
2275
+
2276
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:51 +1100
2277
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2278
+
2279
+
2280
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:51 +1100
2281
+ Served asset /application.js - 304 Not Modified (0ms)
2282
+
2283
+
2284
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:13:51 +1100
2285
+ Served asset /welcome.js - 304 Not Modified (0ms)
2286
+
2287
+
2288
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:13:51 +1100
2289
+ Served asset /application.css - 304 Not Modified (0ms)
2290
+
2291
+
2292
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:13:52 +1100
2293
+
2294
+
2295
+ Started GET "/auth/authic/callback?code=RB14uW5U3AI097l96Mbr&state=154141d6c2edf4d8852aa19f6d56cdb20eab6c872252b1a6&state=154141d6c2edf4d8852aa19f6d56cdb20eab6c872252b1a6" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2296
+ Processing by AuthicClient::SessionsController#create as HTML
2297
+ Parameters: {"code"=>"RB14uW5U3AI097l96Mbr", "state"=>"154141d6c2edf4d8852aa19f6d56cdb20eab6c872252b1a6"}
2298
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
2299
+ Redirected to http://localhost:3001/
2300
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
2301
+
2302
+
2303
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2304
+ Processing by WelcomeController#index as HTML
2305
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
2306
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
2307
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.1ms)
2308
+
2309
+
2310
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2311
+ Served asset /welcome.css - 304 Not Modified (0ms)
2312
+
2313
+
2314
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2315
+ Served asset /welcome.js - 304 Not Modified (0ms)
2316
+
2317
+
2318
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2319
+ Served asset /application.js - 304 Not Modified (0ms)
2320
+
2321
+
2322
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2323
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2324
+
2325
+
2326
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2327
+ Served asset /jquery.js - 304 Not Modified (0ms)
2328
+
2329
+
2330
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:14:03 +1100
2331
+ Served asset /application.css - 304 Not Modified (0ms)
2332
+
2333
+
2334
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2335
+ Processing by AuthicClient::SessionsController#destroy as HTML
2336
+ Redirected to http://test.authic.dev:3000/authic_sign_out?&return_path=http://localhost:3001/
2337
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2338
+
2339
+
2340
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2341
+ Processing by WelcomeController#index as HTML
2342
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
2343
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
2344
+
2345
+
2346
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2347
+ Served asset /application.css - 304 Not Modified (0ms)
2348
+
2349
+
2350
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2351
+ Served asset /welcome.css - 304 Not Modified (0ms)
2352
+
2353
+
2354
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2355
+ Served asset /jquery.js - 304 Not Modified (0ms)
2356
+
2357
+
2358
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2359
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2360
+
2361
+
2362
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2363
+ Served asset /welcome.js - 304 Not Modified (0ms)
2364
+
2365
+
2366
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:15:37 +1100
2367
+ Served asset /application.js - 304 Not Modified (0ms)
2368
+
2369
+
2370
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:18:14 +1100
2371
+
2372
+
2373
+ Started GET "/auth/authic/callback?code=qrTziOfPuxwwIIT3cQCi&state=8e215e2dbb70bde4a842b43aaa695187ea2f62f34eb4131f" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2374
+ Processing by AuthicClient::SessionsController#create as HTML
2375
+ Parameters: {"code"=>"qrTziOfPuxwwIIT3cQCi", "state"=>"8e215e2dbb70bde4a842b43aaa695187ea2f62f34eb4131f"}
2376
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
2377
+ Redirected to http://localhost:3001/
2378
+ Completed 302 Found in 1ms (ActiveRecord: 0.2ms)
2379
+
2380
+
2381
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2382
+ Processing by WelcomeController#index as HTML
2383
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
2384
+ Rendered welcome/index.html.erb within layouts/application (1.3ms)
2385
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.1ms)
2386
+
2387
+
2388
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2389
+ Served asset /application.css - 304 Not Modified (0ms)
2390
+
2391
+
2392
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2393
+ Served asset /welcome.css - 304 Not Modified (0ms)
2394
+
2395
+
2396
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2397
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2398
+
2399
+
2400
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2401
+ Served asset /jquery.js - 304 Not Modified (0ms)
2402
+
2403
+
2404
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2405
+ Served asset /welcome.js - 304 Not Modified (0ms)
2406
+
2407
+
2408
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:22 +1100
2409
+ Served asset /application.js - 304 Not Modified (0ms)
2410
+
2411
+
2412
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2413
+ Processing by AuthicClient::SessionsController#destroy as HTML
2414
+ Redirected to http://test.authic.dev:3000/authic_sign_out?&return_path=http://localhost:3001/
2415
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2416
+
2417
+
2418
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2419
+ Processing by WelcomeController#index as HTML
2420
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
2421
+ Completed 200 OK in 4ms (Views: 4.2ms | ActiveRecord: 0.0ms)
2422
+
2423
+
2424
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2425
+ Served asset /application.css - 304 Not Modified (0ms)
2426
+
2427
+
2428
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2429
+ Served asset /jquery.js - 304 Not Modified (0ms)
2430
+
2431
+
2432
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2433
+ Served asset /application.js - 304 Not Modified (0ms)
2434
+
2435
+
2436
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2437
+ Served asset /welcome.css - 304 Not Modified (0ms)
2438
+
2439
+
2440
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2441
+ Served asset /welcome.js - 304 Not Modified (0ms)
2442
+
2443
+
2444
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:18:41 +1100
2445
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2446
+
2447
+
2448
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:25:24 +1100
2449
+ Connecting to database specified by database.yml
2450
+ Processing by WelcomeController#index as HTML
2451
+ Rendered welcome/index.html.erb within layouts/application (10.6ms)
2452
+ Completed 200 OK in 58ms (Views: 57.3ms | ActiveRecord: 0.0ms)
2453
+
2454
+
2455
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:25:25 +1100
2456
+ Served asset /welcome.css - 304 Not Modified (3ms)
2457
+
2458
+
2459
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:25 +1100
2460
+ Served asset /welcome.js - 304 Not Modified (2ms)
2461
+
2462
+
2463
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:25 +1100
2464
+ Served asset /jquery.js - 304 Not Modified (2ms)
2465
+
2466
+
2467
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:25 +1100
2468
+ Served asset /jquery_ujs.js - 304 Not Modified (2ms)
2469
+
2470
+
2471
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:25 +1100
2472
+ Served asset /application.js - 304 Not Modified (6ms)
2473
+
2474
+
2475
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:25:25 +1100
2476
+ Served asset /application.css - 304 Not Modified (3ms)
2477
+
2478
+
2479
+ Started GET "/auth/authic?&state=sign_in" for 127.0.0.1 at 2012-11-01 13:25:26 +1100
2480
+
2481
+
2482
+ Started GET "/auth/authic/callback?code=Z7w96HKe1HfdEbfT8mD5&state=0c7905841baea9c6d4c676d7340c462d82df5e191831ed29&state=0c7905841baea9c6d4c676d7340c462d82df5e191831ed29" for 127.0.0.1 at 2012-11-01 13:25:28 +1100
2483
+ Processing by AuthicClient::SessionsController#create as HTML
2484
+ Parameters: {"code"=>"Z7w96HKe1HfdEbfT8mD5", "state"=>"0c7905841baea9c6d4c676d7340c462d82df5e191831ed29"}
2485
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."provider" = 'authic' AND "users"."uid" = 4 LIMIT 1
2486
+ Redirected to http://localhost:3001/
2487
+ Completed 302 Found in 89ms (ActiveRecord: 7.3ms)
2488
+
2489
+
2490
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:25:31 +1100
2491
+ Processing by WelcomeController#index as HTML
2492
+ User Load (12.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
2493
+ Rendered welcome/index.html.erb within layouts/application (14.2ms)
2494
+ Completed 200 OK in 19ms (Views: 6.3ms | ActiveRecord: 12.2ms)
2495
+
2496
+
2497
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:25:32 +1100
2498
+ Served asset /welcome.css - 304 Not Modified (0ms)
2499
+
2500
+
2501
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:32 +1100
2502
+ Served asset /application.js - 304 Not Modified (0ms)
2503
+
2504
+
2505
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:32 +1100
2506
+ Served asset /jquery.js - 304 Not Modified (0ms)
2507
+
2508
+
2509
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:32 +1100
2510
+ Served asset /welcome.js - 304 Not Modified (0ms)
2511
+
2512
+
2513
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:25:32 +1100
2514
+ Served asset /application.css - 304 Not Modified (0ms)
2515
+
2516
+
2517
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:25:32 +1100
2518
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2519
+
2520
+
2521
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2522
+ Processing by AuthicClient::SessionsController#destroy as HTML
2523
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2524
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2525
+
2526
+
2527
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2528
+ Processing by AuthicClient::SessionsController#destroy as HTML
2529
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2530
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2531
+
2532
+
2533
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2534
+ Processing by AuthicClient::SessionsController#destroy as HTML
2535
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2536
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2537
+
2538
+
2539
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2540
+ Processing by AuthicClient::SessionsController#destroy as HTML
2541
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2542
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2543
+
2544
+
2545
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2546
+ Processing by AuthicClient::SessionsController#destroy as HTML
2547
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2548
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2549
+
2550
+
2551
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2552
+ Processing by AuthicClient::SessionsController#destroy as HTML
2553
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2554
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2555
+
2556
+
2557
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:25:35 +1100
2558
+ Processing by AuthicClient::SessionsController#destroy as HTML
2559
+ Redirected to http://.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2560
+ Completed 302 Found in 0ms (ActiveRecord: 0.0ms)
2561
+
2562
+
2563
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2564
+ Processing by WelcomeController#index as HTML
2565
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1]]
2566
+ Rendered welcome/index.html.erb within layouts/application (41.7ms)
2567
+ Completed 200 OK in 47ms (Views: 46.2ms | ActiveRecord: 0.7ms)
2568
+
2569
+
2570
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2571
+ Served asset /application.css - 304 Not Modified (0ms)
2572
+
2573
+
2574
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2575
+ Served asset /jquery.js - 304 Not Modified (0ms)
2576
+
2577
+
2578
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2579
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2580
+
2581
+
2582
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2583
+ Served asset /welcome.js - 304 Not Modified (0ms)
2584
+
2585
+
2586
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2587
+ Served asset /welcome.css - 304 Not Modified (0ms)
2588
+
2589
+
2590
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:06 +1100
2591
+ Served asset /application.js - 304 Not Modified (10ms)
2592
+
2593
+
2594
+ Started GET "/signout" for 127.0.0.1 at 2012-11-01 13:27:08 +1100
2595
+ Processing by AuthicClient::SessionsController#destroy as HTML
2596
+ Redirected to http://dev.authicstaging.com/authic_sign_out?&return_path=http://localhost:3001/
2597
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
2598
+
2599
+
2600
+ Started GET "/" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2601
+ Processing by WelcomeController#index as HTML
2602
+ Rendered welcome/index.html.erb within layouts/application (0.1ms)
2603
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
2604
+
2605
+
2606
+ Started GET "/assets/welcome.css?body=1" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2607
+ Served asset /welcome.css - 304 Not Modified (0ms)
2608
+
2609
+
2610
+ Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2611
+ Served asset /jquery_ujs.js - 304 Not Modified (0ms)
2612
+
2613
+
2614
+ Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2615
+ Served asset /application.js - 304 Not Modified (0ms)
2616
+
2617
+
2618
+ Started GET "/assets/welcome.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2619
+ Served asset /welcome.js - 304 Not Modified (0ms)
2620
+
2621
+
2622
+ Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2623
+ Served asset /application.css - 304 Not Modified (0ms)
2624
+
2625
+
2626
+ Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2012-11-01 13:27:10 +1100
2627
+ Served asset /jquery.js - 304 Not Modified (0ms)