devise_token_auth 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (72) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.rdoc +3 -0
  4. data/Rakefile +34 -0
  5. data/app/assets/javascripts/devise_token_auth/application.js +13 -0
  6. data/app/assets/stylesheets/devise_token_auth/application.css +15 -0
  7. data/app/controllers/devise_token_auth/application_controller.rb +33 -0
  8. data/app/controllers/devise_token_auth/auth_controller.rb +62 -0
  9. data/app/controllers/devise_token_auth/confirmations_controller.rb +24 -0
  10. data/app/controllers/devise_token_auth/omniauth_callbacks_controller.rb +0 -0
  11. data/app/controllers/devise_token_auth/passwords_controller.rb +55 -0
  12. data/app/controllers/devise_token_auth/registrations_controller.rb +34 -0
  13. data/app/controllers/devise_token_auth/sessions_controller.rb +44 -0
  14. data/app/helpers/devise_token_auth/application_helper.rb +4 -0
  15. data/app/models/user.rb +6 -0
  16. data/app/views/devise_token_auth/omniauth_success.html.erb +7 -0
  17. data/app/views/layouts/omniauth_response.html.erb +20 -0
  18. data/config/initializers/devise.rb +258 -0
  19. data/config/locales/devise.en.yml +59 -0
  20. data/config/routes.rb +14 -0
  21. data/db/migrate/20140628234942_devise_token_auth_create_users.rb +56 -0
  22. data/lib/devise_token_auth.rb +5 -0
  23. data/lib/devise_token_auth/engine.rb +5 -0
  24. data/lib/devise_token_auth/version.rb +3 -0
  25. data/lib/generators/devise_token_auth/USAGE +8 -0
  26. data/lib/generators/devise_token_auth/devise_token_auth_generator.rb +3 -0
  27. data/lib/tasks/devise_token_auth_tasks.rake +4 -0
  28. data/test/devise_token_auth_test.rb +7 -0
  29. data/test/dummy/README.rdoc +28 -0
  30. data/test/dummy/Rakefile +6 -0
  31. data/test/dummy/app/assets/javascripts/application.js +13 -0
  32. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  33. data/test/dummy/app/controllers/application_controller.rb +5 -0
  34. data/test/dummy/app/helpers/application_helper.rb +2 -0
  35. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  36. data/test/dummy/bin/bundle +3 -0
  37. data/test/dummy/bin/rails +4 -0
  38. data/test/dummy/bin/rake +4 -0
  39. data/test/dummy/config.ru +4 -0
  40. data/test/dummy/config/application.rb +31 -0
  41. data/test/dummy/config/application.yml +13 -0
  42. data/test/dummy/config/boot.rb +5 -0
  43. data/test/dummy/config/database.yml +25 -0
  44. data/test/dummy/config/environment.rb +5 -0
  45. data/test/dummy/config/environments/development.rb +37 -0
  46. data/test/dummy/config/environments/production.rb +82 -0
  47. data/test/dummy/config/environments/test.rb +39 -0
  48. data/test/dummy/config/initializers/assets.rb +8 -0
  49. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  50. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  51. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  52. data/test/dummy/config/initializers/inflections.rb +16 -0
  53. data/test/dummy/config/initializers/mime_types.rb +4 -0
  54. data/test/dummy/config/initializers/omniauth.rb +5 -0
  55. data/test/dummy/config/initializers/session_store.rb +3 -0
  56. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  57. data/test/dummy/config/locales/en.yml +23 -0
  58. data/test/dummy/config/routes.rb +3 -0
  59. data/test/dummy/config/secrets.yml +22 -0
  60. data/test/dummy/db/development.sqlite3 +0 -0
  61. data/test/dummy/db/migrate/20140629011345_devise_token_auth_create_users.devise_token_auth.rb +57 -0
  62. data/test/dummy/db/schema.rb +46 -0
  63. data/test/dummy/db/test.sqlite3 +0 -0
  64. data/test/dummy/log/development.log +3406 -0
  65. data/test/dummy/public/404.html +67 -0
  66. data/test/dummy/public/422.html +67 -0
  67. data/test/dummy/public/500.html +66 -0
  68. data/test/dummy/public/favicon.ico +0 -0
  69. data/test/integration/navigation_test.rb +10 -0
  70. data/test/lib/generators/devise_token_auth/devise_token_auth_generator_test.rb +16 -0
  71. data/test/test_helper.rb +15 -0
  72. metadata +200 -0
