nyauth 0.0.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 (110) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/README.md +1 -0
  4. data/Rakefile +26 -0
  5. data/app/assets/javascripts/nyauth/application.js +13 -0
  6. data/app/assets/stylesheets/nyauth/application.css +15 -0
  7. data/app/controllers/concerns/nyauth/session_concern.rb +71 -0
  8. data/app/controllers/nyauth/confirmation_requests_controller.rb +28 -0
  9. data/app/controllers/nyauth/confirmations_controller.rb +19 -0
  10. data/app/controllers/nyauth/new_password_requests_controller.rb +28 -0
  11. data/app/controllers/nyauth/new_passwords_controller.rb +26 -0
  12. data/app/controllers/nyauth/passwords_controller.rb +26 -0
  13. data/app/controllers/nyauth/registrations_controller.rb +26 -0
  14. data/app/controllers/nyauth/sessions_controller.rb +31 -0
  15. data/app/helpers/nyauth/application_helper.rb +4 -0
  16. data/app/mailers/nyauth/user_mailer.rb +15 -0
  17. data/app/models/concerns/nyauth/authenticatable.rb +18 -0
  18. data/app/models/concerns/nyauth/confirmable.rb +34 -0
  19. data/app/models/concerns/nyauth/new_password_ability.rb +35 -0
  20. data/app/models/concerns/nyauth/password_digest_ability.rb +40 -0
  21. data/app/responders/nyauth/app_responder.rb +6 -0
  22. data/app/responders/nyauth/confirmation_responder.rb +14 -0
  23. data/app/services/nyauth/confirmation_request_service.rb +15 -0
  24. data/app/services/nyauth/session_service.rb +21 -0
  25. data/app/views/layouts/nyauth/mailer.html.erb +1 -0
  26. data/app/views/layouts/nyauth/mailer.text.erb +1 -0
  27. data/app/views/nyauth/confirmation_requests/new.html.slim +5 -0
  28. data/app/views/nyauth/confirmations/edit.html.slim +5 -0
  29. data/app/views/nyauth/group_requests/edit.html.slim +0 -0
  30. data/app/views/nyauth/group_requests/new.html.slim +14 -0
  31. data/app/views/nyauth/groups/show.html.slim +0 -0
  32. data/app/views/nyauth/layouts/application.html.slim +15 -0
  33. data/app/views/nyauth/layouts/mailer.html.slim +1 -0
  34. data/app/views/nyauth/layouts/mailer.text.slim +1 -0
  35. data/app/views/nyauth/new_password_requests/new.html.slim +5 -0
  36. data/app/views/nyauth/new_passwords/edit.html.slim +11 -0
  37. data/app/views/nyauth/passwords/edit.html.slim +11 -0
  38. data/app/views/nyauth/registrations/new.html.slim +12 -0
  39. data/app/views/nyauth/sessions/new.html.slim +15 -0
  40. data/app/views/nyauth/user_mailer/request_confirmation.html.slim +2 -0
  41. data/app/views/nyauth/user_mailer/request_confirmation.text.erb +3 -0
  42. data/app/views/nyauth/user_mailer/request_new_password.html.slim +2 -0
  43. data/app/views/nyauth/user_mailer/request_new_password.text.erb +3 -0
  44. data/config/application.yml +1 -0
  45. data/config/locales/en.yml +46 -0
  46. data/config/routes.rb +10 -0
  47. data/lib/nyauth/encryptor.rb +26 -0
  48. data/lib/nyauth/engine.rb +21 -0
  49. data/lib/nyauth/version.rb +3 -0
  50. data/lib/nyauth.rb +5 -0
  51. data/lib/tasks/nyauth_tasks.rake +4 -0
  52. data/spec/controllers/application_controller_spec.rb +5 -0
  53. data/spec/dummy/README.rdoc +28 -0
  54. data/spec/dummy/Rakefile +6 -0
  55. data/spec/dummy/app/assets/javascripts/application.js +13 -0
  56. data/spec/dummy/app/assets/stylesheets/application.css +15 -0
  57. data/spec/dummy/app/controllers/application_controller.rb +7 -0
  58. data/spec/dummy/app/helpers/application_helper.rb +2 -0
  59. data/spec/dummy/app/models/user.rb +5 -0
  60. data/spec/dummy/app/views/layouts/application.html.erb +20 -0
  61. data/spec/dummy/bin/bundle +3 -0
  62. data/spec/dummy/bin/rails +4 -0
  63. data/spec/dummy/bin/rake +4 -0
  64. data/spec/dummy/bin/setup +29 -0
  65. data/spec/dummy/config/application.rb +32 -0
  66. data/spec/dummy/config/boot.rb +5 -0
  67. data/spec/dummy/config/database.yml +25 -0
  68. data/spec/dummy/config/environment.rb +5 -0
  69. data/spec/dummy/config/environments/development.rb +42 -0
  70. data/spec/dummy/config/environments/production.rb +79 -0
  71. data/spec/dummy/config/environments/test.rb +46 -0
  72. data/spec/dummy/config/initializers/assets.rb +11 -0
  73. data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
  74. data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
  75. data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  76. data/spec/dummy/config/initializers/inflections.rb +16 -0
  77. data/spec/dummy/config/initializers/mime_types.rb +4 -0
  78. data/spec/dummy/config/initializers/session_store.rb +3 -0
  79. data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
  80. data/spec/dummy/config/locales/en.yml +23 -0
  81. data/spec/dummy/config/routes.rb +3 -0
  82. data/spec/dummy/config/secrets.yml +22 -0
  83. data/spec/dummy/config.ru +4 -0
  84. data/spec/dummy/db/development.sqlite3 +0 -0
  85. data/spec/dummy/db/migrate/20150303135922_create_users.rb +18 -0
  86. data/spec/dummy/db/schema.rb +32 -0
  87. data/spec/dummy/db/test.sqlite3 +0 -0
  88. data/spec/dummy/log/development.log +1906 -0
  89. data/spec/dummy/log/test.log +6719 -0
  90. data/spec/dummy/public/404.html +67 -0
  91. data/spec/dummy/public/422.html +67 -0
  92. data/spec/dummy/public/500.html +66 -0
  93. data/spec/dummy/public/favicon.ico +0 -0
  94. data/spec/factories/users.rb +21 -0
  95. data/spec/featrues/nyauth/confirmation_requests_spec.rb +35 -0
  96. data/spec/featrues/nyauth/new_password_requests_spec.rb +43 -0
  97. data/spec/featrues/nyauth/passwords_spec.rb +27 -0
  98. data/spec/featrues/nyauth/registrations_spec.rb +24 -0
  99. data/spec/featrues/nyauth/sessions_spec.rb +36 -0
  100. data/spec/models/user_spec.rb +9 -0
  101. data/spec/rails_helper.rb +41 -0
  102. data/spec/spec_helper.rb +9 -0
  103. data/spec/support/controllers/nyauth/session_concern.rb +39 -0
  104. data/spec/support/macros/controller_macros.rb +3 -0
  105. data/spec/support/macros/feature_macros.rb +8 -0
  106. data/spec/support/models/nyauth/authenticatable.rb +36 -0
  107. data/spec/support/models/nyauth/confirmable.rb +27 -0
  108. data/spec/support/models/nyauth/new_password_ability.rb +13 -0
  109. data/spec/support/models/nyauth/password_digest_ability.rb +18 -0
  110. metadata +280 -0
@@ -0,0 +1,1906 @@
1
+  (1.9ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
2
+  (0.1ms) select sqlite_version(*)
3
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
4
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
5
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
6
+  (0.1ms) SELECT version FROM "schema_migrations"
7
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
8
+  (1.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.1ms) select sqlite_version(*)
10
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
11
+  (0.6ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
12
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13
+  (0.1ms) SELECT version FROM "schema_migrations"
14
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
15
+  (1.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
16
+  (0.1ms) select sqlite_version(*)
17
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
18
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
19
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
22
+  (1.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
23
+  (0.1ms) select sqlite_version(*)
24
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
25
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
26
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
27
+  (0.1ms) SELECT version FROM "schema_migrations"
28
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
29
+  (1.8ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
30
+  (0.1ms) select sqlite_version(*)
31
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
32
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
33
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
34
+  (0.1ms) SELECT version FROM "schema_migrations"
35
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
36
+  (1.7ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
37
+  (0.1ms) select sqlite_version(*)
38
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
39
+  (0.7ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
40
+  (0.6ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
41
+  (0.1ms) SELECT version FROM "schema_migrations"
42
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
43
+  (1.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
44
+  (0.1ms) select sqlite_version(*)
45
+  (1.0ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
46
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
47
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
48
+  (0.1ms) SELECT version FROM "schema_migrations"
49
+  (0.6ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
50
+  (1.6ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
51
+  (0.1ms) select sqlite_version(*)
52
+  (0.8ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
53
+  (0.8ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
54
+  (0.7ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
55
+  (0.1ms) SELECT version FROM "schema_migrations"
56
+  (0.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20150303135922')
57
+
58
+
59
+ Started GET "/" for ::1 at 2015-03-14 10:17:32 +0900
60
+
61
+ ActiveRecord::PendingMigrationError (
62
+
63
+ Migrations are pending. To resolve this issue, run:
64
+
65
+ bin/rake db:migrate RAILS_ENV=development
66
+
67
+ ):
68
+ activerecord (4.2.0) lib/active_record/migration.rb:393:in `check_pending!'
69
+ activerecord (4.2.0) lib/active_record/migration.rb:374:in `call'
70
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
71
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
72
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
73
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
74
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
75
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
76
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
77
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
78
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
79
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
80
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
81
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
82
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
83
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
84
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
85
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
86
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
87
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
88
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
89
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
90
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
91
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
92
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
93
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
94
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
95
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
96
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
97
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
98
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
99
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
100
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
101
+
102
+
103
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (1.8ms)
104
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
105
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
106
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (42.0ms)
107
+  (2.2ms) CREATE TABLE "schema_migrations" ("version" varchar NOT NULL) 
108
+  (0.1ms) select sqlite_version(*)
109
+  (0.8ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
110
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
111
+ Migrating to CreateUsers (20150303135922)
112
+  (0.0ms) begin transaction
113
+  (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "nickname" varchar, "confirmed_at" datetime, "confirmation_key" varchar, "confirmation_key_expired_at" datetime, "new_password_key" varchar, "new_password_key_expired_at" datetime, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
114
+  (0.3ms) CREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")
115
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150303135922"]]
116
+  (0.7ms) commit transaction
117
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
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
+
127
+
128
+ Started GET "/" for ::1 at 2015-03-14 10:18:08 +0900
129
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
130
+ Processing by Rails::WelcomeController#index as HTML
131
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (1.6ms)
132
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
133
+
134
+
135
+ Started GET "/nyauth" for ::1 at 2015-03-14 10:18:12 +0900
136
+
137
+ ActionController::RoutingError (No route matches [GET] "/nyauth"):
138
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
139
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
140
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
141
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
142
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
143
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
144
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
145
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
146
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
147
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
148
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
149
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
150
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
151
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
152
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
153
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
154
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
155
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
156
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
157
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
158
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
159
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
160
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
161
+
162
+
163
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
164
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
165
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
166
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (7.6ms)
167
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (7.7ms)
168
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (96.9ms)
169
+
170
+
171
+ Started GET "/nyauth/sessions/new" for ::1 at 2015-03-14 10:18:20 +0900
172
+
173
+ ActionController::RoutingError (No route matches [GET] "/nyauth/sessions/new"):
174
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
175
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
176
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
177
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
178
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
179
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
180
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
181
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
182
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
183
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
184
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
185
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
186
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
187
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
188
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
189
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
190
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
191
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
192
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
193
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
194
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
195
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
196
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
197
+
198
+
199
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
200
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
201
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
202
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
203
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms)
204
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (66.7ms)
205
+
206
+
207
+ Started GET "/sessions/new" for ::1 at 2015-03-14 10:18:38 +0900
208
+
209
+ ActionController::RoutingError (No route matches [GET] "/sessions/new"):
210
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
211
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
212
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
213
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
214
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
215
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
216
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
217
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
218
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
219
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
220
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
221
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
222
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
223
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
224
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
225
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
226
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
227
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
228
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
229
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
230
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
231
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
232
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
233
+
234
+
235
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
236
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
237
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
238
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
239
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
240
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (74.5ms)
241
+
242
+
243
+ Started GET "/session/new" for ::1 at 2015-03-14 10:18:47 +0900
244
+
245
+ ActionController::RoutingError (No route matches [GET] "/session/new"):
246
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
247
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
248
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
249
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
250
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
251
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
252
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
253
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
254
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
255
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
256
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
257
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
258
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
259
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
260
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
261
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
262
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
263
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
264
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
265
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
266
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
267
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
268
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
269
+
270
+
271
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
272
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
273
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
274
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
275
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
276
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (95.5ms)
277
+
278
+
279
+ Started GET "/session/new" for ::1 at 2015-03-14 10:18:47 +0900
280
+
281
+ ActionController::RoutingError (No route matches [GET] "/session/new"):
282
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
283
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
284
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
285
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
286
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
287
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
288
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
289
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
290
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
291
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
292
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
293
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
294
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
295
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
296
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
297
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
298
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
299
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
300
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
301
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
302
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
303
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
304
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
305
+
306
+
307
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.1ms)
308
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.5ms)
309
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
310
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.2ms)
311
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
312
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (67.1ms)
313
+
314
+
315
+ Started GET "/nyauth/session/new" for ::1 at 2015-03-14 10:19:05 +0900
316
+
317
+ ActionController::RoutingError (The controller-level `respond_to' feature has been extracted to the `responders` gem. Add it to your Gemfile to continue using this feature:
318
+ gem 'responders', '~> 2.0'
319
+ Consult the Rails upgrade guide for details.):
320
+ actionpack (4.2.0) lib/action_controller/metal/mime_responds.rb:10:in `respond_to'
321
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:4:in `<class:SessionsController>'
322
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:2:in `<module:Nyauth>'
323
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:1:in `<top (required)>'
324
+ activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `load'
325
+ activesupport (4.2.0) lib/active_support/dependencies.rb:457:in `block in load_file'
326
+ activesupport (4.2.0) lib/active_support/dependencies.rb:647:in `new_constants_in'
327
+ activesupport (4.2.0) lib/active_support/dependencies.rb:456:in `load_file'
328
+ activesupport (4.2.0) lib/active_support/dependencies.rb:354:in `require_or_load'
329
+ activesupport (4.2.0) lib/active_support/dependencies.rb:494:in `load_missing_constant'
330
+ activesupport (4.2.0) lib/active_support/dependencies.rb:184:in `const_missing'
331
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
332
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
333
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
334
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
335
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
336
+ activesupport (4.2.0) lib/active_support/dependencies.rb:566:in `get'
337
+ activesupport (4.2.0) lib/active_support/dependencies.rb:597:in `constantize'
338
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
339
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
340
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
341
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
342
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
343
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
344
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
345
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
346
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
347
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
348
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
349
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
350
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
351
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
352
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
353
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
354
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
355
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
356
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
357
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
358
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
359
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
360
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
361
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
362
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
363
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
364
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
365
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
366
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
367
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
368
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
369
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
370
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
371
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
372
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
373
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
374
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
375
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
376
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
377
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
378
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
379
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
380
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
381
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
382
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
383
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
384
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
385
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
386
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
387
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
388
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
389
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
390
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
391
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
392
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
393
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
394
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
395
+
396
+
397
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
398
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.8ms)
399
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
400
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.0ms)
401
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
402
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (77.7ms)
403
+
404
+
405
+ Started GET "/nyauth/session/new" for ::1 at 2015-03-14 10:20:50 +0900
406
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
407
+ Processing by Nyauth::SessionsController#new as HTML
408
+ Completed 500 Internal Server Error in 14ms
409
+
410
+ ActionView::MissingTemplate (Missing template nyauth/sessions/new, application/new with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
411
+ * "/Users/koshikawa/repository/github.com/ppworks/nyauth/spec/dummy/app/views"
412
+ * "/Users/koshikawa/repository/github.com/ppworks/nyauth/app/views"
413
+ ):
414
+ actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
415
+ actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
416
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
417
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
418
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
419
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
420
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
421
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
422
+ actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
423
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
424
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
425
+ actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
426
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
427
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
428
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
429
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
430
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
431
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
432
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
433
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
434
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
435
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
436
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
437
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
438
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
439
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
440
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
441
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
442
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
443
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
444
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
445
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
446
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
447
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
448
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
449
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
450
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
451
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
452
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
453
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
454
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
455
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
456
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
457
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
458
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
459
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
460
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
461
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
462
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
463
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
464
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
465
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
466
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
467
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
468
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
469
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
470
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
471
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
472
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
473
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
474
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
475
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
476
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
477
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
478
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
479
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
480
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
481
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
482
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
483
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
484
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
485
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
486
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
487
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
488
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
489
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
490
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
491
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
492
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
493
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
494
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
495
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
496
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
497
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
498
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
499
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
500
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
501
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
502
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
503
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
504
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
505
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
506
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
507
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
508
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
509
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
510
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
511
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
512
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
513
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
514
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
515
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
516
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
517
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
518
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
519
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
520
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
521
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
522
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
523
+
524
+
525
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.4ms)
526
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.9ms)
527
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (12.4ms)
528
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (62.0ms)
529
+
530
+
531
+ Started GET "/nyauth/session/new" for ::1 at 2015-03-14 10:21:27 +0900
532
+ Processing by Nyauth::SessionsController#new as HTML
533
+ Completed 500 Internal Server Error in 3ms
534
+
535
+ ActionView::MissingTemplate (Missing template nyauth/sessions/new, application/new with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
536
+ * "/Users/koshikawa/repository/github.com/ppworks/nyauth/spec/dummy/app/views"
537
+ * "/Users/koshikawa/repository/github.com/ppworks/nyauth/app/views"
538
+ ):
539
+ actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
540
+ actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
541
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
542
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template'
543
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render'
544
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
545
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
546
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
547
+ actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template'
548
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
549
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body'
550
+ actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body'
551
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
552
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render'
553
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render'
554
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms'
555
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/benchmark.rb:303:in `realtime'
556
+ activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms'
557
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render'
558
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime'
559
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime'
560
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render'
561
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render'
562
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action'
563
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
564
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
565
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
566
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
567
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
568
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
569
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
570
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
571
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
572
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
573
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
574
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
575
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
576
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
577
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
578
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
579
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
580
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
581
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
582
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
583
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
584
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
585
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
586
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
587
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
588
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
589
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
590
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
591
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
592
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
593
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
594
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
595
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
596
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
597
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
598
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
599
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
600
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
601
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
602
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
603
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
604
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
605
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
606
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
607
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
608
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
609
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
610
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
611
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
612
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
613
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
614
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
615
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
616
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
617
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
618
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
619
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
620
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
621
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
622
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
623
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
624
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
625
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
626
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
627
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
628
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
629
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
630
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
631
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
632
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
633
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
634
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
635
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
636
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
637
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
638
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
639
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
640
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
641
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
642
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
643
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
644
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
645
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
646
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
647
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
648
+
649
+
650
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
651
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
652
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
653
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (41.0ms)
654
+
655
+
656
+ Started GET "/nyauth/session/new" for ::1 at 2015-03-14 10:22:47 +0900
657
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
658
+ Processing by Nyauth::SessionsController#new as HTML
659
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (286.7ms)
660
+ Completed 200 OK in 317ms (Views: 313.2ms | ActiveRecord: 0.0ms)
661
+
662
+
663
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:22:48 +0900
664
+
665
+
666
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:22:48 +0900
667
+
668
+
669
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:22:53 +0900
670
+ Processing by Nyauth::SessionsController#create as HTML
671
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fyCllrQqnzcX6E3mUiSXNOaXP55oQtDz6BBxhT6W2hWnHcT+88Gb8NWbWBt6uIXqF8wm8SuAfaimVhzJulOhyQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
672
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
673
+ Completed 500 Internal Server Error in 24ms
674
+
675
+ NameError (undefined local variable or method `root_path' for #<Nyauth::SessionsController:0x007fc0839518c0>):
676
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:12:in `create'
677
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
678
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
679
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
680
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
681
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
682
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
683
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
684
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
685
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
686
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
687
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
688
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
689
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
690
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
691
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
692
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
693
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
694
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
695
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
696
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
697
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
698
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
699
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
700
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
701
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
702
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
703
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
704
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
705
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
706
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
707
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
708
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
709
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
710
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
711
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
712
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
713
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
714
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
715
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
716
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
717
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
718
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
719
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
720
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
721
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
722
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
723
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
724
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
725
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
726
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
727
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
728
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
729
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
730
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
731
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
732
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
733
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
734
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
735
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
736
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
737
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
738
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
739
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
740
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
741
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
742
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
743
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
744
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
745
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
746
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
747
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
748
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
749
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
750
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
751
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
752
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
753
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
754
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
755
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
756
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
757
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
758
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
759
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
760
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
761
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
762
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
763
+
764
+
765
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.1ms)
766
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms)
767
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
768
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.1ms)
769
+
770
+
771
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:23:19 +0900
772
+ Processing by Nyauth::SessionsController#create as HTML
773
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fyCllrQqnzcX6E3mUiSXNOaXP55oQtDz6BBxhT6W2hWnHcT+88Gb8NWbWBt6uIXqF8wm8SuAfaimVhzJulOhyQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
774
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
775
+ Completed 500 Internal Server Error in 6ms
776
+
777
+ ActionController::UrlGenerationError (No route matches {:action=>"new", :controller=>"nyauth/session"}):
778
+ actionpack (4.2.0) lib/action_dispatch/journey/formatter.rb:46:in `generate'
779
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:710:in `generate'
780
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:741:in `generate'
781
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:784:in `url_for'
782
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:279:in `call'
783
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:222:in `call'
784
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:334:in `block (2 levels) in define_url_helper'
785
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:12:in `create'
786
+ actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
787
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
788
+ actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
789
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
790
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
791
+ activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
792
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
793
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
794
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
795
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
796
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
797
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
798
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
799
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
800
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
801
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
802
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
803
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
804
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
805
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
806
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
807
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
808
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
809
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
810
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
811
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
812
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
813
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
814
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
815
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
816
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
817
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
818
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
819
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
820
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
821
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
822
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
823
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
824
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
825
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
826
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
827
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
828
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
829
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
830
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
831
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
832
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
833
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
834
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
835
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
836
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
837
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
838
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
839
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
840
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
841
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
842
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
843
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
844
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
845
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
846
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
847
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
848
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
849
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
850
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
851
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
852
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
853
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
854
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
855
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
856
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
857
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
858
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
859
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
860
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
861
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
862
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
863
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
864
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
865
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
866
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
867
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
868
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
869
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
870
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
871
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
872
+
873
+
874
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
875
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms)
876
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms)
877
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (46.2ms)
878
+
879
+
880
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:23:29 +0900
881
+ Processing by Nyauth::SessionsController#create as HTML
882
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"fyCllrQqnzcX6E3mUiSXNOaXP55oQtDz6BBxhT6W2hWnHcT+88Gb8NWbWBt6uIXqF8wm8SuAfaimVhzJulOhyQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
883
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
884
+ DEPRECATION WARNING: You are trying to generate the URL for a named route called "root" but no such route was found. In the future, this will result in an `ActionController::UrlGenerationError` exception. (called from create at /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:12)
885
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.9ms)
886
+ Completed 200 OK in 25ms (Views: 12.8ms | ActiveRecord: 0.5ms)
887
+
888
+
889
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:23:29 +0900
890
+
891
+
892
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:23:29 +0900
893
+
894
+
895
+ Started GET "/" for ::1 at 2015-03-14 10:23:31 +0900
896
+ Processing by Nyauth::SessionsController#new as HTML
897
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (7.7ms)
898
+ Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
899
+
900
+
901
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:23:31 +0900
902
+
903
+
904
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:23:31 +0900
905
+
906
+
907
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:23:33 +0900
908
+ Processing by Nyauth::SessionsController#create as HTML
909
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"IoUeOJkfcWD2Xc4lmt8eCns6RdoTnLkIdh7LYh3Kxzb6uH9Q3vR1pzQu29iyQwzUimFctVBeFFM4WKYumQ+86g==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
910
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
911
+ DEPRECATION WARNING: You are trying to generate the URL for a named route called "root" but no such route was found. In the future, this will result in an `ActionController::UrlGenerationError` exception. (called from create at /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/sessions_controller.rb:12)
912
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.8ms)
913
+ Completed 200 OK in 23ms (Views: 14.4ms | ActiveRecord: 0.4ms)
914
+
915
+
916
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:23:33 +0900
917
+
918
+
919
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:23:33 +0900
920
+
921
+
922
+ Started GET "/nyauth/registration/new" for ::1 at 2015-03-14 10:23:35 +0900
923
+ Processing by Nyauth::RegistrationsController#new as HTML
924
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (5.3ms)
925
+ Completed 200 OK in 28ms (Views: 20.6ms | ActiveRecord: 0.0ms)
926
+
927
+
928
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:23:35 +0900
929
+
930
+
931
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:23:35 +0900
932
+
933
+
934
+ Started POST "/nyauth/registration" for ::1 at 2015-03-14 10:23:38 +0900
935
+ Processing by Nyauth::RegistrationsController#create as HTML
936
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"/jzOQ/ITzRs3VMKB24HEtnqNI+AbgRuN6hxFbCYB068mAa8rtfjJ3PUn13zzHdZoi9Y6j1hDttakWiggosSocw==", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
937
+ Completed 500 Internal Server Error in 3ms
938
+
939
+ ActiveRecord::UnknownAttributeError (unknown attribute 'password_confirmation' for User.):
940
+ activerecord (4.2.0) lib/active_record/attribute_assignment.rb:59:in `rescue in _assign_attribute'
941
+ activerecord (4.2.0) lib/active_record/attribute_assignment.rb:54:in `_assign_attribute'
942
+ activerecord (4.2.0) lib/active_record/attribute_assignment.rb:41:in `block in assign_attributes'
943
+ actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair'
944
+ actionpack (4.2.0) lib/action_controller/metal/strong_parameters.rb:183:in `each_pair'
945
+ activerecord (4.2.0) lib/active_record/attribute_assignment.rb:35:in `assign_attributes'
946
+ activerecord (4.2.0) lib/active_record/core.rb:557:in `init_attributes'
947
+ activerecord (4.2.0) lib/active_record/core.rb:280:in `initialize'
948
+ activerecord (4.2.0) lib/active_record/inheritance.rb:61:in `new'
949
+ activerecord (4.2.0) lib/active_record/inheritance.rb:61:in `new'
950
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/registrations_controller.rb:18:in `set_user'
951
+ activesupport (4.2.0) lib/active_support/callbacks.rb:427:in `block in make_lambda'
952
+ activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `call'
953
+ activesupport (4.2.0) lib/active_support/callbacks.rb:163:in `block in halting'
954
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
955
+ activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
956
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
957
+ activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
958
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
959
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
960
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
961
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
962
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
963
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
964
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
965
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
966
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
967
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
968
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
969
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
970
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
971
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
972
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
973
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
974
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
975
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
976
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
977
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
978
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
979
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
980
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
981
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
982
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
983
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
984
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
985
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
986
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
987
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
988
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
989
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
990
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
991
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
992
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
993
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
994
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
995
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
996
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
997
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
998
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
999
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1000
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1001
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1002
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1003
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1004
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1005
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1006
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1007
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1008
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1009
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1010
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1011
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1012
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1013
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1014
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1015
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1016
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1017
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1018
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1019
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1020
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1021
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1022
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1023
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1024
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1025
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1026
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1027
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1028
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1029
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1030
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1031
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1032
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1033
+
1034
+
1035
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.5ms)
1036
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms)
1037
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1038
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (45.4ms)
1039
+
1040
+
1041
+ Started POST "/nyauth/registration" for ::1 at 2015-03-14 10:24:16 +0900
1042
+ Processing by Nyauth::RegistrationsController#create as HTML
1043
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"/jzOQ/ITzRs3VMKB24HEtnqNI+AbgRuN6hxFbCYB068mAa8rtfjJ3PUn13zzHdZoi9Y6j1hDttakWiggosSocw==", "user"=>{"email"=>"", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
1044
+  (0.1ms) begin transaction
1045
+  (0.0ms) rollback transaction
1046
+ DEPRECATION WARNING: You are trying to generate the URL for a named route called "root" but no such route was found. In the future, this will result in an `ActionController::UrlGenerationError` exception. (called from create at /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/registrations_controller.rb:12)
1047
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (2.3ms)
1048
+ Completed 200 OK in 27ms (Views: 11.1ms | ActiveRecord: 0.4ms)
1049
+
1050
+
1051
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:24:16 +0900
1052
+
1053
+
1054
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:24:16 +0900
1055
+
1056
+
1057
+ Started GET "/" for ::1 at 2015-03-14 10:43:46 +0900
1058
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1059
+ Processing by Rails::WelcomeController#index as HTML
1060
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (2.9ms)
1061
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
1062
+
1063
+
1064
+ Started GET "/" for ::1 at 2015-03-14 10:43:47 +0900
1065
+ Processing by Rails::WelcomeController#index as HTML
1066
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
1067
+ Completed 200 OK in 1ms (Views: 1.4ms | ActiveRecord: 0.0ms)
1068
+
1069
+
1070
+ Started GET "/nyauth" for ::1 at 2015-03-14 10:43:52 +0900
1071
+
1072
+ ActionController::RoutingError (uninitialized constant Nyauth::Nyauth):
1073
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:276:in `const_get'
1074
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:276:in `block in constantize'
1075
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
1076
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
1077
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
1078
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1079
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
1080
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
1081
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1082
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1083
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1084
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1085
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1086
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
1087
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
1088
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1089
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1090
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1091
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1092
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1093
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1094
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
1095
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1096
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1097
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
1098
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1099
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1100
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1101
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1102
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1103
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1104
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1105
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1106
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1107
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1108
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1109
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1110
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1111
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1112
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1113
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1114
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1115
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1116
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1117
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1118
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1119
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1120
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1121
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1122
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1123
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1124
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1125
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1126
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1127
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1128
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1129
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1130
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1131
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1132
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1133
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1134
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1135
+
1136
+
1137
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
1138
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.6ms)
1139
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.9ms)
1140
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (8.9ms)
1141
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.8ms)
1142
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (112.7ms)
1143
+
1144
+
1145
+ Started GET "/nyauth/" for ::1 at 2015-03-14 10:43:55 +0900
1146
+
1147
+ ActionController::RoutingError (uninitialized constant Nyauth::Nyauth):
1148
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:276:in `const_get'
1149
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:276:in `block in constantize'
1150
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
1151
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
1152
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
1153
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1154
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
1155
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
1156
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1157
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1158
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1159
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1160
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1161
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
1162
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
1163
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1164
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1165
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1166
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1167
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1168
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1169
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
1170
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1171
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1172
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
1173
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1174
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1175
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1176
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1177
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1178
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1179
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1180
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1181
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1182
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1183
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1184
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1185
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1186
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1187
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1188
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1189
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1190
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1191
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1192
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1193
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1194
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1195
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1196
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1197
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1198
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1199
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1200
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1201
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1202
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1203
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1204
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1205
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1206
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1207
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1208
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1209
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1210
+
1211
+
1212
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1213
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1214
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1215
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1216
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
1217
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (71.6ms)
1218
+
1219
+
1220
+ Started GET "/" for ::1 at 2015-03-14 10:44:02 +0900
1221
+ Processing by Rails::WelcomeController#index as HTML
1222
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (0.0ms)
1223
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1224
+
1225
+
1226
+ Started GET "/nyauth" for ::1 at 2015-03-14 10:44:08 +0900
1227
+
1228
+ ActionController::RoutingError (uninitialized constant Nyauth::Nyauth):
1229
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:276:in `const_get'
1230
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:276:in `block in constantize'
1231
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
1232
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
1233
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
1234
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1235
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
1236
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
1237
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1238
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1239
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1240
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1241
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1242
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
1243
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
1244
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1245
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1246
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1247
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1248
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1249
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1250
+ rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
1251
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1252
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1253
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
1254
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1255
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1256
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1257
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1258
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1259
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1260
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1261
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1262
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1263
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1264
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1265
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1266
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1267
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1268
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1269
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1270
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1271
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1272
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1273
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1274
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1275
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1276
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1277
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1278
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1279
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1280
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1281
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1282
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1283
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1284
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1285
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1286
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1287
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1288
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1289
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1290
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1291
+
1292
+
1293
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
1294
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1295
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1296
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1297
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1298
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (76.2ms)
1299
+
1300
+
1301
+ Started GET "/nyauth" for ::1 at 2015-03-14 10:44:19 +0900
1302
+ Processing by Nyauth::SessionsController#new as HTML
1303
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (208.9ms)
1304
+ Completed 200 OK in 231ms (Views: 229.3ms | ActiveRecord: 0.0ms)
1305
+
1306
+
1307
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:44:20 +0900
1308
+
1309
+
1310
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:44:20 +0900
1311
+
1312
+
1313
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:44:23 +0900
1314
+
1315
+
1316
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:54:32 +0900
1317
+ Processing by Nyauth::SessionsController#create as HTML
1318
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"xtJ3UxZ0eZzjPo3w2ICh4JRb4TVFC/GG+A9H+CGLscUe7xY7UZ99WyFNmA3wHLM+ZQD4WgbJXN22SSq0pU7KGQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1319
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
1320
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (2.2ms)
1321
+ Completed 200 OK in 35ms (Views: 14.4ms | ActiveRecord: 0.6ms)
1322
+
1323
+
1324
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:54:32 +0900
1325
+
1326
+
1327
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:54:32 +0900
1328
+
1329
+
1330
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:55:02 +0900
1331
+
1332
+
1333
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:55:26 +0900
1334
+ Processing by Nyauth::SessionsController#create as HTML
1335
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"xtJ3UxZ0eZzjPo3w2ICh4JRb4TVFC/GG+A9H+CGLscUe7xY7UZ99WyFNmA3wHLM+ZQD4WgbJXN22SSq0pU7KGQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1336
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
1337
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.2ms)
1338
+ Completed 200 OK in 17ms (Views: 11.4ms | ActiveRecord: 0.2ms)
1339
+
1340
+
1341
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:55:26 +0900
1342
+
1343
+
1344
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:55:26 +0900
1345
+
1346
+
1347
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 10:56:03 +0900
1348
+ Processing by Nyauth::SessionsController#create as HTML
1349
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"xtJ3UxZ0eZzjPo3w2ICh4JRb4TVFC/GG+A9H+CGLscUe7xY7UZ99WyFNmA3wHLM+ZQD4WgbJXN22SSq0pU7KGQ==", "session_service"=>{"email"=>"", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1350
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" IS NULL ORDER BY "users"."id" DESC LIMIT 1
1351
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (2.1ms)
1352
+ Completed 200 OK in 17ms (Views: 12.1ms | ActiveRecord: 0.2ms)
1353
+
1354
+
1355
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:56:03 +0900
1356
+
1357
+
1358
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:56:03 +0900
1359
+
1360
+
1361
+ Started GET "/nyauth/registration/new" for ::1 at 2015-03-14 10:56:07 +0900
1362
+ Processing by Nyauth::RegistrationsController#new as HTML
1363
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (6.6ms)
1364
+ Completed 200 OK in 28ms (Views: 17.8ms | ActiveRecord: 0.0ms)
1365
+
1366
+
1367
+ Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 10:56:07 +0900
1368
+
1369
+
1370
+ Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 10:56:07 +0900
1371
+
1372
+
1373
+ Started POST "/nyauth/registration" for ::1 at 2015-03-14 11:09:24 +0900
1374
+
1375
+ ActionController::RoutingError (uninitialized constant Nyauth::AppResponder):
1376
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/application_controller.rb:4:in `<class:ApplicationController>'
1377
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/application_controller.rb:2:in `<module:Nyauth>'
1378
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/application_controller.rb:1:in `<top (required)>'
1379
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/registrations_controller.rb:2:in `<module:Nyauth>'
1380
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/registrations_controller.rb:1:in `<top (required)>'
1381
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
1382
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
1383
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
1384
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
1385
+ activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
1386
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
1387
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
1388
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
1389
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1390
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1391
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1392
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1393
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1394
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
1395
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
1396
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1397
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1398
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1399
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1400
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1401
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1402
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
1403
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1404
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1405
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
1406
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1407
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1408
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1409
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1410
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1411
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1412
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1413
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1414
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1415
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1416
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1417
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1418
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1419
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1420
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1421
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1422
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1423
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1424
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1425
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1426
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1427
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1428
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1429
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1430
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1431
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1432
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1433
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1434
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1435
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1436
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1437
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1438
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1439
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1440
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1441
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1442
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1443
+
1444
+
1445
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.4ms)
1446
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.6ms)
1447
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.7ms)
1448
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.1ms)
1449
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
1450
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (73.9ms)
1451
+
1452
+
1453
+ Started POST "/nyauth/registration" for ::1 at 2015-03-14 11:09:43 +0900
1454
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1455
+ Processing by Nyauth::RegistrationsController#create as HTML
1456
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"27jynmZsG+QNvFF3VGtKRz2EAHctBX+/FOu+2nN09jsDhZP2IYcfI8/PRIp891iZzN8ZGG7H0uRardOW97GN5w==", "user"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
1457
+  (0.1ms) begin transaction
1458
+ SQL (0.4ms) INSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "naoto5959+test1@gmail.com"], ["password_salt", "fd892dd89000fc7f6141fef31f8964a18c4ecd5f0161436e106fa0f913be9efd1743e2dd4f330dd4f8422a5793dd86f69711fe5b9be8c46dabb785ed7bdceb751551db464c2c114d1c3c0cca3003c7df8a31ed71242b70b019bb1d955506261ca148735a5e4997628922a1d3ead87f0cb2d8950205e9e81512f40d8d813b63bc"], ["password_digest", "b14bd886d0c60a08cc46a9d477a5aca1a13acaa7a5117eed415b03bf47fce2a7"], ["created_at", "2015-03-14 02:09:43.451146"], ["updated_at", "2015-03-14 02:09:43.451146"]]
1459
+  (3.0ms) commit transaction
1460
+ Redirected to http://localhost:3000/nyauth/
1461
+ Completed 302 Found in 293ms (ActiveRecord: 3.7ms)
1462
+
1463
+
1464
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:09:43 +0900
1465
+ Processing by Nyauth::SessionsController#new as HTML
1466
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (21.2ms)
1467
+ Completed 200 OK in 42ms (Views: 40.3ms | ActiveRecord: 0.0ms)
1468
+
1469
+
1470
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:09:43 +0900
1471
+
1472
+
1473
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:09:43 +0900
1474
+
1475
+
1476
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:09:58 +0900
1477
+ Processing by Nyauth::SessionsController#create as HTML
1478
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"VXW+zDV7NLzJJDJu/Np2TMcXpJZN6BBVRH5ExhgsgG+NSN+kcpAwewtXJ5PURmSSNky9+Q4qvQ4KOCmKnOn7sw==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1479
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1480
+ Redirected to http://localhost:3000/nyauth/
1481
+ Completed 302 Found in 16ms (ActiveRecord: 0.2ms)
1482
+
1483
+
1484
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:09:58 +0900
1485
+ Processing by Nyauth::SessionsController#new as HTML
1486
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (3.3ms)
1487
+ Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
1488
+
1489
+
1490
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:10:04 +0900
1491
+ Processing by Nyauth::SessionsController#create as HTML
1492
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"vzPjZa3PmpL7fu6hK0kX4VD+PEEbOyR3Y7wR20eRlV5nDoIN6iSeVTkN+1wD1QU/oaUlLlj5iSwt+nyXw1Tugg==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1493
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1494
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.3ms)
1495
+ Completed 200 OK in 23ms (Views: 11.8ms | ActiveRecord: 0.1ms)
1496
+
1497
+
1498
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:10:09 +0900
1499
+ Processing by Nyauth::SessionsController#create as HTML
1500
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"mqdS4QaRJoZJmcXPmgyUVMD8V1eVLojvEtxNS5n7pQhCmjOJQXoiQYvq0DKykIaKMadOONbsJbRcmiAHHT7e1A==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1501
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1502
+ Redirected to http://localhost:3000/nyauth/
1503
+ Completed 302 Found in 11ms (ActiveRecord: 0.1ms)
1504
+
1505
+
1506
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:10:09 +0900
1507
+ Processing by Nyauth::SessionsController#new as HTML
1508
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.6ms)
1509
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
1510
+
1511
+
1512
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:10:23 +0900
1513
+ Processing by Nyauth::SessionsController#new as HTML
1514
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.3ms)
1515
+ Completed 200 OK in 13ms (Views: 12.6ms | ActiveRecord: 0.0ms)
1516
+
1517
+
1518
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:10:23 +0900
1519
+
1520
+
1521
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:10:23 +0900
1522
+
1523
+
1524
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:11:21 +0900
1525
+ Processing by Nyauth::SessionsController#create as HTML
1526
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"S67cp8kGTPwVI7PEj3TdYqyGsTRHfVkcgV/vRAxC7M6Tk73Pju1IO9dQpjmn6M+8Xd2oWwS/9EfPGYIIiIeXEg==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1527
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1528
+ Redirected to http://localhost:3000/nyauth/
1529
+ Completed 302 Found in 12ms (ActiveRecord: 0.1ms)
1530
+
1531
+
1532
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:11:21 +0900
1533
+ Processing by Nyauth::SessionsController#new as HTML
1534
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.3ms)
1535
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1536
+
1537
+
1538
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:11:21 +0900
1539
+
1540
+
1541
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:11:21 +0900
1542
+
1543
+
1544
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:11:25 +0900
1545
+ Processing by Nyauth::SessionsController#create as HTML
1546
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"mn4zIYzyx3fetCiGap6fr3zCxrMMGTPHM3LxQwC0e0hCQ1JJyxnDsBzHPXtCAo1xjZnf3E/bnpx9NJwPhHEAlA==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1547
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1548
+ Redirected to http://localhost:3000/nyauth/
1549
+ Completed 302 Found in 15ms (ActiveRecord: 0.2ms)
1550
+
1551
+
1552
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:11:25 +0900
1553
+ Processing by Nyauth::SessionsController#new as HTML
1554
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.2ms)
1555
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1556
+
1557
+
1558
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:11:25 +0900
1559
+
1560
+
1561
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:11:25 +0900
1562
+
1563
+
1564
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:11:46 +0900
1565
+ Processing by Nyauth::SessionsController#new as HTML
1566
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (220.0ms)
1567
+ Completed 200 OK in 232ms (Views: 231.0ms | ActiveRecord: 0.0ms)
1568
+
1569
+
1570
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:11:46 +0900
1571
+
1572
+
1573
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:11:46 +0900
1574
+
1575
+
1576
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:11:49 +0900
1577
+ Processing by Nyauth::SessionsController#create as HTML
1578
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"A8hshTBH1g/TFqvpaS6Qsn/jhkl/PNJ5GMUNw4Faq+rb9Q3td6zSyBFlvhRBsoJsjrifJjz+fyJWg2CPBZ/QNg==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1579
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1580
+ Redirected to http://localhost:3000/nyauth/
1581
+ Completed 302 Found in 23ms (ActiveRecord: 0.6ms)
1582
+
1583
+
1584
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:11:49 +0900
1585
+ Processing by Nyauth::SessionsController#new as HTML
1586
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.5ms)
1587
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1588
+
1589
+
1590
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:11:49 +0900
1591
+
1592
+
1593
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:11:49 +0900
1594
+
1595
+
1596
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:11:51 +0900
1597
+ Processing by Nyauth::SessionsController#create as HTML
1598
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"9zvTAl7PvXcRGC0ebyfaTa5zT6AbiwMlAETX9FJptGovBrJqGSS5sNNrOONHu8iTXyhWz1hJrn5OArq41qzPtg==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1599
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1600
+ Redirected to http://localhost:3000/nyauth/
1601
+ Completed 302 Found in 15ms (ActiveRecord: 0.6ms)
1602
+
1603
+
1604
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:11:51 +0900
1605
+ Processing by Nyauth::SessionsController#new as HTML
1606
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.2ms)
1607
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1608
+
1609
+
1610
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:11:51 +0900
1611
+
1612
+
1613
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:11:51 +0900
1614
+
1615
+
1616
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:12:35 +0900
1617
+ Processing by Nyauth::SessionsController#new as HTML
1618
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.4ms)
1619
+ Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
1620
+
1621
+
1622
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:12:35 +0900
1623
+
1624
+
1625
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:12:35 +0900
1626
+
1627
+
1628
+ Started POST "/nyauth/session" for ::1 at 2015-03-14 11:12:38 +0900
1629
+ Processing by Nyauth::SessionsController#create as HTML
1630
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"hIJdRbJcUWUmv/EqMMgnh/H8/IV/o/vL9r6IdB8ApbJcvzwt9bdVouTM5NcYVDVZAKfl6jxhVpC4+OU4m8Xebg==", "session_service"=>{"email"=>"naoto5959+test1@gmail.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
1631
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1632
+ Redirected to http://localhost:3000/nyauth/
1633
+ Completed 302 Found in 14ms (ActiveRecord: 0.1ms)
1634
+
1635
+
1636
+ Started GET "/nyauth/" for ::1 at 2015-03-14 11:12:38 +0900
1637
+ Processing by Nyauth::SessionsController#new as HTML
1638
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/nyauth/application (1.6ms)
1639
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1640
+
1641
+
1642
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:12:38 +0900
1643
+
1644
+
1645
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:12:38 +0900
1646
+
1647
+
1648
+ Started GET "/nyauth/new_password_requests/new" for ::1 at 2015-03-14 11:12:40 +0900
1649
+ Processing by Nyauth::NewPasswordRequestsController#new as HTML
1650
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_password_requests/new.html.slim within layouts/nyauth/application (7.8ms)
1651
+ Completed 200 OK in 27ms (Views: 26.4ms | ActiveRecord: 0.0ms)
1652
+
1653
+
1654
+ Started GET "/assets/nyauth/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-14 11:12:40 +0900
1655
+
1656
+
1657
+ Started GET "/assets/nyauth/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-14 11:12:40 +0900
1658
+
1659
+
1660
+ Started POST "/nyauth/new_password_requests" for ::1 at 2015-03-14 11:12:45 +0900
1661
+ Processing by Nyauth::NewPasswordRequestsController#create as HTML
1662
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"HiFn8QSLAKUtr1MgM8M+akXtIX8icmVa4RPj+MCwY6DGHAaZQ2AEYu/cRt0bXyy0tLY4EGGwyAGvVY60RHUYfA==", "user"=>{"email"=>"naoto5959+test1@gmail.com"}, "commit"=>"request new password"}
1663
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1664
+  (0.0ms) begin transaction
1665
+ SQL (0.3ms) UPDATE "users" SET "new_password_key" = ?, "new_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["new_password_key", "51a1607fe5ab6e97df24227db659d4bd062e97c1c7898c77d95b08738b7f9ee7"], ["new_password_key_expired_at", "2015-03-14 03:12:45.699061"], ["updated_at", "2015-03-14 02:12:45.699570"], ["id", 1]]
1666
+  (0.7ms) commit transaction
1667
+ Redirected to http://localhost:3000/nyauth/
1668
+ Completed 500 Internal Server Error in 14ms
1669
+
1670
+ NameError (uninitialized constant Nyauth::ApplicationMailer):
1671
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/mailers/nyauth/user_mailer.rb:2:in `<module:Nyauth>'
1672
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/mailers/nyauth/user_mailer.rb:1:in `<top (required)>'
1673
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/new_password_requests_controller.rb:25:in `send_mail'
1674
+ activesupport (4.2.0) lib/active_support/callbacks.rb:427:in `block in make_lambda'
1675
+ activesupport (4.2.0) lib/active_support/callbacks.rb:225:in `call'
1676
+ activesupport (4.2.0) lib/active_support/callbacks.rb:225:in `block in halting_and_conditional'
1677
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call'
1678
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
1679
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
1680
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1681
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
1682
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1683
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1684
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1685
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1686
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
1687
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1688
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
1689
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1690
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1691
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1692
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
1693
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
1694
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
1695
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1696
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
1697
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
1698
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1699
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
1700
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1701
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1702
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1703
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1704
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1705
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
1706
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
1707
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1708
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1709
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1710
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1711
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1712
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1713
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
1714
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1715
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1716
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
1717
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1718
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1719
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1720
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1721
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1722
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1723
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1724
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1725
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1726
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1727
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1728
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1729
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1730
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1731
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1732
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1733
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1734
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1735
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1736
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1737
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1738
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1739
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1740
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1741
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1742
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1743
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1744
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1745
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1746
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1747
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1748
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1749
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1750
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1751
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1752
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1753
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1754
+
1755
+
1756
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.6ms)
1757
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.7ms)
1758
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
1759
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (52.5ms)
1760
+
1761
+
1762
+ Started POST "/nyauth/new_password_requests" for ::1 at 2015-03-14 11:13:39 +0900
1763
+ Processing by Nyauth::NewPasswordRequestsController#create as HTML
1764
+ Parameters: {"utf8"=>"✓", "authenticity_token"=>"HiFn8QSLAKUtr1MgM8M+akXtIX8icmVa4RPj+MCwY6DGHAaZQ2AEYu/cRt0bXyy0tLY4EGGwyAGvVY60RHUYfA==", "user"=>{"email"=>"naoto5959+test1@gmail.com"}, "commit"=>"request new password"}
1765
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "naoto5959+test1@gmail.com"]]
1766
+  (0.0ms) begin transaction
1767
+ SQL (0.3ms) UPDATE "users" SET "new_password_key" = ?, "new_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["new_password_key", "e33b43ef3c0343e5530f548ea0791a44974e5a4bcb25cdc24e027059fbe57094"], ["new_password_key_expired_at", "2015-03-14 03:13:39.049051"], ["updated_at", "2015-03-14 02:13:39.049602"], ["id", 1]]
1768
+  (0.6ms) commit transaction
1769
+ Redirected to http://localhost:3000/nyauth/
1770
+
1771
+ Nyauth::UserMailer#request_new_password: processed outbound mail in 37.5ms
1772
+ Completed 500 Internal Server Error in 61ms
1773
+
1774
+ ActionView::MissingTemplate (Missing template layouts/mailer with {:locale=>[:en], :formats=>[:html], :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby, :slim]}. Searched in:
1775
+ * "/Users/koshikawa/repository/github.com/ppworks/nyauth/spec/dummy/app/views"
1776
+ * "/Users/koshikawa/repository/github.com/ppworks/nyauth/app/views"
1777
+ ):
1778
+ actionview (4.2.0) lib/action_view/path_set.rb:46:in `find'
1779
+ actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find'
1780
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template'
1781
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:86:in `resolve_layout'
1782
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:93:in `resolve_layout'
1783
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `block in find_layout'
1784
+ actionview (4.2.0) lib/action_view/lookup_context.rb:242:in `with_layout_format'
1785
+ actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `with_layout_format'
1786
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:76:in `find_layout'
1787
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:60:in `render_with_layout'
1788
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template'
1789
+ actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render'
1790
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template'
1791
+ actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render'
1792
+ actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template'
1793
+ actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body'
1794
+ actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render'
1795
+ actionmailer (4.2.0) lib/action_mailer/base.rb:903:in `block in collect_responses'
1796
+ actionmailer (4.2.0) lib/action_mailer/base.rb:917:in `each'
1797
+ actionmailer (4.2.0) lib/action_mailer/base.rb:917:in `each_template'
1798
+ actionmailer (4.2.0) lib/action_mailer/base.rb:899:in `collect_responses'
1799
+ actionmailer (4.2.0) lib/action_mailer/base.rb:828:in `mail'
1800
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/mailers/nyauth/user_mailer.rb:12:in `request_new_password'
1801
+ actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
1802
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
1803
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1804
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1805
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
1806
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1807
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1808
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
1809
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
1810
+ actionmailer (4.2.0) lib/action_mailer/base.rb:596:in `block in process'
1811
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
1812
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1813
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
1814
+ actionmailer (4.2.0) lib/action_mailer/base.rb:593:in `process'
1815
+ actionmailer (4.2.0) lib/action_mailer/base.rb:584:in `initialize'
1816
+ actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:25:in `new'
1817
+ actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:25:in `__getobj__'
1818
+ actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:34:in `message'
1819
+ actionmailer (4.2.0) lib/action_mailer/message_delivery.rb:85:in `deliver_now'
1820
+ /Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/new_password_requests_controller.rb:25:in `send_mail'
1821
+ activesupport (4.2.0) lib/active_support/callbacks.rb:427:in `block in make_lambda'
1822
+ activesupport (4.2.0) lib/active_support/callbacks.rb:225:in `call'
1823
+ activesupport (4.2.0) lib/active_support/callbacks.rb:225:in `block in halting_and_conditional'
1824
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call'
1825
+ activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
1826
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
1827
+ activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
1828
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
1829
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1830
+ actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
1831
+ actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
1832
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
1833
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
1834
+ activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
1835
+ activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
1836
+ actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
1837
+ actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
1838
+ activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
1839
+ actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
1840
+ actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
1841
+ actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
1842
+ actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
1843
+ actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
1844
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
1845
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
1846
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
1847
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1848
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1849
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1850
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1851
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1852
+ railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
1853
+ railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
1854
+ actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
1855
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
1856
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
1857
+ actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
1858
+ actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
1859
+ rack (1.6.0) lib/rack/etag.rb:24:in `call'
1860
+ rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
1861
+ rack (1.6.0) lib/rack/head.rb:13:in `call'
1862
+ actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
1863
+ actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
1864
+ rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
1865
+ rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
1866
+ actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
1867
+ activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
1868
+ activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
1869
+ activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
1870
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
1871
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
1872
+ activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
1873
+ activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
1874
+ activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
1875
+ actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
1876
+ actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
1877
+ actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
1878
+ actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
1879
+ actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
1880
+ railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
1881
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
1882
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
1883
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
1884
+ activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
1885
+ railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
1886
+ actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
1887
+ rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
1888
+ rack (1.6.0) lib/rack/runtime.rb:18:in `call'
1889
+ activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
1890
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1891
+ actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
1892
+ rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
1893
+ railties (4.2.0) lib/rails/engine.rb:518:in `call'
1894
+ railties (4.2.0) lib/rails/application.rb:164:in `call'
1895
+ rack (1.6.0) lib/rack/lock.rb:17:in `call'
1896
+ rack (1.6.0) lib/rack/content_length.rb:15:in `call'
1897
+ rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
1898
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
1899
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
1900
+ /Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
1901
+
1902
+
1903
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms)
1904
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms)
1905
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.7ms)
1906
+ Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (47.1ms)