@@ -0,0 +1,39 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Precompile additional assets.
7
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
8
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,5 @@
1
+ Rails.application.config.middleware.use OmniAuth::Builder do
2
+ provider :github, ENV['GITHUB_KEY'], ENV['GITHUB_SECRET'], scope: 'email,profile'
3
+ provider :facebook, ENV['FACEBOOK_KEY'], ENV['FACEBOOK_SECRET']
4
+ provider :google_oauth2, ENV['GOOGLE_KEY'], ENV['GOOGLE_SECRET']
5
+ end
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,3 @@
1
+ Rails.application.routes.draw do
2
+ mount DeviseTokenAuth::Engine => "/auth"
3
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 0bf8734819590884c2187d13a26dbda06f965098cf51c8fbdae0281364610b14dc8f487eeb5fd1410ccddc7de0b56e4a535f57a27a487606d1af8965cffd2fa5
15
+
16
+ test:
17
+ secret_key_base: 1e35bf6c80d7987805e9cdfd6957271312a3fe583d5cf8e51dc051b92f74eb7d299dbeba25e4f5d13cdc44d70922b9620d037800ddfaad05d72870b09be04c1f
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
Binary file
@@ -0,0 +1,57 @@
1
+ # This migration comes from devise_token_auth (originally 20140628234942)
2
+ class DeviseTokenAuthCreateUsers < ActiveRecord::Migration
3
+ def change
4
+ create_table(:users) do |t|
5
+ ## Database authenticatable
6
+ t.string :email
7
+ t.string :encrypted_password, :null => false, :default => ""
8
+
9
+ ## Recoverable
10
+ t.string :reset_password_token
11
+ t.datetime :reset_password_sent_at
12
+
13
+ ## Rememberable
14
+ t.datetime :remember_created_at
15
+
16
+ ## Trackable
17
+ t.integer :sign_in_count, :default => 0, :null => false
18
+ t.datetime :current_sign_in_at
19
+ t.datetime :last_sign_in_at
20
+ t.string :current_sign_in_ip
21
+ t.string :last_sign_in_ip
22
+
23
+ ## Confirmable
24
+ t.string :confirmation_token
25
+ t.datetime :confirmed_at
26
+ t.datetime :confirmation_sent_at
27
+ t.string :confirm_success_url
28
+ # t.string :unconfirmed_email # Only if using reconfirmable
29
+
30
+ ## Lockable
31
+ # t.integer :failed_attempts, :default => 0, :null => false # Only if lock strategy is :failed_attempts
32
+ # t.string :unlock_token # Only if unlock strategy is :email or :both
33
+ # t.datetime :locked_at
34
+
35
+ ## Token auth
36
+ t.string :auth_token, :default => "", :null => false
37
+
38
+ ## User Info
39
+ t.string :name
40
+ t.string :nickname
41
+ t.string :image
42
+
43
+ ## unique oauth id
44
+ t.string :provider
45
+ t.string :uid, :null => false, :default => ""
46
+
47
+ t.timestamps
48
+ end
49
+
50
+ add_index :users, :auth_token
51
+ add_index :users, :uid, :unique => true
52
+ add_index :users, :email, :unique => true
53
+ add_index :users, :reset_password_token, :unique => true
54
+ # add_index :users, :confirmation_token, :unique => true
55
+ # add_index :users, :unlock_token, :unique => true
56
+ end
57
+ end
@@ -0,0 +1,46 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended that you check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(version: 20140629011345) do
15
+
16
+ create_table "users", force: true do |t|
17
+ t.string "email"
18
+ t.string "encrypted_password", default: "", null: false
19
+ t.string "reset_password_token"
20
+ t.datetime "reset_password_sent_at"
21
+ t.datetime "remember_created_at"
22
+ t.integer "sign_in_count", default: 0, null: false
23
+ t.datetime "current_sign_in_at"
24
+ t.datetime "last_sign_in_at"
25
+ t.string "current_sign_in_ip"
26
+ t.string "last_sign_in_ip"
27
+ t.string "confirmation_token"
28
+ t.datetime "confirmed_at"
29
+ t.datetime "confirmation_sent_at"
30
+ t.string "confirm_success_url"
31
+ t.string "auth_token", default: "", null: false
32
+ t.string "name"
33
+ t.string "nickname"
34
+ t.string "image"
35
+ t.string "provider"
36
+ t.string "uid", default: "", null: false
37
+ t.datetime "created_at"
38
+ t.datetime "updated_at"
39
+ end
40
+
41
+ add_index "users", ["auth_token"], name: "index_users_on_auth_token"
42
+ add_index "users", ["email"], name: "index_users_on_email", unique: true
43
+ add_index "users", ["reset_password_token"], name: "index_users_on_reset_password_token", unique: true
44
+ add_index "users", ["uid"], name: "index_users_on_uid", unique: true
45
+
46
+ end
File without changes
@@ -0,0 +1,3406 @@
1
+
2
+
3
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 20:53:12 -0500
4
+
5
+ ActiveRecord::PendingMigrationError (
6
+
7
+ Migrations are pending. To resolve this issue, run:
8
+
9
+ bin/rake db:migrate RAILS_ENV=development
10
+
11
+ ):
12
+ activerecord (4.1.2) lib/active_record/migration.rb:389:in `check_pending!'
13
+ activerecord (4.1.2) lib/active_record/migration.rb:377:in `call'
14
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
15
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
16
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
17
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
18
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
19
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
20
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
21
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
22
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
23
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
24
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
25
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
26
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
27
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
28
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
29
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
30
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
31
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
32
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
33
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
34
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
35
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
36
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
37
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
38
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
39
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
40
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
41
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
42
+
43
+
44
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
45
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
46
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms)
47
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.1ms)
48
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
49
+  (0.1ms) select sqlite_version(*)
50
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
51
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
53
+  (0.0ms) begin transaction
54
+  (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "auth_token" varchar(255) DEFAULT '' NOT NULL, "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
55
+  (0.1ms) CREATE INDEX "index_users_on_auth_token" ON "users" ("auth_token")
56
+  (0.1ms) SELECT sql
57
+ FROM sqlite_master
58
+ WHERE name='index_users_on_auth_token' AND type='index'
59
+ UNION ALL
60
+ SELECT sql
61
+ FROM sqlite_temp_master
62
+ WHERE name='index_users_on_auth_token' AND type='index'
63
+
64
+  (0.7ms) CREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")
65
+  (0.1ms) SELECT sql
66
+ FROM sqlite_master
67
+ WHERE name='index_users_on_uid' AND type='index'
68
+ UNION ALL
69
+ SELECT sql
70
+ FROM sqlite_temp_master
71
+ WHERE name='index_users_on_uid' AND type='index'
72
+
73
+  (0.0ms)  SELECT sql
74
+ FROM sqlite_master
75
+ WHERE name='index_users_on_auth_token' AND type='index'
76
+ UNION ALL
77
+ SELECT sql
78
+ FROM sqlite_temp_master
79
+ WHERE name='index_users_on_auth_token' AND type='index'
80
+ 
81
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
82
+  (0.1ms)  SELECT sql
83
+ FROM sqlite_master
84
+ WHERE name='index_users_on_email' AND type='index'
85
+ UNION ALL
86
+ SELECT sql
87
+ FROM sqlite_temp_master
88
+ WHERE name='index_users_on_email' AND type='index'
89
+ 
90
+  (0.0ms) SELECT sql
91
+ FROM sqlite_master
92
+ WHERE name='index_users_on_uid' AND type='index'
93
+ UNION ALL
94
+ SELECT sql
95
+ FROM sqlite_temp_master
96
+ WHERE name='index_users_on_uid' AND type='index'
97
+
98
+  (0.0ms)  SELECT sql
99
+ FROM sqlite_master
100
+ WHERE name='index_users_on_auth_token' AND type='index'
101
+ UNION ALL
102
+ SELECT sql
103
+ FROM sqlite_temp_master
104
+ WHERE name='index_users_on_auth_token' AND type='index'
105
+ 
106
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
107
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140629011345"]]
108
+  (0.8ms) commit transaction
109
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
110
+  (0.1ms) SELECT sql
111
+ FROM sqlite_master
112
+ WHERE name='index_users_on_reset_password_token' AND type='index'
113
+ UNION ALL
114
+ SELECT sql
115
+ FROM sqlite_temp_master
116
+ WHERE name='index_users_on_reset_password_token' AND type='index'
117
+
118
+  (0.1ms)  SELECT sql
119
+ FROM sqlite_master
120
+ WHERE name='index_users_on_email' AND type='index'
121
+ UNION ALL
122
+ SELECT sql
123
+ FROM sqlite_temp_master
124
+ WHERE name='index_users_on_email' AND type='index'
125
+ 
126
+  (0.1ms) SELECT sql
127
+ FROM sqlite_master
128
+ WHERE name='index_users_on_uid' AND type='index'
129
+ UNION ALL
130
+ SELECT sql
131
+ FROM sqlite_temp_master
132
+ WHERE name='index_users_on_uid' AND type='index'
133
+
134
+  (0.1ms)  SELECT sql
135
+ FROM sqlite_master
136
+ WHERE name='index_users_on_auth_token' AND type='index'
137
+ UNION ALL
138
+ SELECT sql
139
+ FROM sqlite_temp_master
140
+ WHERE name='index_users_on_auth_token' AND type='index'
141
+ 
142
+
143
+
144
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 20:53:35 -0500
145
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
146
+
147
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
148
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
149
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
150
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
151
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
152
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
153
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
154
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
155
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
156
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
157
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
158
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
159
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
160
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
161
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
162
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
163
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
164
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
165
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
166
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
167
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
168
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
169
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
170
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
171
+
172
+
173
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
174
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
175
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
176
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.2ms)
177
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (32.8ms)
178
+
179
+
180
+ Started OPTIONS "/auth/" for 127.0.0.1 at 2014-06-28 20:55:18 -0500
181
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
182
+
183
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
184
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
185
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
186
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
187
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
188
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
189
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
190
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
191
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
192
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
193
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
194
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
195
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
196
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
197
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
198
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
199
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
200
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
201
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
202
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
203
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
204
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
205
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
206
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
207
+
208
+
209
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
210
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
211
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
212
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.1ms)
213
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (29.0ms)
214
+
215
+
216
+ Started OPTIONS "/auth/" for 127.0.0.1 at 2014-06-28 20:56:46 -0500
217
+
218
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
219
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
220
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
221
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
222
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
223
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
224
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
225
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
226
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
227
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
228
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
229
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
230
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
231
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
232
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
233
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
234
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
235
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
236
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
237
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
238
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
239
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
240
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
241
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
242
+
243
+
244
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
245
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
246
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.0ms)
247
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
248
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.8ms)
249
+
250
+
251
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 20:57:14 -0500
252
+
253
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
254
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
255
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
256
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
257
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
258
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
259
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
260
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
261
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
262
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
263
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
264
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
265
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
266
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
267
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
268
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
269
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
270
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
271
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
272
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
273
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
274
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
275
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
276
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
277
+
278
+
279
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
280
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
281
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
282
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.3ms)
283
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.2ms)
284
+
285
+
286
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 20:57:23 -0500
287
+
288
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
289
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
290
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
291
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
292
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
293
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
294
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
295
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
296
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
297
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
298
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
299
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
300
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
301
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
302
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
303
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
304
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
305
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
306
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
307
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
308
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
309
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
310
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
311
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
312
+
313
+
314
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
315
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
316
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms)
317
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.6ms)
318
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (27.4ms)
319
+
320
+
321
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 20:57:56 -0500
322
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
323
+
324
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
325
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
326
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
327
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
328
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
329
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
330
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
331
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
332
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
333
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
334
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
335
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
336
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
337
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
338
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
339
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
340
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
341
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
342
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
343
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
344
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
345
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
346
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
347
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
348
+
349
+
350
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
351
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
352
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
353
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.1ms)
354
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (27.8ms)
355
+
356
+
357
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 22:23:34 -0500
358
+
359
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth"):
360
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
361
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
362
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
363
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
364
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
365
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
366
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
367
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
368
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
369
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
370
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
371
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
372
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
373
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
374
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
375
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
376
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
377
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
378
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
379
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
380
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
381
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
382
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
383
+
384
+
385
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
386
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
387
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.3ms)
388
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
389
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (27.0ms)
390
+
391
+
392
+ Started OPTIONS "/" for 127.0.0.1 at 2014-06-28 22:26:36 -0500
393
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
394
+
395
+ ActionController::RoutingError (No route matches [OPTIONS] "/"):
396
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
397
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
398
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
399
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
400
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
401
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
402
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
403
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
404
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
405
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
406
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
407
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
408
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
409
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
410
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
411
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
412
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
413
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
414
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
415
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
416
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
417
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
418
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
419
+
420
+
421
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
422
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
423
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
424
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.6ms)
425
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (39.9ms)
426
+
427
+
428
+ Started OPTIONS "/" for 127.0.0.1 at 2014-06-28 22:29:04 -0500
429
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
430
+
431
+
432
+ Started POST "/" for 127.0.0.1 at 2014-06-28 22:29:04 -0500
433
+
434
+ ActionController::RoutingError (No route matches [POST] "/"):
435
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
436
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
437
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
438
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
439
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
440
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
441
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
442
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
443
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
444
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
445
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
446
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
447
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
448
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
449
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
450
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
451
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
452
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
453
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
454
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
455
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
456
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
457
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
458
+
459
+
460
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
461
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
462
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.9ms)
463
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.4ms)
464
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (38.5ms)
465
+
466
+
467
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-28 22:30:24 -0500
468
+
469
+
470
+ Started POST "/auth" for 127.0.0.1 at 2014-06-28 22:30:24 -0500
471
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
472
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
473
+ Unpermitted parameters: registration
474
+ Unpermitted parameters: registration
475
+  (0.1ms) begin transaction
476
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
477
+  (0.1ms) rollback transaction
478
+ Completed 403 Forbidden in 126ms (Views: 0.2ms | ActiveRecord: 0.6ms)
479
+
480
+
481
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-29 02:02:41 -0500
482
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
483
+
484
+
485
+ Started POST "/auth" for 127.0.0.1 at 2014-06-29 02:02:41 -0500
486
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
487
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
488
+ Unpermitted parameters: registration
489
+ Unpermitted parameters: registration
490
+ Unpermitted parameters: registration
491
+  (0.1ms) begin transaction
492
+ User Exists (0.5ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
493
+  (0.1ms) rollback transaction
494
+  (0.1ms) begin transaction
495
+ CACHE (0.0ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
496
+  (0.0ms) rollback transaction
497
+ Completed 403 Forbidden in 174010ms (Views: 0.3ms | ActiveRecord: 1.2ms)
498
+
499
+
500
+ Started POST "/auth" for 127.0.0.1 at 2014-06-29 02:05:35 -0500
501
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
502
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
503
+ Unpermitted parameters: registration
504
+ Unpermitted parameters: registration
505
+  (0.1ms) begin transaction
506
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
507
+ Binary data inserted for `string` type on column `encrypted_password`
508
+ SQL (1.9ms) INSERT INTO "users" ("auth_token", "confirm_success_url", "created_at", "email", "encrypted_password", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "e1Bpr1SPHKQ-8ZGT2TSKfQ"], ["confirm_success_url", "http://localhost:7777/"], ["created_at", "2014-06-29 07:05:36.528562"], ["email", "test@test.com"], ["encrypted_password", "$2a$10$5qSdRE7PKk7OpoDg2br6luV.hAk8H5hFbZQFYUwrb4m2sXQxuI042"], ["provider", "email"], ["uid", "test@test.com"], ["updated_at", "2014-06-29 07:05:36.528562"]]
509
+  (0.7ms) commit transaction
510
+ Completed 200 OK in 1378ms (Views: 0.2ms | ActiveRecord: 2.9ms)
511
+
512
+
513
+ Started POST "/auth" for 127.0.0.1 at 2014-06-29 02:05:52 -0500
514
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
515
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
516
+ Unpermitted parameters: registration
517
+ Unpermitted parameters: registration
518
+  (0.1ms) begin transaction
519
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
520
+  (0.0ms) rollback transaction
521
+ Completed 403 Forbidden in 89ms (Views: 0.2ms | ActiveRecord: 1.0ms)
522
+
523
+
524
+ Started POST "/auth" for 127.0.0.1 at 2014-06-29 02:09:50 -0500
525
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
526
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
527
+ Unpermitted parameters: registration
528
+ Unpermitted parameters: registration
529
+  (0.1ms) begin transaction
530
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
531
+  (0.0ms) rollback transaction
532
+ Completed 403 Forbidden in 81ms (Views: 0.3ms | ActiveRecord: 0.9ms)
533
+
534
+
535
+ Started OPTIONS "/auth/sign_in" for 127.0.0.1 at 2014-06-29 02:13:08 -0500
536
+
537
+
538
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-06-29 02:13:08 -0500
539
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
540
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
541
+ Unpermitted parameters: session
542
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
543
+  (0.1ms) begin transaction
544
+ Binary data inserted for `string` type on column `current_sign_in_ip`
545
+ Binary data inserted for `string` type on column `last_sign_in_ip`
546
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "current_sign_in_ip" = ?, "last_sign_in_at" = ?, "last_sign_in_ip" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-29 07:13:08.187452"], ["current_sign_in_ip", "127.0.0.1"], ["last_sign_in_at", "2014-06-29 07:13:08.187452"], ["last_sign_in_ip", "127.0.0.1"], ["sign_in_count", 1], ["updated_at", "2014-06-29 07:13:08.188396"]]
547
+  (0.8ms) commit transaction
548
+ Completed 200 OK in 70ms (Views: 0.3ms | ActiveRecord: 1.5ms)
549
+
550
+
551
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-29 02:13:14 -0500
552
+
553
+ ActionController::RoutingError (No route matches [OPTIONS] "/auth/sign_out"):
554
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
555
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
556
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
557
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
558
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
559
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
560
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
561
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
562
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
563
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
564
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
565
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
566
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
567
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
568
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
569
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
570
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
571
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
572
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
573
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
574
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
575
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
576
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
577
+
578
+
579
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
580
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
581
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
582
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.0ms)
583
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (28.7ms)
584
+
585
+
586
+ Started OPTIONS "/auth/sign_in" for 127.0.0.1 at 2014-06-29 02:15:05 -0500
587
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
588
+
589
+
590
+ Started POST "/auth/sign_in" for 127.0.0.1 at 2014-06-29 02:15:05 -0500
591
+ Processing by DeviseTokenAuth::SessionsController#create as HTML
592
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "session"=>{"email"=>"test@test.com", "password"=>"[FILTERED]"}}
593
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'e1Bpr1SPHKQ-8ZGT2TSKfQ' ORDER BY "users"."id" ASC LIMIT 1
594
+ Unpermitted parameters: session
595
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
596
+  (0.1ms) begin transaction
597
+ SQL (0.3ms) UPDATE "users" SET "current_sign_in_at" = ?, "sign_in_count" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["current_sign_in_at", "2014-06-29 07:15:05.592332"], ["sign_in_count", 2], ["updated_at", "2014-06-29 07:15:05.593605"]]
598
+  (1.9ms) commit transaction
599
+ Completed 200 OK in 96ms (Views: 0.3ms | ActiveRecord: 3.0ms)
600
+
601
+
602
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-29 02:15:10 -0500
603
+
604
+
605
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 02:15:10 -0500
606
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
607
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'e1Bpr1SPHKQ-8ZGT2TSKfQ' ORDER BY "users"."id" ASC LIMIT 1
608
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
609
+
610
+
611
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:00:03 -0500
612
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
613
+
614
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
615
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
616
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
617
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
618
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
619
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
620
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
621
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
622
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
623
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
624
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
625
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
626
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
627
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
628
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
629
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
630
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
631
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
632
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
633
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
634
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
635
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
636
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
637
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
638
+
639
+
640
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
641
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
642
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
643
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.5ms)
644
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.2ms)
645
+
646
+
647
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:07:34 -0500
648
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
649
+
650
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
651
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
652
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
653
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
654
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
655
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
656
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
657
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
658
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
659
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
660
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
661
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
662
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
663
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
664
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
665
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
666
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
667
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
668
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
669
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
670
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
671
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
672
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
673
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
674
+
675
+
676
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
677
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
678
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
679
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.7ms)
680
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (26.1ms)
681
+
682
+
683
+ Started OPTIONS "/auth" for 127.0.0.1 at 2014-06-29 04:16:00 -0500
684
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
685
+
686
+
687
+ Started POST "/auth" for 127.0.0.1 at 2014-06-29 04:16:00 -0500
688
+ Processing by DeviseTokenAuth::RegistrationsController#create as HTML
689
+ Parameters: {"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/", "registration"=>{"email"=>"test@test.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]", "confirm_success_url"=>"http://localhost:7777/"}}
690
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'e1Bpr1SPHKQ-8ZGT2TSKfQ' ORDER BY "users"."id" ASC LIMIT 1
691
+ Unpermitted parameters: registration
692
+ Unpermitted parameters: registration
693
+  (0.1ms) begin transaction
694
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'test@test.com' LIMIT 1
695
+  (0.1ms) rollback transaction
696
+ Completed 403 Forbidden in 114ms (Views: 0.3ms | ActiveRecord: 0.8ms)
697
+
698
+
699
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:16:06 -0500
700
+
701
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
702
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
703
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
704
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
705
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
706
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
707
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
708
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
709
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
710
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
711
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
712
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
713
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
714
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
715
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
716
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
717
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
718
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
719
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
720
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
721
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
722
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
723
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
724
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
725
+
726
+
727
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
728
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
729
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.0ms)
730
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.7ms)
731
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.0ms)
732
+
733
+
734
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:20:55 -0500
735
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
736
+
737
+ ActionController::RoutingError (uninitialized constant DeviseTokenAuth::Users):
738
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `const_get'
739
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `block in constantize'
740
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `each'
741
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `inject'
742
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `constantize'
743
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
744
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:68:in `controller'
745
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:46:in `call'
746
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
747
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
748
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
749
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
750
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
751
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
752
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
753
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
754
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
755
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
756
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
757
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
758
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
759
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
760
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
761
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
762
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
763
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
764
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
765
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
766
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
767
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
768
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
769
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
770
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
771
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
772
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
773
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
774
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
775
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
776
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
777
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
778
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
779
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
780
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
781
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
782
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
783
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
784
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
785
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
786
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
787
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
788
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
789
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
790
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
791
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
792
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
793
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
794
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
795
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
796
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
797
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
798
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
799
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
800
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
801
+
802
+
803
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
804
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
805
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
806
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.8ms)
807
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (28.7ms)
808
+
809
+
810
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:23:26 -0500
811
+
812
+ ActionController::RoutingError (uninitialized constant DeviseTokenAuth::Users):
813
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `const_get'
814
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `block in constantize'
815
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `each'
816
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `inject'
817
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `constantize'
818
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
819
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:68:in `controller'
820
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:46:in `call'
821
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
822
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
823
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
824
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
825
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
826
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
827
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
828
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
829
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
830
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
831
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
832
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
833
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
834
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
835
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
836
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
837
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
838
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
839
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
840
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
841
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
842
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
843
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
844
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
845
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
846
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
847
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
848
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
849
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
850
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
851
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
852
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
853
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
854
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
855
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
856
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
857
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
858
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
859
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
860
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
861
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
862
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
863
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
864
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
865
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
866
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
867
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
868
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
869
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
870
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
871
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
872
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
873
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
874
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
875
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
876
+
877
+
878
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
879
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
880
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
881
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
882
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (21.7ms)
883
+
884
+
885
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:29:39 -0500
886
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
887
+
888
+ ActionController::RoutingError (uninitialized constant DeviseTokenAuth::Users):
889
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `const_get'
890
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `block in constantize'
891
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `each'
892
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `inject'
893
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `constantize'
894
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
895
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:68:in `controller'
896
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:46:in `call'
897
+ actionpack (4.1.2) lib/action_dispatch/routing/mapper.rb:45:in `call'
898
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
899
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
900
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
901
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
902
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
903
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
904
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
905
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
906
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
907
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
908
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
909
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
910
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
911
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
912
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
913
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
914
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
915
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
916
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
917
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
918
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
919
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
920
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
921
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
922
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
923
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
924
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
925
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
926
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
927
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
928
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
929
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
930
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
931
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
932
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
933
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
934
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
935
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
936
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
937
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
938
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
939
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
940
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
941
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
942
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
943
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
944
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
945
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
946
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
947
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
948
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
949
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
950
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
951
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
952
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
953
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
954
+
955
+
956
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
957
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
958
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
959
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.1ms)
960
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.4ms)
961
+
962
+
963
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:30:24 -0500
964
+
965
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
966
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
967
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
968
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
969
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
970
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
971
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
972
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
973
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
974
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
975
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
976
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
977
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
978
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
979
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
980
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
981
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
982
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
983
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
984
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
985
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
986
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
987
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
988
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
989
+
990
+
991
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
992
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
993
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
994
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
995
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.1ms)
996
+
997
+
998
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:30:30 -0500
999
+
1000
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1001
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1002
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1003
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1004
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1005
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1006
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1007
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1008
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1009
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1010
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1011
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1012
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1013
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1014
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1015
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1016
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1017
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1018
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1019
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1020
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1021
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1022
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1023
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1024
+
1025
+
1026
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1027
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1028
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1029
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1030
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.8ms)
1031
+
1032
+
1033
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 04:30:49 -0500
1034
+
1035
+ ActionController::RoutingError (uninitialized constant DeviseTokenAuth::OmniauthCallbacksController):
1036
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `const_get'
1037
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:240:in `block in constantize'
1038
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `each'
1039
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `inject'
1040
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `constantize'
1041
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
1042
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:68:in `controller'
1043
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:46:in `call'
1044
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1045
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
1046
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
1047
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
1048
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1049
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
1050
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
1051
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1052
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
1053
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
1054
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
1055
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
1056
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
1057
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
1058
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1059
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1060
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1061
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1062
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1063
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1064
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1065
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
1066
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1067
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1068
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1069
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
1070
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1071
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
1072
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1073
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
1074
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1075
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1076
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1077
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1078
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1079
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1080
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1081
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1082
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1083
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1084
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1085
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1086
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1087
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1088
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1089
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1090
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1091
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1092
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1093
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1094
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1095
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1096
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1097
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1098
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1099
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1100
+
1101
+
1102
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1103
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1104
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1105
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.6ms)
1106
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (28.5ms)
1107
+
1108
+
1109
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 04:53:09 -0500
1110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1111
+ Processing by Devise::OmniauthCallbacksController#passthru as HTML
1112
+ Parameters: {"provider"=>"github"}
1113
+ Rendered text template (0.0ms)
1114
+ Completed 404 Not Found in 5ms (Views: 4.5ms | ActiveRecord: 0.0ms)
1115
+
1116
+
1117
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 04:54:59 -0500
1118
+ Processing by Devise::OmniauthCallbacksController#passthru as HTML
1119
+ Parameters: {"provider"=>"github"}
1120
+ Rendered text template (0.0ms)
1121
+ Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1122
+
1123
+
1124
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 04:55:11 -0500
1125
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1126
+ Processing by Devise::OmniauthCallbacksController#passthru as HTML
1127
+ Parameters: {"provider"=>"github"}
1128
+ Rendered text template (0.0ms)
1129
+ Completed 404 Not Found in 6ms (Views: 5.4ms | ActiveRecord: 0.0ms)
1130
+
1131
+
1132
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 05:01:55 -0500
1133
+ Processing by Devise::OmniauthCallbacksController#passthru as HTML
1134
+ Parameters: {"provider"=>"github"}
1135
+ Rendered text template (0.0ms)
1136
+ Completed 404 Not Found in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
1137
+
1138
+
1139
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 05:02:05 -0500
1140
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1141
+ Processing by Devise::OmniauthCallbacksController#passthru as HTML
1142
+ Parameters: {"provider"=>"github"}
1143
+ Rendered text template (0.0ms)
1144
+ Completed 404 Not Found in 4ms (Views: 3.8ms | ActiveRecord: 0.0ms)
1145
+
1146
+
1147
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 16:25:52 -0500
1148
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
1149
+ Processing by Devise::OmniauthCallbacksController#passthru as HTML
1150
+ Parameters: {"provider"=>"github"}
1151
+ Rendered text template (0.0ms)
1152
+ Completed 404 Not Found in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
1153
+
1154
+
1155
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 16:29:10 -0500
1156
+
1157
+ ActionController::RoutingError (No route matches [GET] "/auth/auth/github"):
1158
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1159
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1160
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1161
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1162
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1163
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1164
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1165
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1166
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1167
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1168
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1169
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1170
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1171
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1172
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1173
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1174
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1175
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1176
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1177
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1178
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1179
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1180
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1181
+
1182
+
1183
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
1184
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1185
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1186
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.3ms)
1187
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (31.2ms)
1188
+
1189
+
1190
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 16:29:27 -0500
1191
+
1192
+ ActionController::RoutingError (No route matches [GET] "/auth/auth/github"):
1193
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1194
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1195
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1196
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1197
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1198
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1199
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1200
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1201
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1202
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1203
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1204
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1205
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1206
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1207
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1208
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1209
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1210
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1211
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1212
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1213
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1214
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1215
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1216
+
1217
+
1218
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1219
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1220
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1221
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1222
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.0ms)
1223
+
1224
+
1225
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:30:33 -0500
1226
+
1227
+
1228
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:30:56 -0500
1229
+
1230
+
1231
+ Started GET "/auth/github/callback?code=154191fc1dfbe61048d9&state=4381df298043743fbe0d98787a6b940570dfcd749a13f497" for 127.0.0.1 at 2014-06-29 16:31:13 -0500
1232
+
1233
+ ActionController::RoutingError (No route matches [GET] "/auth/github/callback"):
1234
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1235
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1236
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1237
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1238
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1239
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1240
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1241
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1242
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1243
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1244
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1245
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1246
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1247
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1248
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1249
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1250
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1251
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1252
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1253
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1254
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1255
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1256
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1257
+
1258
+
1259
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1260
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1261
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1262
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1263
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.8ms)
1264
+
1265
+
1266
+ Started GET "/auth/github/callback?code=154191fc1dfbe61048d9&state=4381df298043743fbe0d98787a6b940570dfcd749a13f497" for 127.0.0.1 at 2014-06-29 16:31:29 -0500
1267
+ Processing by Devise::OmniauthCallbacksController#failure as HTML
1268
+ Parameters: {"code"=>"154191fc1dfbe61048d9", "state"=>"4381df298043743fbe0d98787a6b940570dfcd749a13f497"}
1269
+ Redirected to http://localhost:3000/auth/sign_in
1270
+ Completed 302 Found in 10ms (ActiveRecord: 0.0ms)
1271
+
1272
+
1273
+ Started GET "/auth/sign_in" for 127.0.0.1 at 2014-06-29 16:31:29 -0500
1274
+ Processing by DeviseTokenAuth::SessionsController#new as HTML
1275
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/shared/_links.erb (1.2ms)
1276
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/sessions/new.html.erb (12.4ms)
1277
+ Completed 200 OK in 32ms (Views: 17.5ms | ActiveRecord: 0.5ms)
1278
+
1279
+
1280
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:32:46 -0500
1281
+
1282
+
1283
+ Started GET "/auth/github/callback?code=04e67c177f10fc73a26a&state=724672ca8591c0e3aef7e6559feef1abad415776f38a5d22" for 127.0.0.1 at 2014-06-29 16:32:46 -0500
1284
+
1285
+ ActionController::RoutingError (uninitialized constant DeviseTokenAuth::DeviseTokenAuth):
1286
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:253:in `const_get'
1287
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:253:in `block in constantize'
1288
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `each'
1289
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `inject'
1290
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `constantize'
1291
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
1292
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:68:in `controller'
1293
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:46:in `call'
1294
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1295
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
1296
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
1297
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
1298
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1299
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
1300
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
1301
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1302
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
1303
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
1304
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
1305
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
1306
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
1307
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
1308
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
1309
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
1310
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
1311
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
1312
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1313
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1314
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1315
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1316
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1317
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1318
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1319
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
1320
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1321
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1322
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1323
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
1324
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1325
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
1326
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1327
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
1328
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1329
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1330
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1331
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1332
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1333
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1334
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1335
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1336
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1337
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1338
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1339
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1340
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1341
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1342
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1343
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1344
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1345
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1346
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1347
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1348
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1349
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1350
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1351
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1352
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1353
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1354
+
1355
+
1356
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1357
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1358
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1359
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
1360
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (25.1ms)
1361
+
1362
+
1363
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:37:23 -0500
1364
+
1365
+
1366
+ Started GET "/auth/github/callback?code=8a98c8793f7e84ab3706&state=3e73495e23eb49036e4fc17bf73006514a91bcaa5a60bb4d" for 127.0.0.1 at 2014-06-29 16:37:23 -0500
1367
+
1368
+ ActionController::RoutingError (uninitialized constant DeviseTokenAuth::DeviseTokenAuth):
1369
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:253:in `const_get'
1370
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:253:in `block in constantize'
1371
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `each'
1372
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `inject'
1373
+ activesupport (4.1.2) lib/active_support/inflector/methods.rb:236:in `constantize'
1374
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:78:in `controller_reference'
1375
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:68:in `controller'
1376
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:46:in `call'
1377
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1378
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
1379
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
1380
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
1381
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1382
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
1383
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
1384
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
1385
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
1386
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
1387
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
1388
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
1389
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
1390
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
1391
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
1392
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
1393
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
1394
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
1395
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
1396
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
1397
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
1398
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
1399
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
1400
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
1401
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1402
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
1403
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
1404
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
1405
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1406
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
1407
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
1408
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
1409
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1410
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
1411
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1412
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1413
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
1414
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1415
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1416
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1417
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1418
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1419
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1420
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1421
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1422
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1423
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1424
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1425
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1426
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1427
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1428
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1429
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1430
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1431
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1432
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1433
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1434
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1435
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1436
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1437
+
1438
+
1439
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1440
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1441
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1442
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1443
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.6ms)
1444
+
1445
+
1446
+ Started GET "/auth/github/callback?code=8a98c8793f7e84ab3706&state=3e73495e23eb49036e4fc17bf73006514a91bcaa5a60bb4d" for 127.0.0.1 at 2014-06-29 16:38:24 -0500
1447
+ Processing by Devise::OmniauthCallbacksController#failure as HTML
1448
+ Parameters: {"code"=>"8a98c8793f7e84ab3706", "state"=>"3e73495e23eb49036e4fc17bf73006514a91bcaa5a60bb4d"}
1449
+ Redirected to http://localhost:3000/auth/sign_in
1450
+ Completed 302 Found in 1ms (ActiveRecord: 0.0ms)
1451
+
1452
+
1453
+ Started GET "/auth/sign_in" for 127.0.0.1 at 2014-06-29 16:38:24 -0500
1454
+ Processing by DeviseTokenAuth::SessionsController#new as HTML
1455
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/shared/_links.erb (0.3ms)
1456
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/devise-3.2.4/app/views/devise/sessions/new.html.erb (3.6ms)
1457
+ Completed 200 OK in 19ms (Views: 7.9ms | ActiveRecord: 0.5ms)
1458
+
1459
+
1460
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:38:29 -0500
1461
+
1462
+
1463
+ Started GET "/auth/github/callback?code=ce67af97bc86cba9877e&state=15c32e77d942f5fe8fe08f69e40261a89af3be0a322b8256" for 127.0.0.1 at 2014-06-29 16:38:30 -0500
1464
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
1465
+ Parameters: {"code"=>"ce67af97bc86cba9877e", "state"=>"15c32e77d942f5fe8fe08f69e40261a89af3be0a322b8256", "provider"=>"github"}
1466
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
1467
+  (0.1ms) begin transaction
1468
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn.dylan.hurley@gmail.com' LIMIT 1
1469
+ Binary data inserted for `string` type on column `encrypted_password`
1470
+ SQL (1.7ms) INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "XBHj7TaRrNO3VRgIq5GHyA"], ["created_at", "2014-06-29 21:38:31.708558"], ["email", "lynn.dylan.hurley@gmail.com"], ["encrypted_password", "$2a$10$MpbitsJjE.7kVcseg0OCt.rcjrhMdqKCL6SKS/jnHsz7N.n9MeVDW"], ["image", "https://avatars.githubusercontent.com/u/468037?"], ["name", "Lynn Dylan Hurley"], ["nickname", "lynndylanhurley"], ["provider", "github"], ["uid", "468037"], ["updated_at", "2014-06-29 21:38:31.708558"]]
1471
+  (1.0ms) commit transaction
1472
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.6ms)
1473
+ Completed 200 OK in 112ms (Views: 3.6ms | ActiveRecord: 3.4ms)
1474
+
1475
+
1476
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-29 16:38:38 -0500
1477
+
1478
+
1479
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 16:38:38 -0500
1480
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
1481
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'XBHj7TaRrNO3VRgIq5GHyA' ORDER BY "users"."id" ASC LIMIT 1
1482
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
1483
+
1484
+
1485
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 16:38:40 -0500
1486
+
1487
+ ActionController::RoutingError (No route matches [GET] "/auth/facebook"):
1488
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1489
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1490
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1491
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1492
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1493
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1494
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1495
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1496
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1497
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1498
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1499
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1500
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1501
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1502
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1503
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1504
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1505
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1506
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1507
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1508
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1509
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1510
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1511
+
1512
+
1513
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1514
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
1515
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1516
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1517
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.2ms)
1518
+
1519
+
1520
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:38:55 -0500
1521
+
1522
+
1523
+ Started GET "/auth/github/callback?code=1e31371671b73aee1dd4&state=adbd98f86c8cac0aeabb8dc5593a2679a433cfcbc7667d30" for 127.0.0.1 at 2014-06-29 16:38:55 -0500
1524
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
1525
+ Parameters: {"code"=>"1e31371671b73aee1dd4", "state"=>"adbd98f86c8cac0aeabb8dc5593a2679a433cfcbc7667d30", "provider"=>"github"}
1526
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
1527
+  (0.1ms) begin transaction
1528
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["auth_token", "OnU3OfFhnJ2-gsjLlwP8rA"], ["updated_at", "2014-06-29 21:38:56.703348"]]
1529
+  (1.7ms) commit transaction
1530
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
1531
+ Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 2.4ms)
1532
+
1533
+
1534
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-29 16:38:59 -0500
1535
+
1536
+
1537
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-29 16:38:59 -0500
1538
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
1539
+ Parameters: {"auth_token"=>"OnU3OfFhnJ2-gsjLlwP8rA", "uid"=>"468037", "auth"=>{"auth_token"=>"OnU3OfFhnJ2-gsjLlwP8rA", "uid"=>"468037"}}
1540
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."auth_token" = 'OnU3OfFhnJ2-gsjLlwP8rA' ORDER BY "users"."id" ASC LIMIT 1
1541
+ Completed 200 OK in 1ms (Views: 0.3ms | ActiveRecord: 0.2ms)
1542
+
1543
+
1544
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-29 16:39:06 -0500
1545
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
1546
+ Parameters: {"auth_token"=>"OnU3OfFhnJ2-gsjLlwP8rA", "uid"=>"468037", "auth"=>{"auth_token"=>"OnU3OfFhnJ2-gsjLlwP8rA", "uid"=>"468037"}}
1547
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."auth_token" = 'OnU3OfFhnJ2-gsjLlwP8rA' ORDER BY "users"."id" ASC LIMIT 1
1548
+ Completed 200 OK in 1ms (Views: 0.2ms | ActiveRecord: 0.2ms)
1549
+
1550
+
1551
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-29 16:52:31 -0500
1552
+
1553
+
1554
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-29 16:52:31 -0500
1555
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
1556
+ Parameters: {"auth_token"=>"OnU3OfFhnJ2-gsjLlwP8rA", "uid"=>"468037", "auth"=>{"auth_token"=>"OnU3OfFhnJ2-gsjLlwP8rA", "uid"=>"468037"}}
1557
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."auth_token" = 'OnU3OfFhnJ2-gsjLlwP8rA' ORDER BY "users"."id" ASC LIMIT 1
1558
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.2ms)
1559
+
1560
+
1561
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 16:52:33 -0500
1562
+
1563
+ ActionController::RoutingError (No route matches [GET] "/auth/facebook"):
1564
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1565
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1566
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1567
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1568
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1569
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1570
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1571
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1572
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1573
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1574
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1575
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1576
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1577
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1578
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1579
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1580
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1581
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1582
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1583
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1584
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1585
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1586
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1587
+
1588
+
1589
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1590
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1591
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1592
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1593
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.1ms)
1594
+
1595
+
1596
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 16:57:58 -0500
1597
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1598
+
1599
+ ActionController::RoutingError (No route matches [GET] "/auth/facebook"):
1600
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1601
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1602
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1603
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1604
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1605
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1606
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1607
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1608
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1609
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1610
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1611
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1612
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1613
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1614
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1615
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1616
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1617
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1618
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1619
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1620
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1621
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1622
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1623
+
1624
+
1625
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
1626
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1627
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.1ms)
1628
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (6.5ms)
1629
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (30.8ms)
1630
+
1631
+
1632
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 16:59:50 -0500
1633
+
1634
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1635
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1636
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1637
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1638
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1639
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1640
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1641
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1642
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1643
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1644
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1645
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1646
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1647
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1648
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1649
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1650
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1651
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1652
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1653
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1654
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1655
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1656
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1657
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1658
+
1659
+
1660
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1661
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1662
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1663
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1664
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.2ms)
1665
+
1666
+
1667
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:00:07 -0500
1668
+
1669
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1670
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1671
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1672
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1673
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1674
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1675
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1676
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1677
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1678
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1679
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1680
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1681
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1682
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1683
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1684
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1685
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1686
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1687
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1688
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1689
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1690
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1691
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1692
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1693
+
1694
+
1695
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1696
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1697
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1698
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1699
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.3ms)
1700
+
1701
+
1702
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:10:15 -0500
1703
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1704
+
1705
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1706
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1707
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1708
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1709
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1710
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1711
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1712
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1713
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1714
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1715
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1716
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1717
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1718
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1719
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1720
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1721
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1722
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1723
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1724
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1725
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1726
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1727
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1728
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1729
+
1730
+
1731
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1732
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1733
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1734
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (5.2ms)
1735
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.8ms)
1736
+
1737
+
1738
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:11:17 -0500
1739
+
1740
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1741
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1742
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1743
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1744
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1745
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1746
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1747
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1748
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1749
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1750
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1751
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1752
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1753
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1754
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1755
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1756
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1757
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1758
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1759
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1760
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1761
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1762
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1763
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1764
+
1765
+
1766
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1767
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1768
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1769
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1770
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.9ms)
1771
+
1772
+
1773
+ Started GET "/auth/github/" for 127.0.0.1 at 2014-06-29 17:11:27 -0500
1774
+
1775
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1776
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1777
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1778
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1779
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1780
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1781
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1782
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1783
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1784
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1785
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1786
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1787
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1788
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1789
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1790
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1791
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1792
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1793
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1794
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1795
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1796
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1797
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1798
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1799
+
1800
+
1801
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1802
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1803
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1804
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1805
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.4ms)
1806
+
1807
+
1808
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:11:29 -0500
1809
+
1810
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1811
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1812
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1813
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1814
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1815
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1816
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1817
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1818
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1819
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1820
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1821
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1822
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1823
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1824
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1825
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1826
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1827
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1828
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1829
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1830
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1831
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1832
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1833
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1834
+
1835
+
1836
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1837
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
1838
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.5ms)
1839
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1840
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (23.0ms)
1841
+
1842
+
1843
+ Started GET "/auth/auth/github" for 127.0.0.1 at 2014-06-29 17:11:31 -0500
1844
+
1845
+ ActionController::RoutingError (No route matches [GET] "/auth/auth/github"):
1846
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1847
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1848
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1849
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1850
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1851
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1852
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1853
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1854
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1855
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1856
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1857
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1858
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1859
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1860
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1861
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1862
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1863
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1864
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1865
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1866
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1867
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1868
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1869
+
1870
+
1871
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1872
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1873
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1874
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.8ms)
1875
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.3ms)
1876
+
1877
+
1878
+ Started GET "/auth/omniauth/github" for 127.0.0.1 at 2014-06-29 17:11:34 -0500
1879
+
1880
+ ActionController::RoutingError (No route matches [GET] "/auth/omniauth/github"):
1881
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1882
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1883
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1884
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1885
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1886
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1887
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1888
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1889
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1890
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1891
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1892
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1893
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1894
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1895
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1896
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1897
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1898
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1899
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1900
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1901
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1902
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1903
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1904
+
1905
+
1906
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
1907
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1908
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.3ms)
1909
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1910
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.8ms)
1911
+
1912
+
1913
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:11:38 -0500
1914
+
1915
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1916
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1917
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1918
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1919
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1920
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1921
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1922
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1923
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1924
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1925
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1926
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1927
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1928
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1929
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1930
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1931
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1932
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1933
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1934
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1935
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1936
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1937
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1938
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1939
+
1940
+
1941
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
1942
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
1943
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
1944
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
1945
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (17.2ms)
1946
+
1947
+
1948
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 17:11:39 -0500
1949
+
1950
+ ActionController::RoutingError (No route matches [GET] "/auth/facebook"):
1951
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1952
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1953
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1954
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1955
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1956
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1957
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1958
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1959
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1960
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1961
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1962
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1963
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1964
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
1965
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
1966
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
1967
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
1968
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1969
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
1970
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
1971
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
1972
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
1973
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
1974
+
1975
+
1976
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1977
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1978
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
1979
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
1980
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (19.7ms)
1981
+
1982
+
1983
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:11:42 -0500
1984
+
1985
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
1986
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
1987
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1988
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
1989
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
1990
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1991
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
1992
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
1993
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
1994
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1995
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
1996
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
1997
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
1998
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
1999
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2000
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2001
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2002
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2003
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2004
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2005
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2006
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2007
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2008
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2009
+
2010
+
2011
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2012
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
2013
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.2ms)
2014
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (0.9ms)
2015
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (18.2ms)
2016
+
2017
+
2018
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:13:17 -0500
2019
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2020
+
2021
+ ActionController::RoutingError (No route matches [GET] "/auth/github"):
2022
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2023
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2024
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2025
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2026
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2027
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2028
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2029
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2030
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2031
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2032
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2033
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2034
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2035
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2036
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2037
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2038
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2039
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2040
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2041
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2042
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2043
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2044
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2045
+
2046
+
2047
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
2048
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2049
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
2050
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.9ms)
2051
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (24.2ms)
2052
+
2053
+
2054
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:15:23 -0500
2055
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2056
+
2057
+
2058
+ Started GET "/auth/github/callback?code=5205ad3f5ea978035563&state=9a4006661aee08906c489477170ed4b2dcb68f92f6482c28" for 127.0.0.1 at 2014-06-29 17:15:23 -0500
2059
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2060
+ Parameters: {"code"=>"5205ad3f5ea978035563", "state"=>"9a4006661aee08906c489477170ed4b2dcb68f92f6482c28", "provider"=>"github"}
2061
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2062
+  (0.1ms) begin transaction
2063
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn.dylan.hurley+github@gmail.com' LIMIT 1
2064
+ Binary data inserted for `string` type on column `encrypted_password`
2065
+ SQL (0.3ms) INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "amauVpmk_pURTUPcfDB7tQ"], ["created_at", "2014-06-29 22:15:24.530316"], ["email", "lynn.dylan.hurley+github@gmail.com"], ["encrypted_password", "$2a$10$mWz3VB3pajGvrSR/jaCIpetyQ.qRO.b9ajJEJ3WKvR1T6nQ8f15WK"], ["image", "https://avatars.githubusercontent.com/u/468037?"], ["name", "Lynn Dylan Hurley"], ["nickname", "lynndylanhurley"], ["provider", "github"], ["uid", "468037"], ["updated_at", "2014-06-29 22:15:24.530316"]]
2066
+ SQLite3::ConstraintException: column uid is not unique: INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2067
+  (0.1ms) rollback transaction
2068
+ Completed 500 Internal Server Error in 108ms
2069
+
2070
+ ActiveRecord::RecordNotUnique (SQLite3::ConstraintException: column uid is not unique: INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)):
2071
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `step'
2072
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `block in each'
2073
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `loop'
2074
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `each'
2075
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:319:in `to_a'
2076
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:319:in `block in exec_query'
2077
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
2078
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2079
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
2080
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query'
2081
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:68:in `exec_insert'
2082
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:95:in `insert'
2083
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'
2084
+ activerecord (4.1.2) lib/active_record/relation.rb:64:in `insert'
2085
+ activerecord (4.1.2) lib/active_record/persistence.rb:502:in `_create_record'
2086
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:87:in `_create_record'
2087
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `block in _create_record'
2088
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2089
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `_create_record'
2090
+ activerecord (4.1.2) lib/active_record/timestamp.rb:57:in `_create_record'
2091
+ activerecord (4.1.2) lib/active_record/persistence.rb:482:in `create_or_update'
2092
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `block in create_or_update'
2093
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2094
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `create_or_update'
2095
+ activerecord (4.1.2) lib/active_record/persistence.rb:103:in `save'
2096
+ activerecord (4.1.2) lib/active_record/validations.rb:51:in `save'
2097
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:21:in `save'
2098
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block (2 levels) in save'
2099
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
2100
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:199:in `transaction'
2101
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
2102
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
2103
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block in save'
2104
+ activerecord (4.1.2) lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
2105
+ activerecord (4.1.2) lib/active_record/transactions.rb:267:in `save'
2106
+ activerecord (4.1.2) lib/active_record/persistence.rb:232:in `block in update'
2107
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
2108
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
2109
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
2110
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
2111
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
2112
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
2113
+ activerecord (4.1.2) lib/active_record/persistence.rb:230:in `update'
2114
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:38:in `omniauth_success'
2115
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2116
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
2117
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
2118
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2119
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
2120
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
2121
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
2122
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
2123
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
2124
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
2125
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
2126
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
2127
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
2128
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2129
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
2130
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2131
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
2132
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2133
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2134
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2135
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
2136
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
2137
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
2138
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2139
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
2140
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
2141
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2142
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
2143
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2144
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
2145
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
2146
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
2147
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2148
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
2149
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
2150
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2151
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
2152
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
2153
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
2154
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2155
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2156
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2157
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2158
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
2159
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
2160
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
2161
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
2162
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
2163
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2164
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
2165
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
2166
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2167
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2168
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2169
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2170
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2171
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2172
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2173
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
2174
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2175
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2176
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2177
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
2178
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2179
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
2180
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2181
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2182
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2183
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2184
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2185
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2186
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2187
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2188
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2189
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2190
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2191
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2192
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2193
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2194
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2195
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2196
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2197
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2198
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2199
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2200
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2201
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2202
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2203
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2204
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2205
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2206
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2207
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2208
+
2209
+
2210
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
2211
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
2212
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2213
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.2ms)
2214
+
2215
+
2216
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:15:36 -0500
2217
+
2218
+
2219
+ Started GET "/auth/github/callback?code=49d245a2be05c0c5f99e&state=fec5adc157b751c937dc9fe6699e4e933f0288f2f6677509" for 127.0.0.1 at 2014-06-29 17:15:37 -0500
2220
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2221
+ Parameters: {"code"=>"49d245a2be05c0c5f99e", "state"=>"fec5adc157b751c937dc9fe6699e4e933f0288f2f6677509", "provider"=>"github"}
2222
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2223
+  (0.1ms) begin transaction
2224
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn.dylan.hurley+github@gmail.com' LIMIT 1
2225
+ Binary data inserted for `string` type on column `encrypted_password`
2226
+ SQL (0.3ms) INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "j92PmXsFKG-pQZXfQbwM4Q"], ["created_at", "2014-06-29 22:15:38.378553"], ["email", "lynn.dylan.hurley+github@gmail.com"], ["encrypted_password", "$2a$10$FEVc9iVkrjzTbGXkOISeduEAp207SQ98c7BzeiTcvdz4o71Fj8HqS"], ["image", "https://avatars.githubusercontent.com/u/468037?"], ["name", "Lynn Dylan Hurley"], ["nickname", "lynndylanhurley"], ["provider", "github"], ["uid", "468037"], ["updated_at", "2014-06-29 22:15:38.378553"]]
2227
+ SQLite3::ConstraintException: column uid is not unique: INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)
2228
+  (0.1ms) rollback transaction
2229
+ Completed 500 Internal Server Error in 109ms
2230
+
2231
+ ActiveRecord::RecordNotUnique (SQLite3::ConstraintException: column uid is not unique: INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)):
2232
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `step'
2233
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:108:in `block in each'
2234
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `loop'
2235
+ sqlite3 (1.3.9) lib/sqlite3/statement.rb:107:in `each'
2236
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:319:in `to_a'
2237
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:319:in `block in exec_query'
2238
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:373:in `block in log'
2239
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2240
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract_adapter.rb:367:in `log'
2241
+ activerecord (4.1.2) lib/active_record/connection_adapters/sqlite3_adapter.rb:298:in `exec_query'
2242
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:68:in `exec_insert'
2243
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:95:in `insert'
2244
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'
2245
+ activerecord (4.1.2) lib/active_record/relation.rb:64:in `insert'
2246
+ activerecord (4.1.2) lib/active_record/persistence.rb:502:in `_create_record'
2247
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:87:in `_create_record'
2248
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `block in _create_record'
2249
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2250
+ activerecord (4.1.2) lib/active_record/callbacks.rb:306:in `_create_record'
2251
+ activerecord (4.1.2) lib/active_record/timestamp.rb:57:in `_create_record'
2252
+ activerecord (4.1.2) lib/active_record/persistence.rb:482:in `create_or_update'
2253
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `block in create_or_update'
2254
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2255
+ activerecord (4.1.2) lib/active_record/callbacks.rb:302:in `create_or_update'
2256
+ activerecord (4.1.2) lib/active_record/persistence.rb:103:in `save'
2257
+ activerecord (4.1.2) lib/active_record/validations.rb:51:in `save'
2258
+ activerecord (4.1.2) lib/active_record/attribute_methods/dirty.rb:21:in `save'
2259
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block (2 levels) in save'
2260
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
2261
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:199:in `transaction'
2262
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
2263
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
2264
+ activerecord (4.1.2) lib/active_record/transactions.rb:268:in `block in save'
2265
+ activerecord (4.1.2) lib/active_record/transactions.rb:283:in `rollback_active_record_state!'
2266
+ activerecord (4.1.2) lib/active_record/transactions.rb:267:in `save'
2267
+ activerecord (4.1.2) lib/active_record/persistence.rb:232:in `block in update'
2268
+ activerecord (4.1.2) lib/active_record/transactions.rb:329:in `block in with_transaction_returning_status'
2269
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `block in transaction'
2270
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:209:in `within_new_transaction'
2271
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/database_statements.rb:201:in `transaction'
2272
+ activerecord (4.1.2) lib/active_record/transactions.rb:208:in `transaction'
2273
+ activerecord (4.1.2) lib/active_record/transactions.rb:326:in `with_transaction_returning_status'
2274
+ activerecord (4.1.2) lib/active_record/persistence.rb:230:in `update'
2275
+ /Users/lynnhurley/Code/Personal/devise_token_auth/app/controllers/devise_token_auth/auth_controller.rb:38:in `omniauth_success'
2276
+ actionpack (4.1.2) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
2277
+ actionpack (4.1.2) lib/abstract_controller/base.rb:189:in `process_action'
2278
+ actionpack (4.1.2) lib/action_controller/metal/rendering.rb:10:in `process_action'
2279
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
2280
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
2281
+ activesupport (4.1.2) lib/active_support/callbacks.rb:113:in `call'
2282
+ activesupport (4.1.2) lib/active_support/callbacks.rb:229:in `block in halting'
2283
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `call'
2284
+ activesupport (4.1.2) lib/active_support/callbacks.rb:166:in `block in halting'
2285
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `call'
2286
+ activesupport (4.1.2) lib/active_support/callbacks.rb:86:in `run_callbacks'
2287
+ actionpack (4.1.2) lib/abstract_controller/callbacks.rb:19:in `process_action'
2288
+ actionpack (4.1.2) lib/action_controller/metal/rescue.rb:29:in `process_action'
2289
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
2290
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `block in instrument'
2291
+ activesupport (4.1.2) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
2292
+ activesupport (4.1.2) lib/active_support/notifications.rb:159:in `instrument'
2293
+ actionpack (4.1.2) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
2294
+ actionpack (4.1.2) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
2295
+ activerecord (4.1.2) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
2296
+ actionpack (4.1.2) lib/abstract_controller/base.rb:136:in `process'
2297
+ actionview (4.1.2) lib/action_view/rendering.rb:30:in `process'
2298
+ actionpack (4.1.2) lib/action_controller/metal.rb:196:in `dispatch'
2299
+ actionpack (4.1.2) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
2300
+ actionpack (4.1.2) lib/action_controller/metal.rb:232:in `block in action'
2301
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `call'
2302
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:82:in `dispatch'
2303
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:50:in `call'
2304
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2305
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
2306
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
2307
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
2308
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2309
+ railties (4.1.2) lib/rails/railtie.rb:194:in `public_send'
2310
+ railties (4.1.2) lib/rails/railtie.rb:194:in `method_missing'
2311
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:71:in `block in call'
2312
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `each'
2313
+ actionpack (4.1.2) lib/action_dispatch/journey/router.rb:59:in `call'
2314
+ actionpack (4.1.2) lib/action_dispatch/routing/route_set.rb:678:in `call'
2315
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2316
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2317
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2318
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2319
+ omniauth (1.2.1) lib/omniauth/strategy.rb:404:in `call_app!'
2320
+ omniauth (1.2.1) lib/omniauth/strategy.rb:362:in `callback_phase'
2321
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
2322
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
2323
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
2324
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2325
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
2326
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
2327
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2328
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2329
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2330
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2331
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2332
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2333
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2334
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
2335
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2336
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2337
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2338
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
2339
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2340
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
2341
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2342
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2343
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2344
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2345
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2346
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2347
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2348
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2349
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2350
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2351
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2352
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2353
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2354
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2355
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2356
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2357
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2358
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2359
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2360
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2361
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2362
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2363
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2364
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2365
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2366
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2367
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2368
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2369
+
2370
+
2371
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.8ms)
2372
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms)
2373
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2374
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (13.0ms)
2375
+  (1.1ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2376
+  (0.1ms) select sqlite_version(*)
2377
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2378
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2379
+ Migrating to DeviseTokenAuthCreateUsers (20140629011345)
2380
+  (0.0ms) begin transaction
2381
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar(255), "encrypted_password" varchar(255) DEFAULT '' NOT NULL, "reset_password_token" varchar(255), "reset_password_sent_at" datetime, "remember_created_at" datetime, "sign_in_count" integer DEFAULT 0 NOT NULL, "current_sign_in_at" datetime, "last_sign_in_at" datetime, "current_sign_in_ip" varchar(255), "last_sign_in_ip" varchar(255), "confirmation_token" varchar(255), "confirmed_at" datetime, "confirmation_sent_at" datetime, "confirm_success_url" varchar(255), "auth_token" varchar(255) DEFAULT '' NOT NULL, "name" varchar(255), "nickname" varchar(255), "image" varchar(255), "provider" varchar(255), "uid" varchar(255) DEFAULT '' NOT NULL, "created_at" datetime, "updated_at" datetime)
2382
+  (0.1ms) CREATE INDEX "index_users_on_auth_token" ON "users" ("auth_token")
2383
+  (0.1ms) SELECT sql
2384
+ FROM sqlite_master
2385
+ WHERE name='index_users_on_auth_token' AND type='index'
2386
+ UNION ALL
2387
+ SELECT sql
2388
+ FROM sqlite_temp_master
2389
+ WHERE name='index_users_on_auth_token' AND type='index'
2390
+
2391
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_uid" ON "users" ("uid")
2392
+  (0.1ms) SELECT sql
2393
+ FROM sqlite_master
2394
+ WHERE name='index_users_on_uid' AND type='index'
2395
+ UNION ALL
2396
+ SELECT sql
2397
+ FROM sqlite_temp_master
2398
+ WHERE name='index_users_on_uid' AND type='index'
2399
+
2400
+  (0.0ms)  SELECT sql
2401
+ FROM sqlite_master
2402
+ WHERE name='index_users_on_auth_token' AND type='index'
2403
+ UNION ALL
2404
+ SELECT sql
2405
+ FROM sqlite_temp_master
2406
+ WHERE name='index_users_on_auth_token' AND type='index'
2407
+ 
2408
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
2409
+  (0.0ms)  SELECT sql
2410
+ FROM sqlite_master
2411
+ WHERE name='index_users_on_email' AND type='index'
2412
+ UNION ALL
2413
+ SELECT sql
2414
+ FROM sqlite_temp_master
2415
+ WHERE name='index_users_on_email' AND type='index'
2416
+ 
2417
+  (0.0ms) SELECT sql
2418
+ FROM sqlite_master
2419
+ WHERE name='index_users_on_uid' AND type='index'
2420
+ UNION ALL
2421
+ SELECT sql
2422
+ FROM sqlite_temp_master
2423
+ WHERE name='index_users_on_uid' AND type='index'
2424
+
2425
+  (0.0ms)  SELECT sql
2426
+ FROM sqlite_master
2427
+ WHERE name='index_users_on_auth_token' AND type='index'
2428
+ UNION ALL
2429
+ SELECT sql
2430
+ FROM sqlite_temp_master
2431
+ WHERE name='index_users_on_auth_token' AND type='index'
2432
+ 
2433
+  (0.1ms) CREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")
2434
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20140629011345"]]
2435
+  (0.8ms) commit transaction
2436
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2437
+  (0.1ms) SELECT sql
2438
+ FROM sqlite_master
2439
+ WHERE name='index_users_on_reset_password_token' AND type='index'
2440
+ UNION ALL
2441
+ SELECT sql
2442
+ FROM sqlite_temp_master
2443
+ WHERE name='index_users_on_reset_password_token' AND type='index'
2444
+
2445
+  (0.1ms)  SELECT sql
2446
+ FROM sqlite_master
2447
+ WHERE name='index_users_on_email' AND type='index'
2448
+ UNION ALL
2449
+ SELECT sql
2450
+ FROM sqlite_temp_master
2451
+ WHERE name='index_users_on_email' AND type='index'
2452
+ 
2453
+  (0.1ms) SELECT sql
2454
+ FROM sqlite_master
2455
+ WHERE name='index_users_on_uid' AND type='index'
2456
+ UNION ALL
2457
+ SELECT sql
2458
+ FROM sqlite_temp_master
2459
+ WHERE name='index_users_on_uid' AND type='index'
2460
+
2461
+  (0.1ms)  SELECT sql
2462
+ FROM sqlite_master
2463
+ WHERE name='index_users_on_auth_token' AND type='index'
2464
+ UNION ALL
2465
+ SELECT sql
2466
+ FROM sqlite_temp_master
2467
+ WHERE name='index_users_on_auth_token' AND type='index'
2468
+ 
2469
+
2470
+
2471
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:16:23 -0500
2472
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2473
+
2474
+
2475
+ Started GET "/auth/github/callback?code=8bc568c0037a61645f14&state=65cc01f11c1573228008cb7592bd506f24a59b296738b51d" for 127.0.0.1 at 2014-06-29 17:16:24 -0500
2476
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2477
+ Parameters: {"code"=>"8bc568c0037a61645f14", "state"=>"65cc01f11c1573228008cb7592bd506f24a59b296738b51d", "provider"=>"github"}
2478
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2479
+  (0.1ms) begin transaction
2480
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn.dylan.hurley+github@gmail.com' LIMIT 1
2481
+ Binary data inserted for `string` type on column `encrypted_password`
2482
+ SQL (0.4ms) INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "nickname", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "03EI8NlXXBmglD7PfeG29w"], ["created_at", "2014-06-29 22:16:25.079603"], ["email", "lynn.dylan.hurley+github@gmail.com"], ["encrypted_password", "$2a$10$jLb0VgFO1DG/coZRE13rkOWbq7BPnrB72eoAG.BiCINS/V0UjgXia"], ["image", "https://avatars.githubusercontent.com/u/468037?"], ["name", "Lynn Dylan Hurley"], ["nickname", "lynndylanhurley"], ["provider", "github"], ["uid", "468037"], ["updated_at", "2014-06-29 22:16:25.079603"]]
2483
+  (2.1ms) commit transaction
2484
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.5ms)
2485
+ Completed 200 OK in 117ms (Views: 7.5ms | ActiveRecord: 3.2ms)
2486
+
2487
+
2488
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:16:28 -0500
2489
+
2490
+
2491
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:16:28 -0500
2492
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2493
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = '03EI8NlXXBmglD7PfeG29w' ORDER BY "users"."id" ASC LIMIT 1
2494
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2495
+
2496
+
2497
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:16:30 -0500
2498
+
2499
+
2500
+ Started GET "/auth/github/callback?code=ce5e1b4dee875a92faa1&state=d8b39f751f3f3302552d6b86768369004fd7bd92f9f721a1" for 127.0.0.1 at 2014-06-29 17:16:30 -0500
2501
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2502
+ Parameters: {"code"=>"ce5e1b4dee875a92faa1", "state"=>"d8b39f751f3f3302552d6b86768369004fd7bd92f9f721a1", "provider"=>"github"}
2503
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2504
+  (0.1ms) begin transaction
2505
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "AeM6gwreVP6jAstSXYMYNA"], ["updated_at", "2014-06-29 22:16:30.987888"]]
2506
+  (1.7ms) commit transaction
2507
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
2508
+ Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 2.4ms)
2509
+
2510
+
2511
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:16:33 -0500
2512
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2513
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'AeM6gwreVP6jAstSXYMYNA' ORDER BY "users"."id" ASC LIMIT 1
2514
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2515
+
2516
+
2517
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:16:35 -0500
2518
+
2519
+
2520
+ Started GET "/auth/github/callback?code=1bf4c49c626a7778158f&state=cca37dae81aaf232ace294a2ef01372398303543ee25b9ef" for 127.0.0.1 at 2014-06-29 17:16:35 -0500
2521
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2522
+ Parameters: {"code"=>"1bf4c49c626a7778158f", "state"=>"cca37dae81aaf232ace294a2ef01372398303543ee25b9ef", "provider"=>"github"}
2523
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2524
+  (0.0ms) begin transaction
2525
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "Z2Sy0QzI1LvPHLbEykFrbg"], ["updated_at", "2014-06-29 22:16:37.041774"]]
2526
+  (1.8ms) commit transaction
2527
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
2528
+ Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 2.3ms)
2529
+
2530
+
2531
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:16:39 -0500
2532
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2533
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'Z2Sy0QzI1LvPHLbEykFrbg' ORDER BY "users"."id" ASC LIMIT 1
2534
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2535
+
2536
+
2537
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 17:16:40 -0500
2538
+
2539
+
2540
+ Started GET "/auth/facebook/callback?code=AQA_TLNHwk77Nw8v24NUj3DBVNxwZN9PrWuFTWy5n_JrNARPD_XpMSFOU7xj2wpbHdv43TtUjK9JJ6KFb14g6cy0gkyQKfbXsnw9Q0KeuxVh-rOPzb8YNb4Z3vQAHWys3sXrBqwqdiXOdYi3_fBss9w6Y10xsRaQQpAT7U7RQPjPDoeFXNFjQyYGF85t7Q-GUPwTiXkrTlP1TroQQJpVCWGBzm_bHZIxbp-8P9qKa-YaZWfURtlyK-4dsfIXloUfwR4zLnayNKePSKv04fxcj2z4RzyNVmUMMFg-XvBEdm3UkWlxXOkdhvmEeXyetBPfwGg&state=b5e3ff21a4f8cbecd2c1e5806ad4b002a182c7d9eab26efa" for 127.0.0.1 at 2014-06-29 17:16:46 -0500
2541
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2542
+ Parameters: {"code"=>"AQA_TLNHwk77Nw8v24NUj3DBVNxwZN9PrWuFTWy5n_JrNARPD_XpMSFOU7xj2wpbHdv43TtUjK9JJ6KFb14g6cy0gkyQKfbXsnw9Q0KeuxVh-rOPzb8YNb4Z3vQAHWys3sXrBqwqdiXOdYi3_fBss9w6Y10xsRaQQpAT7U7RQPjPDoeFXNFjQyYGF85t7Q-GUPwTiXkrTlP1TroQQJpVCWGBzm_bHZIxbp-8P9qKa-YaZWfURtlyK-4dsfIXloUfwR4zLnayNKePSKv04fxcj2z4RzyNVmUMMFg-XvBEdm3UkWlxXOkdhvmEeXyetBPfwGg", "state"=>"b5e3ff21a4f8cbecd2c1e5806ad4b002a182c7d9eab26efa", "provider"=>"facebook"}
2543
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '10203213484155274' AND "users"."provider" = 'facebook' AND "users"."email" = 'lynn.dylan.hurley@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2544
+  (0.1ms) begin transaction
2545
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn.dylan.hurley@gmail.com' LIMIT 1
2546
+ Binary data inserted for `string` type on column `encrypted_password`
2547
+ SQL (0.4ms) INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "cx7OoE9Ydhps8WqxjM92rQ"], ["created_at", "2014-06-29 22:16:47.593733"], ["email", "lynn.dylan.hurley@gmail.com"], ["encrypted_password", "$2a$10$gSPsBJF0JS3POdjlShdTaeFbcyNnNql49vIGB5TaxDxzNANj2WEwK"], ["image", "http://graph.facebook.com/10203213484155274/picture"], ["name", "Lynn Dylan Hurley"], ["provider", "facebook"], ["uid", "10203213484155274"], ["updated_at", "2014-06-29 22:16:47.593733"]]
2548
+  (1.8ms) commit transaction
2549
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
2550
+ Completed 200 OK in 113ms (Views: 1.5ms | ActiveRecord: 2.5ms)
2551
+
2552
+
2553
+ Started OPTIONS "/auth/validate_token" for 127.0.0.1 at 2014-06-29 17:16:51 -0500
2554
+
2555
+
2556
+ Started POST "/auth/validate_token" for 127.0.0.1 at 2014-06-29 17:16:51 -0500
2557
+ Processing by DeviseTokenAuth::AuthController#validate_token as HTML
2558
+ Parameters: {"auth_token"=>"cx7OoE9Ydhps8WqxjM92rQ", "uid"=>"10203213484155274", "auth"=>{"auth_token"=>"cx7OoE9Ydhps8WqxjM92rQ", "uid"=>"10203213484155274"}}
2559
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '10203213484155274' AND "users"."auth_token" = 'cx7OoE9Ydhps8WqxjM92rQ' ORDER BY "users"."id" ASC LIMIT 1
2560
+ Completed 200 OK in 2ms (Views: 0.3ms | ActiveRecord: 0.2ms)
2561
+
2562
+
2563
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:16:53 -0500
2564
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2565
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'cx7OoE9Ydhps8WqxjM92rQ' ORDER BY "users"."id" ASC LIMIT 1
2566
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
2567
+
2568
+
2569
+ Started GET "/auth/google" for 127.0.0.1 at 2014-06-29 17:16:54 -0500
2570
+
2571
+ ActionController::RoutingError (No route matches [GET] "/auth/google"):
2572
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
2573
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2574
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2575
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2576
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2577
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2578
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2579
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2580
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2581
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2582
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2583
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2584
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2585
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2586
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2587
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2588
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2589
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2590
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2591
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2592
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2593
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2594
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2595
+
2596
+
2597
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.8ms)
2598
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
2599
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
2600
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.5ms)
2601
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (22.6ms)
2602
+
2603
+
2604
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:17:16 -0500
2605
+
2606
+
2607
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:18:28 -0500
2608
+
2609
+
2610
+ Started GET "/auth/google_oauth2/callback?state=db708f2c63cd7cdeccf4fb36563b8e2a8d479333635d13a9&code=4/i5TziBvbXqkrP3EtMPuC78lWcLr6.Essv0ZavJ9wRmmS0T3UFEsNUOW7TjQI" for 127.0.0.1 at 2014-06-29 17:18:32 -0500
2611
+
2612
+ OAuth2::Error (invalid_client:
2613
+ {
2614
+ "error" : "invalid_client"
2615
+ }):
2616
+ oauth2 (0.9.4) lib/oauth2/client.rb:113:in `request'
2617
+ oauth2 (0.9.4) lib/oauth2/client.rb:138:in `get_token'
2618
+ oauth2 (0.9.4) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
2619
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:93:in `build_access_token'
2620
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:77:in `custom_build_access_token'
2621
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
2622
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
2623
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
2624
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2625
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2626
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2627
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2628
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2629
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
2630
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
2631
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2632
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2633
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2634
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2635
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2636
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2637
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2638
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
2639
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2640
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2641
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2642
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
2643
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2644
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
2645
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2646
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2647
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2648
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2649
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2650
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2651
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2652
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2653
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2654
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2655
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2656
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2657
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2658
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2659
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2660
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2661
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2662
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2663
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2664
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2665
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2666
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2667
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2668
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2669
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2670
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2671
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2672
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2673
+
2674
+
2675
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (2.9ms)
2676
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2677
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
2678
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.7ms)
2679
+
2680
+
2681
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 17:18:48 -0500
2682
+
2683
+
2684
+ Started GET "/auth/facebook/callback?code=AQB9dmCzNIpEJYp0opF2P7FrIaLP5rdbxJQ9iMxUyk5zzBQDTvQ2b5mSXqKs4WMzUvaJ3PhbLfz_cVCje9iRchyexrmd1nBGRAERHyDBn4Dsv_qmrdgsGDyrGtASwso0YtvcIoPEfzZlARMSjNJ4FffLdzMavvnjPc6Cy27sAXc-DdF7YzPgIJnCWXmM5cdDXXRypIHUGOKe_MfIlGEfALALrVHoePH36orSmQQE4wYgoTjpyRDVzrBAhb4UtggTGFxaF4bSna7B9bRa8m-m5h6NjyKQDYt4k4PqKdw6yt7V8dgBT8lkFzrTF36C3z--Db0&state=244a44b92fcb47d83d707c539eea427f0b625afa86589d8c" for 127.0.0.1 at 2014-06-29 17:18:48 -0500
2685
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2686
+ Parameters: {"code"=>"AQB9dmCzNIpEJYp0opF2P7FrIaLP5rdbxJQ9iMxUyk5zzBQDTvQ2b5mSXqKs4WMzUvaJ3PhbLfz_cVCje9iRchyexrmd1nBGRAERHyDBn4Dsv_qmrdgsGDyrGtASwso0YtvcIoPEfzZlARMSjNJ4FffLdzMavvnjPc6Cy27sAXc-DdF7YzPgIJnCWXmM5cdDXXRypIHUGOKe_MfIlGEfALALrVHoePH36orSmQQE4wYgoTjpyRDVzrBAhb4UtggTGFxaF4bSna7B9bRa8m-m5h6NjyKQDYt4k4PqKdw6yt7V8dgBT8lkFzrTF36C3z--Db0", "state"=>"244a44b92fcb47d83d707c539eea427f0b625afa86589d8c", "provider"=>"facebook"}
2687
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '10203213484155274' AND "users"."provider" = 'facebook' AND "users"."email" = 'lynn.dylan.hurley@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2688
+  (0.1ms) begin transaction
2689
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["auth_token", "NUM-7f74lQQapjvXDnXzlg"], ["updated_at", "2014-06-29 22:18:49.724967"]]
2690
+  (0.6ms) commit transaction
2691
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.2ms)
2692
+ Completed 200 OK in 6ms (Views: 2.2ms | ActiveRecord: 1.2ms)
2693
+
2694
+
2695
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:18:53 -0500
2696
+
2697
+
2698
+ Started GET "/auth/github/callback?code=f4ed01dd950664ab3462&state=38d437bc9566c54977ead044dd1f23b5fcec0db3d76d6be6" for 127.0.0.1 at 2014-06-29 17:18:54 -0500
2699
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2700
+ Parameters: {"code"=>"f4ed01dd950664ab3462", "state"=>"38d437bc9566c54977ead044dd1f23b5fcec0db3d76d6be6", "provider"=>"github"}
2701
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2702
+  (0.0ms) begin transaction
2703
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "YV8HdqQlq_CZCfCA-IJGRg"], ["updated_at", "2014-06-29 22:18:54.971655"]]
2704
+  (1.6ms) commit transaction
2705
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
2706
+ Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 2.1ms)
2707
+
2708
+
2709
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:19:00 -0500
2710
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2711
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'YV8HdqQlq_CZCfCA-IJGRg' ORDER BY "users"."id" ASC LIMIT 1
2712
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2713
+
2714
+
2715
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:19:02 -0500
2716
+
2717
+
2718
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:19:35 -0500
2719
+
2720
+
2721
+ Started GET "/auth/google_oauth2/callback?state=d6ed1eaa02cb6011d77284aa83587337707f8a01b0e8f2b7&code=4/pLX0CIKFkyVtTivvRpixzfJv1lRE.wjiHTd9e8WgQmmS0T3UFEsNUO3DTjQI" for 127.0.0.1 at 2014-06-29 17:19:37 -0500
2722
+
2723
+ OAuth2::Error (invalid_client:
2724
+ {
2725
+ "error" : "invalid_client"
2726
+ }):
2727
+ oauth2 (0.9.4) lib/oauth2/client.rb:113:in `request'
2728
+ oauth2 (0.9.4) lib/oauth2/client.rb:138:in `get_token'
2729
+ oauth2 (0.9.4) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
2730
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:93:in `build_access_token'
2731
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:77:in `custom_build_access_token'
2732
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
2733
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
2734
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
2735
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2736
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2737
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2738
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2739
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2740
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
2741
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
2742
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2743
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2744
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2745
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2746
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2747
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2748
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2749
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
2750
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2751
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2752
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2753
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
2754
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2755
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
2756
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2757
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2758
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2759
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2760
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2761
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2762
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2763
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2764
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2765
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2766
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2767
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2768
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2769
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2770
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2771
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2772
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2773
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2774
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2775
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2776
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2777
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2778
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2779
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2780
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2781
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2782
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2783
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2784
+
2785
+
2786
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
2787
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.7ms)
2788
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (3.2ms)
2789
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (14.8ms)
2790
+
2791
+
2792
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:31:36 -0500
2793
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2794
+
2795
+
2796
+ Started GET "/auth/google_oauth2/callback?state=d84ded2fcbc18d67cdf6bec9c6c2fa1486b7649bb4508cd3&code=4/irWbL9vF8xEvIgSW9PsUtI1yoh1_.EhVL1aOHhu8XmmS0T3UFEsNoOYbTjQI" for 127.0.0.1 at 2014-06-29 17:31:38 -0500
2797
+
2798
+ OAuth2::Error (invalid_client:
2799
+ {
2800
+ "error" : "invalid_client"
2801
+ }):
2802
+ oauth2 (0.9.4) lib/oauth2/client.rb:113:in `request'
2803
+ oauth2 (0.9.4) lib/oauth2/client.rb:138:in `get_token'
2804
+ oauth2 (0.9.4) lib/oauth2/strategy/auth_code.rb:29:in `get_token'
2805
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:93:in `build_access_token'
2806
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:77:in `custom_build_access_token'
2807
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:75:in `callback_phase'
2808
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
2809
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
2810
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2811
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2812
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2813
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2814
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2815
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
2816
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
2817
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2818
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2819
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2820
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2821
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2822
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2823
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2824
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
2825
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2826
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2827
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2828
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
2829
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2830
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
2831
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2832
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2833
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2834
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2835
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2836
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2837
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2838
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2839
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2840
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2841
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2842
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2843
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2844
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2845
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2846
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2847
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2848
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2849
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2850
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2851
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2852
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2853
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2854
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2855
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2856
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2857
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2858
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2859
+
2860
+
2861
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
2862
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
2863
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2864
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms)
2865
+
2866
+
2867
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:34:21 -0500
2868
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
2869
+
2870
+
2871
+ Started GET "/auth/github/callback?code=0111963e1ef18230c95c&state=6d9294ebbd6219e35c56ed7455a31992a14c100fe2774f84" for 127.0.0.1 at 2014-06-29 17:34:21 -0500
2872
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2873
+ Parameters: {"code"=>"0111963e1ef18230c95c", "state"=>"6d9294ebbd6219e35c56ed7455a31992a14c100fe2774f84", "provider"=>"github"}
2874
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2875
+  (0.1ms) begin transaction
2876
+ SQL (0.6ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "uFN-FfOGgFrQsBfA7ie3Og"], ["updated_at", "2014-06-29 22:34:22.380531"]]
2877
+  (0.8ms) commit transaction
2878
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.4ms)
2879
+ Completed 200 OK in 33ms (Views: 7.9ms | ActiveRecord: 2.0ms)
2880
+
2881
+
2882
+ Started OPTIONS "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:34:24 -0500
2883
+
2884
+
2885
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:34:24 -0500
2886
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2887
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'uFN-FfOGgFrQsBfA7ie3Og' ORDER BY "users"."id" ASC LIMIT 1
2888
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2889
+
2890
+
2891
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 17:34:25 -0500
2892
+
2893
+
2894
+ Started GET "/auth/facebook/callback?error_code=100&error_message=Invalid%20Scope%3A%20profile&state=c0faa4af9e04bae32ec05e4f052fce2cd0febde37ff5c388" for 127.0.0.1 at 2014-06-29 17:34:28 -0500
2895
+
2896
+ OmniAuth::Strategies::Facebook::NoAuthorizationCodeError (must pass either a `code` (via URL or by an `fbsr_XXX` signed request cookie)):
2897
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-facebook-4dbd5f0f40df/lib/omniauth/strategies/facebook.rb:151:in `with_authorization_code!'
2898
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-facebook-4dbd5f0f40df/lib/omniauth/strategies/facebook.rb:71:in `callback_phase'
2899
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
2900
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
2901
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2902
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
2903
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
2904
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
2905
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
2906
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
2907
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
2908
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
2909
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
2910
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
2911
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
2912
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
2913
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
2914
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
2915
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
2916
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
2917
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
2918
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
2919
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
2920
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
2921
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
2922
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
2923
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
2924
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
2925
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
2926
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
2927
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
2928
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
2929
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
2930
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
2931
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
2932
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
2933
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
2934
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
2935
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
2936
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
2937
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2938
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
2939
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
2940
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
2941
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
2942
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
2943
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
2944
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
2945
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
2946
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
2947
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
2948
+
2949
+
2950
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
2951
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
2952
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
2953
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.7ms)
2954
+
2955
+
2956
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 17:34:42 -0500
2957
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2958
+
2959
+
2960
+ Started GET "/auth/facebook/callback?code=AQATKdSzMAByE2eNsEx5PvOsNkZXwNy0hN4_s2cAEYDOg7T2rouZTxC4BGUzUelGTE6EY7ROhGYlFEvh3IONkbEBqKIusCNIqKGosgM5_TxqQnzVE808lpHGluqQIGttivA5FBZgfHbVj16aA47lo39KhxB36PPF2XIS4lBov8urBIi287-3vwwbHQF03m2XR7b9uGQ-pfSNF_bHddzrcvxOnqeokkMrixY9hnLhu1fTHxvdtXiCoVwFLaTxlQ0WAYB4OIrUKoYOVX47R82JDhRzI8Di-YG2zUGv4R7eVcpENY8fSierMP1Q3sQLntihRDM&state=7b58b447b0d0bcb90757ab2f4e7c26ece22c7e515a90e7b2" for 127.0.0.1 at 2014-06-29 17:34:43 -0500
2961
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
2962
+ Parameters: {"code"=>"AQATKdSzMAByE2eNsEx5PvOsNkZXwNy0hN4_s2cAEYDOg7T2rouZTxC4BGUzUelGTE6EY7ROhGYlFEvh3IONkbEBqKIusCNIqKGosgM5_TxqQnzVE808lpHGluqQIGttivA5FBZgfHbVj16aA47lo39KhxB36PPF2XIS4lBov8urBIi287-3vwwbHQF03m2XR7b9uGQ-pfSNF_bHddzrcvxOnqeokkMrixY9hnLhu1fTHxvdtXiCoVwFLaTxlQ0WAYB4OIrUKoYOVX47R82JDhRzI8Di-YG2zUGv4R7eVcpENY8fSierMP1Q3sQLntihRDM", "state"=>"7b58b447b0d0bcb90757ab2f4e7c26ece22c7e515a90e7b2", "provider"=>"facebook"}
2963
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '10203213484155274' AND "users"."provider" = 'facebook' AND "users"."email" = 'lynn.dylan.hurley@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
2964
+  (0.1ms) begin transaction
2965
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["auth_token", "FYa1WGCPHvBhlzEg6QyaTQ"], ["updated_at", "2014-06-29 22:34:44.841089"]]
2966
+  (1.8ms) commit transaction
2967
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (1.1ms)
2968
+ Completed 200 OK in 28ms (Views: 6.1ms | ActiveRecord: 2.7ms)
2969
+
2970
+
2971
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:34:48 -0500
2972
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
2973
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'FYa1WGCPHvBhlzEg6QyaTQ' ORDER BY "users"."id" ASC LIMIT 1
2974
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
2975
+
2976
+
2977
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:34:49 -0500
2978
+
2979
+
2980
+ Started GET "/auth/google_oauth2/callback?state=4ccfd20b846c4f51a90faf1a889da6ccbabeefe0f22ac63f&code=4/cTIfeyZ0ya3lPCPgkXVjELy-_4hS.wsIx8C8j9M0bmmS0T3UFEsNSH4zTjQI" for 127.0.0.1 at 2014-06-29 17:34:52 -0500
2981
+
2982
+ OAuth2::Error ({"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Please use Google Developers Console to activate the API for your project."}], "code"=>403, "message"=>"Access Not Configured. Please use Google Developers Console to activate the API for your project."}:
2983
+ {
2984
+ "error": {
2985
+ "errors": [
2986
+ {
2987
+ "domain": "usageLimits",
2988
+ "reason": "accessNotConfigured",
2989
+ "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
2990
+ }
2991
+ ],
2992
+ "code": 403,
2993
+ "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
2994
+ }
2995
+ }
2996
+ ):
2997
+ oauth2 (0.9.4) lib/oauth2/client.rb:113:in `request'
2998
+ oauth2 (0.9.4) lib/oauth2/access_token.rb:107:in `request'
2999
+ oauth2 (0.9.4) lib/oauth2/access_token.rb:114:in `get'
3000
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:62:in `raw_info'
3001
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:38:in `block in <class:GoogleOauth2>'
3002
+ omniauth (1.2.1) lib/omniauth/strategy.rb:105:in `instance_eval'
3003
+ omniauth (1.2.1) lib/omniauth/strategy.rb:105:in `block in compile_stack'
3004
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `each'
3005
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `inject'
3006
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `compile_stack'
3007
+ (eval):7:in `uid_stack'
3008
+ omniauth (1.2.1) lib/omniauth/strategy.rb:317:in `uid'
3009
+ omniauth (1.2.1) lib/omniauth/strategy.rb:333:in `auth_hash'
3010
+ omniauth (1.2.1) lib/omniauth/strategy.rb:361:in `callback_phase'
3011
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
3012
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
3013
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
3014
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3015
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3016
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3017
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3018
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3019
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
3020
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
3021
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3022
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3023
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3024
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3025
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3026
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3027
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3028
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
3029
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3030
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3031
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3032
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
3033
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3034
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
3035
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3036
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
3037
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3038
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3039
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3040
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3041
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3042
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
3043
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
3044
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3045
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
3046
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
3047
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
3048
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3049
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3050
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3051
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3052
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3053
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3054
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3055
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
3056
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
3057
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3058
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3059
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3060
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3061
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3062
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3063
+
3064
+
3065
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.7ms)
3066
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
3067
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3068
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (12.1ms)
3069
+
3070
+
3071
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:38:04 -0500
3072
+
3073
+
3074
+ Started GET "/auth/google_oauth2/callback?state=e04d257e52a1f08812616ec6c448d135d369346b48211b52&code=4/71olqUOuhYDHHNpffvLI6wK1ZTQv.smgRNjd_sv4WmmS0T3UFEsPY_ZHTjQI" for 127.0.0.1 at 2014-06-29 17:38:04 -0500
3075
+
3076
+ OAuth2::Error ({"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Please use Google Developers Console to activate the API for your project."}], "code"=>403, "message"=>"Access Not Configured. Please use Google Developers Console to activate the API for your project."}:
3077
+ {
3078
+ "error": {
3079
+ "errors": [
3080
+ {
3081
+ "domain": "usageLimits",
3082
+ "reason": "accessNotConfigured",
3083
+ "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
3084
+ }
3085
+ ],
3086
+ "code": 403,
3087
+ "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
3088
+ }
3089
+ }
3090
+ ):
3091
+ oauth2 (0.9.4) lib/oauth2/client.rb:113:in `request'
3092
+ oauth2 (0.9.4) lib/oauth2/access_token.rb:107:in `request'
3093
+ oauth2 (0.9.4) lib/oauth2/access_token.rb:114:in `get'
3094
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:62:in `raw_info'
3095
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:38:in `block in <class:GoogleOauth2>'
3096
+ omniauth (1.2.1) lib/omniauth/strategy.rb:105:in `instance_eval'
3097
+ omniauth (1.2.1) lib/omniauth/strategy.rb:105:in `block in compile_stack'
3098
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `each'
3099
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `inject'
3100
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `compile_stack'
3101
+ (eval):7:in `uid_stack'
3102
+ omniauth (1.2.1) lib/omniauth/strategy.rb:317:in `uid'
3103
+ omniauth (1.2.1) lib/omniauth/strategy.rb:333:in `auth_hash'
3104
+ omniauth (1.2.1) lib/omniauth/strategy.rb:361:in `callback_phase'
3105
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
3106
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
3107
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
3108
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3109
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3110
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3111
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3112
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3113
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
3114
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
3115
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3116
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3117
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3118
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3119
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3120
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3121
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3122
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
3123
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3124
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3125
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3126
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
3127
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3128
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
3129
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3130
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
3131
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3132
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3133
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3134
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3135
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3136
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
3137
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
3138
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3139
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
3140
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
3141
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
3142
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3143
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3144
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3145
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3146
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3147
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3148
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3149
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
3150
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
3151
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3152
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3153
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3154
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3155
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3156
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3157
+
3158
+
3159
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.4ms)
3160
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms)
3161
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
3162
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.4ms)
3163
+
3164
+
3165
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:38:26 -0500
3166
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
3167
+
3168
+
3169
+ Started GET "/auth/google_oauth2/callback?state=8abca1360626ca5141ff2b6308d3c0621d2c355accffc2cc&code=4/W1ZQ2VSytXH_CAYgC7GDf3mG1bTn.ghP131QnnVcTmmS0T3UFEsMmp5LTjQI" for 127.0.0.1 at 2014-06-29 17:38:26 -0500
3170
+
3171
+ OAuth2::Error ({"errors"=>[{"domain"=>"usageLimits", "reason"=>"accessNotConfigured", "message"=>"Access Not Configured. Please use Google Developers Console to activate the API for your project."}], "code"=>403, "message"=>"Access Not Configured. Please use Google Developers Console to activate the API for your project."}:
3172
+ {
3173
+ "error": {
3174
+ "errors": [
3175
+ {
3176
+ "domain": "usageLimits",
3177
+ "reason": "accessNotConfigured",
3178
+ "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
3179
+ }
3180
+ ],
3181
+ "code": 403,
3182
+ "message": "Access Not Configured. Please use Google Developers Console to activate the API for your project."
3183
+ }
3184
+ }
3185
+ ):
3186
+ oauth2 (0.9.4) lib/oauth2/client.rb:113:in `request'
3187
+ oauth2 (0.9.4) lib/oauth2/access_token.rb:107:in `request'
3188
+ oauth2 (0.9.4) lib/oauth2/access_token.rb:114:in `get'
3189
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:62:in `raw_info'
3190
+ /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/bundler/gems/omniauth-google-oauth2-4b95e5a4af1c/lib/omniauth/strategies/google_oauth2.rb:38:in `block in <class:GoogleOauth2>'
3191
+ omniauth (1.2.1) lib/omniauth/strategy.rb:105:in `instance_eval'
3192
+ omniauth (1.2.1) lib/omniauth/strategy.rb:105:in `block in compile_stack'
3193
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `each'
3194
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `inject'
3195
+ omniauth (1.2.1) lib/omniauth/strategy.rb:104:in `compile_stack'
3196
+ (eval):7:in `uid_stack'
3197
+ omniauth (1.2.1) lib/omniauth/strategy.rb:317:in `uid'
3198
+ omniauth (1.2.1) lib/omniauth/strategy.rb:333:in `auth_hash'
3199
+ omniauth (1.2.1) lib/omniauth/strategy.rb:361:in `callback_phase'
3200
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:77:in `callback_phase'
3201
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
3202
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
3203
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3204
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3205
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3206
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3207
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3208
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
3209
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
3210
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3211
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3212
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3213
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3214
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3215
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3216
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3217
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
3218
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3219
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3220
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3221
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
3222
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3223
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
3224
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3225
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
3226
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3227
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3228
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3229
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3230
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3231
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
3232
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
3233
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3234
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
3235
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
3236
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
3237
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3238
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3239
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3240
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3241
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3242
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3243
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3244
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
3245
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
3246
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3247
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3248
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3249
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3250
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3251
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3252
+
3253
+
3254
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3255
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
3256
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3257
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (10.1ms)
3258
+
3259
+
3260
+ Started GET "/auth/google_oauth2/callback?state=4ccfd20b846c4f51a90faf1a889da6ccbabeefe0f22ac63f&code=4/cTIfeyZ0ya3lPCPgkXVjELy-_4hS.wsIx8C8j9M0bmmS0T3UFEsNSH4zTjQI" for 127.0.0.1 at 2014-06-29 17:39:59 -0500
3261
+
3262
+ OmniAuth::Strategies::OAuth2::CallbackError (csrf_detected | CSRF detected):
3263
+ omniauth (1.2.1) lib/omniauth/failure_endpoint.rb:25:in `raise_out!'
3264
+ omniauth (1.2.1) lib/omniauth/failure_endpoint.rb:20:in `call'
3265
+ omniauth (1.2.1) lib/omniauth/failure_endpoint.rb:12:in `call'
3266
+ omniauth (1.2.1) lib/omniauth/strategy.rb:475:in `fail!'
3267
+ omniauth-oauth2 (1.1.2) lib/omniauth/strategies/oauth2.rb:73:in `callback_phase'
3268
+ omniauth (1.2.1) lib/omniauth/strategy.rb:227:in `callback_call'
3269
+ omniauth (1.2.1) lib/omniauth/strategy.rb:184:in `call!'
3270
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3271
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3272
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3273
+ omniauth (1.2.1) lib/omniauth/strategy.rb:186:in `call!'
3274
+ omniauth (1.2.1) lib/omniauth/strategy.rb:164:in `call'
3275
+ omniauth (1.2.1) lib/omniauth/builder.rb:59:in `call'
3276
+ rack-cors (0.2.9) lib/rack/cors.rb:54:in `call'
3277
+ warden (1.2.3) lib/warden/manager.rb:35:in `block in call'
3278
+ warden (1.2.3) lib/warden/manager.rb:34:in `catch'
3279
+ warden (1.2.3) lib/warden/manager.rb:34:in `call'
3280
+ rack (1.5.2) lib/rack/etag.rb:23:in `call'
3281
+ rack (1.5.2) lib/rack/conditionalget.rb:25:in `call'
3282
+ rack (1.5.2) lib/rack/head.rb:11:in `call'
3283
+ actionpack (4.1.2) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
3284
+ actionpack (4.1.2) lib/action_dispatch/middleware/flash.rb:254:in `call'
3285
+ rack (1.5.2) lib/rack/session/abstract/id.rb:225:in `context'
3286
+ rack (1.5.2) lib/rack/session/abstract/id.rb:220:in `call'
3287
+ actionpack (4.1.2) lib/action_dispatch/middleware/cookies.rb:560:in `call'
3288
+ activerecord (4.1.2) lib/active_record/query_cache.rb:36:in `call'
3289
+ activerecord (4.1.2) lib/active_record/connection_adapters/abstract/connection_pool.rb:621:in `call'
3290
+ activerecord (4.1.2) lib/active_record/migration.rb:380:in `call'
3291
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
3292
+ activesupport (4.1.2) lib/active_support/callbacks.rb:82:in `run_callbacks'
3293
+ actionpack (4.1.2) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
3294
+ actionpack (4.1.2) lib/action_dispatch/middleware/reloader.rb:73:in `call'
3295
+ actionpack (4.1.2) lib/action_dispatch/middleware/remote_ip.rb:76:in `call'
3296
+ actionpack (4.1.2) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
3297
+ actionpack (4.1.2) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
3298
+ railties (4.1.2) lib/rails/rack/logger.rb:38:in `call_app'
3299
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `block in call'
3300
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `block in tagged'
3301
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:26:in `tagged'
3302
+ activesupport (4.1.2) lib/active_support/tagged_logging.rb:68:in `tagged'
3303
+ railties (4.1.2) lib/rails/rack/logger.rb:20:in `call'
3304
+ actionpack (4.1.2) lib/action_dispatch/middleware/request_id.rb:21:in `call'
3305
+ rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
3306
+ rack (1.5.2) lib/rack/runtime.rb:17:in `call'
3307
+ activesupport (4.1.2) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
3308
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3309
+ actionpack (4.1.2) lib/action_dispatch/middleware/static.rb:64:in `call'
3310
+ rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
3311
+ railties (4.1.2) lib/rails/engine.rb:514:in `call'
3312
+ railties (4.1.2) lib/rails/application.rb:144:in `call'
3313
+ rack (1.5.2) lib/rack/lock.rb:17:in `call'
3314
+ rack (1.5.2) lib/rack/content_length.rb:14:in `call'
3315
+ rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
3316
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
3317
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
3318
+ /opt/rubies/2.1.1/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
3319
+
3320
+
3321
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms)
3322
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (0.9ms)
3323
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
3324
+ Rendered /opt/rubies/2.1.1/lib/ruby/gems/2.1.0/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (9.3ms)
3325
+
3326
+
3327
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:40:05 -0500
3328
+
3329
+
3330
+ Started GET "/auth/google_oauth2/callback?state=9012c3c1b55e2e885a629ea8db274687ba5dbd9f91bf44ab&code=4/JIY0PhclToOFBGsj0D8MAtRhkl17.ssF7xiEg-fMdmmS0T3UFEsO-rJXTjQI" for 127.0.0.1 at 2014-06-29 17:40:05 -0500
3331
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
3332
+ Parameters: {"state"=>"9012c3c1b55e2e885a629ea8db274687ba5dbd9f91bf44ab", "code"=>"4/JIY0PhclToOFBGsj0D8MAtRhkl17.ssF7xiEg-fMdmmS0T3UFEsO-rJXTjQI", "provider"=>"google_oauth2"}
3333
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '116377261179486493669' AND "users"."provider" = 'google_oauth2' AND "users"."email" = 'lynn@healthbox.com' ORDER BY "users"."id" ASC LIMIT 1
3334
+  (0.1ms) begin transaction
3335
+ User Exists (0.1ms) SELECT 1 AS one FROM "users" WHERE "users"."email" = 'lynn@healthbox.com' LIMIT 1
3336
+ Binary data inserted for `string` type on column `encrypted_password`
3337
+ SQL (0.4ms) INSERT INTO "users" ("auth_token", "created_at", "email", "encrypted_password", "image", "name", "provider", "uid", "updated_at") VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?) [["auth_token", "n8U2pR294SJF38JdJHdvUA"], ["created_at", "2014-06-29 22:40:05.954674"], ["email", "lynn@healthbox.com"], ["encrypted_password", "$2a$10$0bLszLFPrDadzmOQBP.qRuM.0Kp6FXE3dfu44Tswu3sWk3gTJIhxW"], ["image", "https://lh3.googleusercontent.com/-XdUIqdMkCWA/AAAAAAAAAAI/AAAAAAAAAAA/4252rscbv5M/photo.jpg?sz=50"], ["name", "Lynn Hurley"], ["provider", "google_oauth2"], ["uid", "116377261179486493669"], ["updated_at", "2014-06-29 22:40:05.954674"]]
3338
+  (1.9ms) commit transaction
3339
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.5ms)
3340
+ Completed 200 OK in 111ms (Views: 2.4ms | ActiveRecord: 3.0ms)
3341
+
3342
+
3343
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:40:09 -0500
3344
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
3345
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = 'n8U2pR294SJF38JdJHdvUA' ORDER BY "users"."id" ASC LIMIT 1
3346
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3347
+
3348
+
3349
+ Started GET "/auth/github" for 127.0.0.1 at 2014-06-29 17:40:10 -0500
3350
+
3351
+
3352
+ Started GET "/auth/github/callback?code=909f210da53e0981f136&state=47fc64ab6fd2a0c30359c7aaefbd801192595e3fe471e72d" for 127.0.0.1 at 2014-06-29 17:40:11 -0500
3353
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
3354
+ Parameters: {"code"=>"909f210da53e0981f136", "state"=>"47fc64ab6fd2a0c30359c7aaefbd801192595e3fe471e72d", "provider"=>"github"}
3355
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '468037' AND "users"."provider" = 'github' AND "users"."email" = 'lynn.dylan.hurley+github@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
3356
+  (0.0ms) begin transaction
3357
+ SQL (0.4ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 1 [["auth_token", "3qtpro9GpUh91wH_XRvICg"], ["updated_at", "2014-06-29 22:40:11.978247"]]
3358
+  (1.8ms) commit transaction
3359
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
3360
+ Completed 200 OK in 7ms (Views: 1.9ms | ActiveRecord: 2.4ms)
3361
+
3362
+
3363
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:40:14 -0500
3364
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
3365
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = '3qtpro9GpUh91wH_XRvICg' ORDER BY "users"."id" ASC LIMIT 1
3366
+ Completed 200 OK in 2ms (Views: 0.2ms | ActiveRecord: 0.2ms)
3367
+
3368
+
3369
+ Started GET "/auth/facebook" for 127.0.0.1 at 2014-06-29 17:40:16 -0500
3370
+
3371
+
3372
+ Started GET "/auth/facebook/callback?code=AQA9I6mWfpUNguha2G49ZeqHwqcJLMD66yOiA8SMP7vuhs9rCb9jYUV9jmhsgt98i3a2EWKf3AlimrXJuaXgLRLbfeqUKTgA5KQVxE-bJG1BmqF_Wr6jFcBeuIUfH8nfGT1iZKBn-2Iol_YsJXcOgL-YGkrWMf0gn0RO79bWIzV4DcUHCgyBWYba2JGMzV5vrtPqNHvjZ8_0PWPtSJYeEiaNk0EADFeF58nlJGBuiY9bgu8QQWaZJHjyDkcOb370NBqnqlj4GKAb-vaZ_NzY03c0-nLEEwEbG8O9awXOxytl9Qf7sXNc3M27ztLOuY6yQL0&state=c984af017047db37618fa40824fb31bc41d6a7781e926535" for 127.0.0.1 at 2014-06-29 17:40:16 -0500
3373
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
3374
+ Parameters: {"code"=>"AQA9I6mWfpUNguha2G49ZeqHwqcJLMD66yOiA8SMP7vuhs9rCb9jYUV9jmhsgt98i3a2EWKf3AlimrXJuaXgLRLbfeqUKTgA5KQVxE-bJG1BmqF_Wr6jFcBeuIUfH8nfGT1iZKBn-2Iol_YsJXcOgL-YGkrWMf0gn0RO79bWIzV4DcUHCgyBWYba2JGMzV5vrtPqNHvjZ8_0PWPtSJYeEiaNk0EADFeF58nlJGBuiY9bgu8QQWaZJHjyDkcOb370NBqnqlj4GKAb-vaZ_NzY03c0-nLEEwEbG8O9awXOxytl9Qf7sXNc3M27ztLOuY6yQL0", "state"=>"c984af017047db37618fa40824fb31bc41d6a7781e926535", "provider"=>"facebook"}
3375
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '10203213484155274' AND "users"."provider" = 'facebook' AND "users"."email" = 'lynn.dylan.hurley@gmail.com' ORDER BY "users"."id" ASC LIMIT 1
3376
+  (0.0ms) begin transaction
3377
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 2 [["auth_token", "07grE53mLn8CKu30wuPpDQ"], ["updated_at", "2014-06-29 22:40:17.092622"]]
3378
+  (1.6ms) commit transaction
3379
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
3380
+ Completed 200 OK in 5ms (Views: 1.4ms | ActiveRecord: 2.1ms)
3381
+
3382
+
3383
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:40:19 -0500
3384
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
3385
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = '07grE53mLn8CKu30wuPpDQ' ORDER BY "users"."id" ASC LIMIT 1
3386
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)
3387
+
3388
+
3389
+ Started GET "/auth/google_oauth2" for 127.0.0.1 at 2014-06-29 17:40:20 -0500
3390
+
3391
+
3392
+ Started GET "/auth/google_oauth2/callback?state=7010837777c15efc2a4082fa256be6ac97158b2031d0473e&code=4/rrQ4g4Rd7FCzMWnETZHNM6xiwzy_.MlnsE5XnXVsRmmS0T3UFEsPEJJbTjQI" for 127.0.0.1 at 2014-06-29 17:40:20 -0500
3393
+ Processing by DeviseTokenAuth::AuthController#omniauth_success as HTML
3394
+ Parameters: {"state"=>"7010837777c15efc2a4082fa256be6ac97158b2031d0473e", "code"=>"4/rrQ4g4Rd7FCzMWnETZHNM6xiwzy_.MlnsE5XnXVsRmmS0T3UFEsPEJJbTjQI", "provider"=>"google_oauth2"}
3395
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."uid" = '116377261179486493669' AND "users"."provider" = 'google_oauth2' AND "users"."email" = 'lynn@healthbox.com' ORDER BY "users"."id" ASC LIMIT 1
3396
+  (0.1ms) begin transaction
3397
+ SQL (0.3ms) UPDATE "users" SET "auth_token" = ?, "updated_at" = ? WHERE "users"."id" = 3 [["auth_token", "2gBpOVNIlZg5sgKBMMMfBQ"], ["updated_at", "2014-06-29 22:40:21.670215"]]
3398
+  (1.8ms) commit transaction
3399
+ Rendered /Users/lynnhurley/Code/Personal/devise_token_auth/app/views/devise_token_auth/omniauth_success.html.erb within layouts/omniauth_response (0.1ms)
3400
+ Completed 200 OK in 7ms (Views: 2.1ms | ActiveRecord: 2.4ms)
3401
+
3402
+
3403
+ Started DELETE "/auth/sign_out" for 127.0.0.1 at 2014-06-29 17:40:23 -0500
3404
+ Processing by DeviseTokenAuth::SessionsController#destroy as HTML
3405
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL AND "users"."auth_token" = '2gBpOVNIlZg5sgKBMMMfBQ' ORDER BY "users"."id" ASC LIMIT 1
3406
+ Completed 200 OK in 1ms (Views: 0.1ms | ActiveRecord: 0.2ms)