nyauth 0.0.2 → 0.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +24 -6
- data/app/controllers/concerns/nyauth/application_concern.rb +10 -0
- data/app/controllers/concerns/nyauth/client_concern.rb +31 -0
- data/app/controllers/nyauth/confirmation_requests_controller.rb +10 -8
- data/app/controllers/nyauth/confirmations_controller.rb +8 -6
- data/app/controllers/nyauth/new_password_requests_controller.rb +10 -8
- data/app/controllers/nyauth/new_passwords_controller.rb +10 -8
- data/app/controllers/nyauth/passwords_controller.rb +11 -9
- data/app/controllers/nyauth/registrations_controller.rb +10 -8
- data/app/controllers/nyauth/sessions_controller.rb +6 -4
- data/app/helpers/nyauth/application_helper.rb +38 -1
- data/app/mailers/nyauth/request_mailer.rb +15 -0
- data/app/views/nyauth/confirmation_requests/new.html.slim +1 -1
- data/app/views/nyauth/confirmations/edit.html.slim +2 -2
- data/app/views/nyauth/new_password_requests/new.html.slim +1 -1
- data/app/views/nyauth/new_passwords/edit.html.slim +3 -3
- data/app/views/nyauth/passwords/edit.html.slim +3 -3
- data/app/views/nyauth/registrations/new.html.slim +3 -3
- data/app/views/nyauth/request_mailer/request_confirmation.html.slim +2 -0
- data/app/views/nyauth/request_mailer/request_confirmation.text.erb +3 -0
- data/app/views/nyauth/request_mailer/request_new_password.html.slim +2 -0
- data/app/views/nyauth/request_mailer/request_new_password.text.erb +3 -0
- data/app/views/nyauth/sessions/new.html.slim +1 -5
- data/config/routes.rb +1 -1
- data/lib/generators/nyauth/install_generator.rb +11 -0
- data/lib/generators/nyauth/templates/nyauth_install_initializer.rb +7 -0
- data/lib/nyauth/configuration.rb +40 -0
- data/lib/nyauth/engine.rb +2 -0
- data/lib/nyauth/version.rb +1 -1
- data/lib/nyauth.rb +10 -0
- data/spec/dummy/app/controllers/pages_controller.rb +4 -0
- data/spec/dummy/app/controllers/posts_controller.rb +5 -0
- data/spec/dummy/app/models/admin.rb +3 -0
- data/spec/dummy/app/views/layouts/application.html.erb +2 -1
- data/spec/dummy/config/routes.rb +7 -1
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/migrate/20150317141956_create_admins.rb +12 -0
- data/spec/dummy/db/schema.rb +11 -1
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +1662 -0
- data/spec/dummy/log/test.log +36831 -0
- data/spec/dummy/tmp/capybara/capybara-201503142131285774508896.html +1 -0
- data/spec/dummy/tmp/capybara/capybara-201503142131502672526321.html +1 -0
- data/spec/dummy/tmp/capybara/capybara-201503142132597161072575.html +16 -0
- data/spec/dummy/tmp/capybara/capybara-201503142147454003977122.html +16 -0
- data/spec/dummy/tmp/capybara/capybara-201503150030597512321952.html +1 -0
- data/spec/dummy/tmp/capybara/capybara-201503172332094559831059.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172332489943616503.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172333245353296202.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172335156567049015.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172339176031196898.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172340144947026095.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172341585213923875.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172342188836603353.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172344586782457691.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172346495241516033.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-201503172354248621830336.html +15 -0
- data/spec/dummy/tmp/capybara/capybara-20150623002226753539811.html +15 -0
- data/spec/dummy/tmp/pids/server.pid +1 -0
- data/spec/factories/admins.rb +6 -0
- data/spec/featrues/nyauth/registrations_spec.rb +1 -0
- data/spec/featrues/nyauth/sessions_spec.rb +54 -19
- data/spec/featrues/url_helper_on_application_spec.rb +10 -0
- data/spec/helpers/nyauth/application_helper_spec.rb +145 -0
- data/spec/lib/generators/nyauth/install_generator_spec.rb +19 -0
- data/spec/lib/generators/nyauth/tmp/config/initializers/nyauth.rb +7 -0
- data/spec/lib/nyauth/configuration_spec.rb +23 -0
- data/spec/mailers/nyauth/{user_mailer_spec.rb → request_mailer_spec.rb} +3 -3
- metadata +72 -13
- data/app/controllers/nyauth/base_controller.rb +0 -5
- data/app/mailers/nyauth/user_mailer.rb +0 -15
- data/app/views/nyauth/group_requests/new.html.slim +0 -14
- data/app/views/nyauth/groups/show.html.slim +0 -0
- data/app/views/nyauth/user_mailer/request_confirmation.html.slim +0 -2
- data/app/views/nyauth/user_mailer/request_confirmation.text.erb +0 -3
- data/app/views/nyauth/user_mailer/request_new_password.html.slim +0 -2
- data/app/views/nyauth/user_mailer/request_new_password.text.erb +0 -3
- /data/{app/views/nyauth/group_requests/edit.html.slim → spec/dummy/app/views/pages/index.html.slim} +0 -0
|
@@ -1904,3 +1904,1665 @@ ActionView::MissingTemplate (Missing template layouts/mailer with {:locale=>[:en
|
|
|
1904
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
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
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)
|
|
1907
|
+
[1m[36m (4.3ms)[0m [1mCREATE 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) [0m
|
|
1908
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
|
1909
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
|
1910
|
+
[1m[35m (1.9ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
1911
|
+
[1m[36m (4.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1912
|
+
[1m[35m (2.7ms)[0m SELECT version FROM "schema_migrations"
|
|
1913
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150303135922')[0m
|
|
1914
|
+
[1m[36m (3.1ms)[0m [1mCREATE 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) [0m
|
|
1915
|
+
[1m[35m (0.6ms)[0m select sqlite_version(*)
|
|
1916
|
+
[1m[36m (3.4ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
|
1917
|
+
[1m[35m (2.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
1918
|
+
[1m[36m (2.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1919
|
+
[1m[35m (0.3ms)[0m SELECT version FROM "schema_migrations"
|
|
1920
|
+
[1m[36m (1.4ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150303135922')[0m
|
|
1921
|
+
[1m[36m (3.4ms)[0m [1mCREATE 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) [0m
|
|
1922
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
1923
|
+
[1m[36m (1.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
|
1924
|
+
[1m[35m (1.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
1925
|
+
[1m[36m (5.7ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1926
|
+
[1m[35m (0.6ms)[0m SELECT version FROM "schema_migrations"
|
|
1927
|
+
[1m[36m (1.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150303135922')[0m
|
|
1928
|
+
[1m[36m (2.4ms)[0m [1mCREATE 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) [0m
|
|
1929
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
1930
|
+
[1m[36m (5.7ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m
|
|
1931
|
+
[1m[35m (8.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar NOT NULL)
|
|
1932
|
+
[1m[36m (16.8ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
1933
|
+
[1m[35m (0.7ms)[0m SELECT version FROM "schema_migrations"
|
|
1934
|
+
[1m[36m (3.3ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20150303135922')[0m
|
|
1935
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1936
|
+
Migrating to CreateAdmins (20150317141956)
|
|
1937
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1938
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "admins" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "email" varchar NOT NULL, "password_digest" varchar NOT NULL, "password_salt" varchar NOT NULL, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
|
1939
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
|
1940
|
+
[1m[36m (0.3ms)[0m [1mCREATE UNIQUE INDEX "index_admins_on_email" ON "admins" ("email")[0m
|
|
1941
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150317141956"]]
|
|
1942
|
+
[1m[36m (3.0ms)[0m [1mcommit transaction[0m
|
|
1943
|
+
[1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
|
|
1944
|
+
[1m[36m (0.1ms)[0m [1m SELECT sql
|
|
1945
|
+
FROM sqlite_master
|
|
1946
|
+
WHERE name='index_admins_on_email' AND type='index'
|
|
1947
|
+
UNION ALL
|
|
1948
|
+
SELECT sql
|
|
1949
|
+
FROM sqlite_temp_master
|
|
1950
|
+
WHERE name='index_admins_on_email' AND type='index'
|
|
1951
|
+
[0m
|
|
1952
|
+
[1m[35m (0.1ms)[0m SELECT sql
|
|
1953
|
+
FROM sqlite_master
|
|
1954
|
+
WHERE name='index_users_on_email' AND type='index'
|
|
1955
|
+
UNION ALL
|
|
1956
|
+
SELECT sql
|
|
1957
|
+
FROM sqlite_temp_master
|
|
1958
|
+
WHERE name='index_users_on_email' AND type='index'
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
|
|
1962
|
+
Started GET "/" for ::1 at 2015-03-17 23:26:48 +0900
|
|
1963
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
1964
|
+
Processing by PagesController#index as HTML
|
|
1965
|
+
Rendered pages/index.html.slim within layouts/application (14.7ms)
|
|
1966
|
+
Completed 200 OK in 55ms (Views: 54.7ms | ActiveRecord: 0.0ms)
|
|
1967
|
+
|
|
1968
|
+
|
|
1969
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:26:49 +0900
|
|
1970
|
+
|
|
1971
|
+
|
|
1972
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:26:49 +0900
|
|
1973
|
+
|
|
1974
|
+
|
|
1975
|
+
Started GET "/registration/new" for ::1 at 2015-03-17 23:27:02 +0900
|
|
1976
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
1977
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (270.1ms)
|
|
1978
|
+
Completed 200 OK in 297ms (Views: 286.0ms | ActiveRecord: 0.3ms)
|
|
1979
|
+
|
|
1980
|
+
|
|
1981
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:02 +0900
|
|
1982
|
+
|
|
1983
|
+
|
|
1984
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:02 +0900
|
|
1985
|
+
|
|
1986
|
+
|
|
1987
|
+
Started POST "/registration" for ::1 at 2015-03-17 23:27:21 +0900
|
|
1988
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
1989
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"S2VHAawAtZZiDihMrACcBoxgf1dhkcNKuhKQUgx2DPf6Z9vHMucTE82iJSAVCDnI7yv2b27a1aGcHFIFQwlsLQ==", "user"=>{"email"=>"a@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
1990
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
1991
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["email", "a@hoge.com"], ["password_salt", "9f571c41996e9283dc749a4fcde4b93c8197802f1933679a6aa5b188eb9c8d4357d3eafbbb7e609a8d70cb855b30439e8cee5753920e05bd348d04d2bedd02885add78569f12940d41b9273ab754002b294c83e02f754d0ce34a4318edaa265528fd7a33187743d52a135e16d2a2a45abd4be6e5ada0750672cd437a1d0a9f85"], ["password_digest", "6914c56507a1c504cbac96781e9059670e3a2889eaf455aaea3f8787790f4eb3"], ["created_at", "2015-03-17 14:27:21.085586"], ["updated_at", "2015-03-17 14:27:21.085586"]]
|
|
1992
|
+
[1m[35m (0.6ms)[0m commit transaction
|
|
1993
|
+
Redirected to http://localhost:3000/
|
|
1994
|
+
Completed 302 Found in 49ms (ActiveRecord: 1.2ms)
|
|
1995
|
+
|
|
1996
|
+
|
|
1997
|
+
Started GET "/" for ::1 at 2015-03-17 23:27:21 +0900
|
|
1998
|
+
Processing by PagesController#index as HTML
|
|
1999
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
2000
|
+
Completed 200 OK in 13ms (Views: 12.5ms | ActiveRecord: 0.0ms)
|
|
2001
|
+
|
|
2002
|
+
|
|
2003
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:21 +0900
|
|
2004
|
+
|
|
2005
|
+
|
|
2006
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:21 +0900
|
|
2007
|
+
|
|
2008
|
+
|
|
2009
|
+
Started GET "/session" for ::1 at 2015-03-17 23:27:23 +0900
|
|
2010
|
+
|
|
2011
|
+
ActionController::RoutingError (No route matches [GET] "/session"):
|
|
2012
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
2013
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2014
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2015
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2016
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2017
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2018
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2019
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2020
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2021
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2022
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2023
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2024
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2025
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2026
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2027
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2028
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2029
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2030
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2031
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2032
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2033
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2034
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2035
|
+
|
|
2036
|
+
|
|
2037
|
+
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)
|
|
2038
|
+
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)
|
|
2039
|
+
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)
|
|
2040
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.4ms)
|
|
2041
|
+
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.6ms)
|
|
2042
|
+
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.7ms)
|
|
2043
|
+
|
|
2044
|
+
|
|
2045
|
+
Started GET "/session/new" for ::1 at 2015-03-17 23:27:25 +0900
|
|
2046
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
2047
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (9.6ms)
|
|
2048
|
+
Completed 200 OK in 30ms (Views: 26.4ms | ActiveRecord: 0.0ms)
|
|
2049
|
+
|
|
2050
|
+
|
|
2051
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:25 +0900
|
|
2052
|
+
|
|
2053
|
+
|
|
2054
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:25 +0900
|
|
2055
|
+
|
|
2056
|
+
|
|
2057
|
+
Started POST "/session" for ::1 at 2015-03-17 23:27:30 +0900
|
|
2058
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
2059
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"TG8oJG1bKK43BBxUyKHlRovT1bypR+Ml9jk0BHQmiVn9bbTi87yOK5ioEThxqUCI6JhchKYM9c7QN/ZTO1npgw==", "session_service"=>{"email"=>"a@hoge.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
2060
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1[0m [["email", "a@hoge.com"]]
|
|
2061
|
+
Redirected to http://localhost:3000/
|
|
2062
|
+
Completed 302 Found in 24ms (ActiveRecord: 0.2ms)
|
|
2063
|
+
|
|
2064
|
+
|
|
2065
|
+
Started GET "/" for ::1 at 2015-03-17 23:27:30 +0900
|
|
2066
|
+
Processing by PagesController#index as HTML
|
|
2067
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
2068
|
+
Completed 200 OK in 12ms (Views: 12.2ms | ActiveRecord: 0.0ms)
|
|
2069
|
+
|
|
2070
|
+
|
|
2071
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:30 +0900
|
|
2072
|
+
|
|
2073
|
+
|
|
2074
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:30 +0900
|
|
2075
|
+
|
|
2076
|
+
|
|
2077
|
+
Started GET "/session" for ::1 at 2015-03-17 23:27:32 +0900
|
|
2078
|
+
|
|
2079
|
+
ActionController::RoutingError (No route matches [GET] "/session"):
|
|
2080
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
2081
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2082
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2083
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2084
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2085
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2086
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2087
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2088
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2089
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2090
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2091
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2092
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2093
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2094
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2095
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2096
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2097
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2098
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2099
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2100
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2101
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2102
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2103
|
+
|
|
2104
|
+
|
|
2105
|
+
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)
|
|
2106
|
+
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)
|
|
2107
|
+
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.1ms)
|
|
2108
|
+
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)
|
|
2109
|
+
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)
|
|
2110
|
+
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 (88.6ms)
|
|
2111
|
+
|
|
2112
|
+
|
|
2113
|
+
Started GET "/admin/registration/new" for ::1 at 2015-03-17 23:27:38 +0900
|
|
2114
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
2115
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (2.2ms)
|
|
2116
|
+
Completed 200 OK in 21ms (Views: 19.6ms | ActiveRecord: 0.0ms)
|
|
2117
|
+
|
|
2118
|
+
|
|
2119
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:38 +0900
|
|
2120
|
+
|
|
2121
|
+
|
|
2122
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:38 +0900
|
|
2123
|
+
|
|
2124
|
+
|
|
2125
|
+
Started POST "/admin/registration" for ::1 at 2015-03-17 23:27:46 +0900
|
|
2126
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2127
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Tz8CaKta+c/5MYO2NE+sF2I5OQYOUl2pZuypkkJs+DH+PZ6uNb1fSladjtqNRwnZAXKwPgEZS0JA4mvFDROY6w==", "user"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2128
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2129
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
2130
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (4.5ms)
|
|
2131
|
+
Completed 200 OK in 38ms (Views: 22.8ms | ActiveRecord: 0.2ms)
|
|
2132
|
+
|
|
2133
|
+
|
|
2134
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:46 +0900
|
|
2135
|
+
|
|
2136
|
+
|
|
2137
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:46 +0900
|
|
2138
|
+
|
|
2139
|
+
|
|
2140
|
+
Started POST "/admin/registration" for ::1 at 2015-03-17 23:27:53 +0900
|
|
2141
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2142
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"o6u/2Hg7qX4refehu/6zzpzr+BcBNEK6HB8/1o8U1SkSqSMe5twP+4TV+s0C9hYA/6BxLw5/VFE6Ef2BwGu18w==", "user"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2143
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2144
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
2145
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (4.4ms)
|
|
2146
|
+
Completed 200 OK in 40ms (Views: 23.5ms | ActiveRecord: 0.2ms)
|
|
2147
|
+
|
|
2148
|
+
|
|
2149
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:53 +0900
|
|
2150
|
+
|
|
2151
|
+
|
|
2152
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:27:53 +0900
|
|
2153
|
+
|
|
2154
|
+
|
|
2155
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:27:55 +0900
|
|
2156
|
+
|
|
2157
|
+
|
|
2158
|
+
Started POST "/admin/registration" for ::1 at 2015-03-17 23:28:57 +0900
|
|
2159
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2160
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"o6u/2Hg7qX4refehu/6zzpzr+BcBNEK6HB8/1o8U1SkSqSMe5twP+4TV+s0C9hYA/6BxLw5/VFE6Ef2BwGu18w==", "user"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2161
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2162
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
2163
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (2.8ms)
|
|
2164
|
+
Completed 200 OK in 31ms (Views: 14.7ms | ActiveRecord: 0.6ms)
|
|
2165
|
+
|
|
2166
|
+
|
|
2167
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:28:57 +0900
|
|
2168
|
+
|
|
2169
|
+
|
|
2170
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:28:57 +0900
|
|
2171
|
+
|
|
2172
|
+
|
|
2173
|
+
Started POST "/admin/registration" for ::1 at 2015-03-17 23:29:07 +0900
|
|
2174
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2175
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"p+MR7Ys1m8W3LdAcl80u1kJSI5dFvTxUzF9To3AVN/4W4Y0rFdI9QBiB3XAuxYsYIRmqr0r2Kr/qUZH0P2pXJA==", "admin"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2176
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2177
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "admins" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["email", "b@hoge.com"], ["password_salt", "85c0f7ba2a2ee39f40e544120a215a1f2ea69f391063821622d27c088128c36e092d78c0c2b0825d7cbe260e7947edaf6c329017aee2d9483f99ceb8da0f1d14cdae9b131610f8dc55752618ed789cc3e2dee989ba1513c11095d783e3b586ee784221df46a9c989c03f2081eb4fe9b96503ae7d1ac95152e4afd5e0d27a501c"], ["password_digest", "30cec3cc943f228d5fd29e38fee4ea99b58212d690459bac4e13398428cd2853"], ["created_at", "2015-03-17 14:29:07.913163"], ["updated_at", "2015-03-17 14:29:07.913163"]]
|
|
2178
|
+
[1m[35m (0.5ms)[0m commit transaction
|
|
2179
|
+
Redirected to http://localhost:3000/
|
|
2180
|
+
Completed 302 Found in 16ms (ActiveRecord: 1.1ms)
|
|
2181
|
+
|
|
2182
|
+
|
|
2183
|
+
Started GET "/" for ::1 at 2015-03-17 23:29:07 +0900
|
|
2184
|
+
Processing by PagesController#index as HTML
|
|
2185
|
+
Rendered pages/index.html.slim within layouts/application (0.1ms)
|
|
2186
|
+
Completed 200 OK in 15ms (Views: 15.2ms | ActiveRecord: 0.0ms)
|
|
2187
|
+
|
|
2188
|
+
|
|
2189
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:29:07 +0900
|
|
2190
|
+
|
|
2191
|
+
|
|
2192
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:29:07 +0900
|
|
2193
|
+
|
|
2194
|
+
|
|
2195
|
+
Started GET "/session" for ::1 at 2015-03-17 23:29:09 +0900
|
|
2196
|
+
|
|
2197
|
+
ActionController::RoutingError (No route matches [GET] "/session"):
|
|
2198
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
2199
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2200
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2201
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2202
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2203
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2204
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2205
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2206
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2207
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2208
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2209
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2210
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2211
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2212
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2213
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2214
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2215
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2216
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2217
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2218
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2219
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2220
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2221
|
+
|
|
2222
|
+
|
|
2223
|
+
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)
|
|
2224
|
+
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.5ms)
|
|
2225
|
+
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.3ms)
|
|
2226
|
+
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.8ms)
|
|
2227
|
+
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 (4.8ms)
|
|
2228
|
+
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 (119.6ms)
|
|
2229
|
+
|
|
2230
|
+
|
|
2231
|
+
Started GET "/admin/session/new" for ::1 at 2015-03-17 23:29:15 +0900
|
|
2232
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
2233
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (2.1ms)
|
|
2234
|
+
Completed 200 OK in 18ms (Views: 16.9ms | ActiveRecord: 0.0ms)
|
|
2235
|
+
|
|
2236
|
+
|
|
2237
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:29:15 +0900
|
|
2238
|
+
|
|
2239
|
+
|
|
2240
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:29:15 +0900
|
|
2241
|
+
|
|
2242
|
+
|
|
2243
|
+
Started POST "/admin/session" for ::1 at 2015-03-17 23:29:20 +0900
|
|
2244
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
2245
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"jMtG64i5b4DM6KxSiB/SHrzGI81yw8mtZzmAUXuNung9ydotFl7JBWNEoT4xF3fQ342q9X2I30ZBN0IGNPLaog==", "session_service"=>{"email"=>"a@hoge.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
2246
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1[0m [["email", "a@hoge.com"]]
|
|
2247
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.6ms)
|
|
2248
|
+
Completed 200 OK in 45ms (Views: 18.0ms | ActiveRecord: 0.5ms)
|
|
2249
|
+
|
|
2250
|
+
|
|
2251
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:29:20 +0900
|
|
2252
|
+
|
|
2253
|
+
|
|
2254
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:29:20 +0900
|
|
2255
|
+
|
|
2256
|
+
|
|
2257
|
+
Started POST "/admin/session" for ::1 at 2015-03-17 23:29:24 +0900
|
|
2258
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
2259
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"kLy9VVZbMGWEgiQ+7dqUIv+rGOvfKlaDpm252iy0NGshviGTyLyW4CsuKVJU0jHsnOCR09BhQGiAY3uNY8tUsQ==", "session_service"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
2260
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "b@hoge.com"]]
|
|
2261
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (2.6ms)
|
|
2262
|
+
Completed 200 OK in 28ms (Views: 18.9ms | ActiveRecord: 0.1ms)
|
|
2263
|
+
|
|
2264
|
+
|
|
2265
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:29:24 +0900
|
|
2266
|
+
|
|
2267
|
+
|
|
2268
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:29:24 +0900
|
|
2269
|
+
|
|
2270
|
+
|
|
2271
|
+
Started POST "/admin/session" for ::1 at 2015-03-17 23:29:29 +0900
|
|
2272
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
2273
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lzl+z7w5XlcIs1qnaVhg4UOjjf0zYFTHjSWXoxmqYywmO+IJIt740qcfV8vQUMUvIOgExTwrQiyrK1X0VtUD9g==", "session_service"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
2274
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1[0m [["email", "b@hoge.com"]]
|
|
2275
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (2.0ms)
|
|
2276
|
+
Completed 200 OK in 28ms (Views: 17.3ms | ActiveRecord: 0.1ms)
|
|
2277
|
+
|
|
2278
|
+
|
|
2279
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:29:29 +0900
|
|
2280
|
+
|
|
2281
|
+
|
|
2282
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:29:29 +0900
|
|
2283
|
+
|
|
2284
|
+
|
|
2285
|
+
Started POST "/admin/session" for ::1 at 2015-03-17 23:30:37 +0900
|
|
2286
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
2287
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"G/BD4UdjckTf9OTH5yMIDhi8cRPPNw5QvQ8D+sQbiHyq8t8n2YTUwXBY6ateK63Ae/f4K8B8GLubAcGti2Topg==", "session_service"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
2288
|
+
[1m[35mAdmin Load (0.1ms)[0m SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", "b@hoge.com"]]
|
|
2289
|
+
Redirected to http://localhost:3000/
|
|
2290
|
+
Completed 302 Found in 21ms (ActiveRecord: 0.7ms)
|
|
2291
|
+
|
|
2292
|
+
|
|
2293
|
+
Started GET "/" for ::1 at 2015-03-17 23:30:37 +0900
|
|
2294
|
+
Processing by PagesController#index as HTML
|
|
2295
|
+
Rendered pages/index.html.slim within layouts/application (0.1ms)
|
|
2296
|
+
Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms)
|
|
2297
|
+
|
|
2298
|
+
|
|
2299
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:30:37 +0900
|
|
2300
|
+
|
|
2301
|
+
|
|
2302
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:30:37 +0900
|
|
2303
|
+
|
|
2304
|
+
|
|
2305
|
+
Started GET "/session" for ::1 at 2015-03-17 23:30:44 +0900
|
|
2306
|
+
|
|
2307
|
+
ActionController::RoutingError (No route matches [GET] "/session"):
|
|
2308
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
2309
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2310
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2311
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2312
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2313
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2314
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2315
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2316
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2317
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2318
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2319
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2320
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2321
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2322
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2323
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2324
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2325
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2326
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2327
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2328
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2329
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2330
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2331
|
+
|
|
2332
|
+
|
|
2333
|
+
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)
|
|
2334
|
+
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)
|
|
2335
|
+
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)
|
|
2336
|
+
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.3ms)
|
|
2337
|
+
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)
|
|
2338
|
+
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.8ms)
|
|
2339
|
+
|
|
2340
|
+
|
|
2341
|
+
Started GET "/registration/new" for ::1 at 2015-03-17 23:31:26 +0900
|
|
2342
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2343
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
2344
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (240.6ms)
|
|
2345
|
+
Completed 200 OK in 281ms (Views: 270.7ms | ActiveRecord: 0.2ms)
|
|
2346
|
+
|
|
2347
|
+
|
|
2348
|
+
Started GET "/registration/new" for ::1 at 2015-03-17 23:31:27 +0900
|
|
2349
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
2350
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (1.5ms)
|
|
2351
|
+
Completed 200 OK in 14ms (Views: 13.9ms | ActiveRecord: 0.0ms)
|
|
2352
|
+
|
|
2353
|
+
|
|
2354
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:31:27 +0900
|
|
2355
|
+
|
|
2356
|
+
|
|
2357
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:31:27 +0900
|
|
2358
|
+
|
|
2359
|
+
|
|
2360
|
+
Started GET "/registration/new" for ::1 at 2015-03-17 23:48:17 +0900
|
|
2361
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2362
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
2363
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (221.5ms)
|
|
2364
|
+
Completed 200 OK in 273ms (Views: 255.6ms | ActiveRecord: 0.3ms)
|
|
2365
|
+
|
|
2366
|
+
|
|
2367
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-17 23:48:18 +0900
|
|
2368
|
+
|
|
2369
|
+
|
|
2370
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-17 23:48:18 +0900
|
|
2371
|
+
|
|
2372
|
+
|
|
2373
|
+
Started GET "/" for ::1 at 2015-03-20 00:54:41 +0900
|
|
2374
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2375
|
+
Processing by PagesController#index as HTML
|
|
2376
|
+
Rendered pages/index.html.slim within layouts/application (11.2ms)
|
|
2377
|
+
Completed 200 OK in 46ms (Views: 45.6ms | ActiveRecord: 0.0ms)
|
|
2378
|
+
|
|
2379
|
+
|
|
2380
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:54:41 +0900
|
|
2381
|
+
|
|
2382
|
+
|
|
2383
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:54:41 +0900
|
|
2384
|
+
|
|
2385
|
+
|
|
2386
|
+
Started GET "/admin/registration/new" for ::1 at 2015-03-20 00:54:49 +0900
|
|
2387
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
2388
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (220.1ms)
|
|
2389
|
+
Completed 200 OK in 242ms (Views: 236.5ms | ActiveRecord: 0.2ms)
|
|
2390
|
+
|
|
2391
|
+
|
|
2392
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:54:49 +0900
|
|
2393
|
+
|
|
2394
|
+
|
|
2395
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:54:49 +0900
|
|
2396
|
+
|
|
2397
|
+
|
|
2398
|
+
Started POST "/admin/registration" for ::1 at 2015-03-20 00:55:04 +0900
|
|
2399
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2400
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"BWTO0vs8sjuwSEuHukgZKYRntP9NfUibYnFgnCS5c3F0xvlJ5aEzSZ0dXiAjKZVQR2J+NMvG7a1zgx9OpAuxXA==", "admin"=>{"email"=>"a@hoge.co", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2401
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2402
|
+
[1m[36mSQL (1.3ms)[0m [1mINSERT INTO "admins" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["email", "a@hoge.co"], ["password_salt", "a890c8ee4d31fe9c4ca3454a7d7644eea34bfe32afc1cdd85dce5c7288bd83bd1419b69ea889395280a1be3cd38e25fc2583df59e252d5ddb168696ce496fc886bd9420285dfdfdd070d69b98639f4aff75a1f5ef5f6175e7101352a84d16df63204f6094461c65d4b4c49174de8f0e477e95c77a751abb928138adfb55aef0f"], ["password_digest", "17d71a34d176e7a04b27d199a1e3d6398c6b27e33a1ff6c7e488c792eacd8f4c"], ["created_at", "2015-03-19 15:55:04.206006"], ["updated_at", "2015-03-19 15:55:04.206006"]]
|
|
2403
|
+
[1m[35m (3.9ms)[0m commit transaction
|
|
2404
|
+
Redirected to http://localhost:3000/
|
|
2405
|
+
Completed 302 Found in 35ms (ActiveRecord: 5.3ms)
|
|
2406
|
+
|
|
2407
|
+
|
|
2408
|
+
Started GET "/" for ::1 at 2015-03-20 00:55:04 +0900
|
|
2409
|
+
Processing by PagesController#index as HTML
|
|
2410
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
2411
|
+
Completed 200 OK in 18ms (Views: 17.8ms | ActiveRecord: 0.0ms)
|
|
2412
|
+
|
|
2413
|
+
|
|
2414
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:55:04 +0900
|
|
2415
|
+
|
|
2416
|
+
|
|
2417
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:55:04 +0900
|
|
2418
|
+
|
|
2419
|
+
|
|
2420
|
+
Started GET "/admin/new_password_requests/new" for ::1 at 2015-03-20 00:55:20 +0900
|
|
2421
|
+
Processing by Nyauth::NewPasswordRequestsController#new as HTML
|
|
2422
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_password_requests/new.html.slim within layouts/application (5.9ms)
|
|
2423
|
+
Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
|
|
2424
|
+
|
|
2425
|
+
|
|
2426
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:55:20 +0900
|
|
2427
|
+
|
|
2428
|
+
|
|
2429
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:55:20 +0900
|
|
2430
|
+
|
|
2431
|
+
|
|
2432
|
+
Started POST "/admin/new_password_requests" for ::1 at 2015-03-20 00:55:22 +0900
|
|
2433
|
+
Processing by Nyauth::NewPasswordRequestsController#create as HTML
|
|
2434
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"TQ4NSagnVAZXClOEk0VXjcopZH8uifLk0yz6yNIwrOc8rDrStrrVdHpfRiMKJNv0CSyutKgyV9LC3oUaUoJuyg==", "admin"=>{"email"=>"a@hoge.co"}, "commit"=>"request new password"}
|
|
2435
|
+
[1m[36mAdmin Load (0.2ms)[0m [1mSELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT 1[0m [["email", "a@hoge.co"]]
|
|
2436
|
+
Completed 500 Internal Server Error in 14ms
|
|
2437
|
+
|
|
2438
|
+
NoMethodError (undefined method `request_new_password' for #<Admin:0x007fe7782cab48>):
|
|
2439
|
+
activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing'
|
|
2440
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/new_password_requests_controller.rb:14:in `create'
|
|
2441
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
2442
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
|
2443
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
2444
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2445
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
|
2446
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
|
2447
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `block in halting_and_conditional'
|
|
2448
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call'
|
|
2449
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
|
|
2450
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
|
2451
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
|
2452
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
|
2453
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
|
2454
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
|
2455
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
|
2456
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
|
2457
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2458
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2459
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
2460
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
2461
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2462
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2463
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
|
2464
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2465
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
2466
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2467
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
|
2468
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
|
2469
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
2470
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
2471
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
|
2472
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
2473
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
2474
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
|
2475
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
2476
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
2477
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
2478
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
2479
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2480
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
|
2481
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
2482
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
|
2483
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
2484
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
2485
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
2486
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
2487
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
|
2488
|
+
rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
|
|
2489
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
|
2490
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
2491
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
2492
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
|
2493
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
|
2494
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
2495
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
|
2496
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
|
2497
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
|
2498
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
2499
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
2500
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
2501
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
|
2502
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2503
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
2504
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
2505
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
2506
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
2507
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2508
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2509
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2510
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2511
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2512
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2513
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2514
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2515
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2516
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2517
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2518
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2519
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2520
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2521
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2522
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2523
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2524
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2525
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2526
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2527
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2528
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2529
|
+
|
|
2530
|
+
|
|
2531
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms)
|
|
2532
|
+
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)
|
|
2533
|
+
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.2ms)
|
|
2534
|
+
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 (55.3ms)
|
|
2535
|
+
|
|
2536
|
+
|
|
2537
|
+
Started POST "/admin/new_password_requests" for ::1 at 2015-03-20 00:55:59 +0900
|
|
2538
|
+
Processing by Nyauth::NewPasswordRequestsController#create as HTML
|
|
2539
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"TQ4NSagnVAZXClOEk0VXjcopZH8uifLk0yz6yNIwrOc8rDrStrrVdHpfRiMKJNv0CSyutKgyV9LC3oUaUoJuyg==", "admin"=>{"email"=>"a@hoge.co"}, "commit"=>"request new password"}
|
|
2540
|
+
[1m[35mAdmin Load (0.1ms)[0m SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? LIMIT 1 [["email", "a@hoge.co"]]
|
|
2541
|
+
Completed 500 Internal Server Error in 10ms
|
|
2542
|
+
|
|
2543
|
+
NoMethodError (undefined method `new_password_key=' for #<Admin:0x007fe771e21b10>):
|
|
2544
|
+
activemodel (4.2.0) lib/active_model/attribute_methods.rb:433:in `method_missing'
|
|
2545
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/models/concerns/nyauth/new_password_ability.rb:20:in `request_new_password'
|
|
2546
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/new_password_requests_controller.rb:14:in `create'
|
|
2547
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
2548
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
|
2549
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
2550
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2551
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
|
2552
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
|
2553
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:219:in `block in halting_and_conditional'
|
|
2554
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `call'
|
|
2555
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:151:in `block in halting_and_conditional'
|
|
2556
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
|
2557
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
|
2558
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
|
2559
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
|
2560
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
|
2561
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
|
2562
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
|
2563
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2564
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2565
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
2566
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
2567
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2568
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2569
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
|
2570
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2571
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
2572
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2573
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
|
2574
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
|
2575
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
2576
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
2577
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
|
2578
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
2579
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
2580
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
|
2581
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
2582
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
2583
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
2584
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
2585
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2586
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
|
2587
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
2588
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
|
2589
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
2590
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
2591
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
2592
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
2593
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
|
2594
|
+
rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
|
|
2595
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
|
2596
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
2597
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
2598
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
|
2599
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
|
2600
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
2601
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
|
2602
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
|
2603
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
|
2604
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
2605
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
2606
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
2607
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
|
2608
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2609
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
2610
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
2611
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
2612
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
2613
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2614
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2615
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2616
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2617
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2618
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2619
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2620
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2621
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2622
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2623
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2624
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2625
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2626
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2627
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2628
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2629
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2630
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2631
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2632
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2633
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2634
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2635
|
+
|
|
2636
|
+
|
|
2637
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (3.7ms)
|
|
2638
|
+
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.2ms)
|
|
2639
|
+
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.2ms)
|
|
2640
|
+
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 (48.1ms)
|
|
2641
|
+
|
|
2642
|
+
|
|
2643
|
+
Started GET "/user/new_password_requests/new" for ::1 at 2015-03-20 00:56:51 +0900
|
|
2644
|
+
Processing by Nyauth::NewPasswordRequestsController#new as HTML
|
|
2645
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_password_requests/new.html.slim within layouts/application (14.5ms)
|
|
2646
|
+
Completed 200 OK in 28ms (Views: 27.1ms | ActiveRecord: 0.7ms)
|
|
2647
|
+
|
|
2648
|
+
|
|
2649
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:56:51 +0900
|
|
2650
|
+
|
|
2651
|
+
|
|
2652
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:56:51 +0900
|
|
2653
|
+
|
|
2654
|
+
|
|
2655
|
+
Started POST "/user/new_password_requests" for ::1 at 2015-03-20 00:56:55 +0900
|
|
2656
|
+
Processing by Nyauth::NewPasswordRequestsController#create as HTML
|
|
2657
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"v1/5+uan2nQjuKueMScJEVbe6hP2PvXa2CN5sIA6o+3O/c5h+DpbBg7tvjmoRoVoldsg2HCFUOzJ0QZiAIhhwA==", "user"=>{"email"=>"hoge.co"}, "commit"=>"request new password"}
|
|
2658
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1[0m [["email", "hoge.co"]]
|
|
2659
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_password_requests/new.html.slim within layouts/application (6.1ms)
|
|
2660
|
+
Filter chain halted as :set_client rendered or redirected
|
|
2661
|
+
Completed 200 OK in 42ms (Views: 38.6ms | ActiveRecord: 0.2ms)
|
|
2662
|
+
|
|
2663
|
+
|
|
2664
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:56:55 +0900
|
|
2665
|
+
|
|
2666
|
+
|
|
2667
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:56:55 +0900
|
|
2668
|
+
|
|
2669
|
+
|
|
2670
|
+
Started GET "/user/registration/new" for ::1 at 2015-03-20 00:57:07 +0900
|
|
2671
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
2672
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (2.6ms)
|
|
2673
|
+
Completed 200 OK in 25ms (Views: 24.7ms | ActiveRecord: 0.0ms)
|
|
2674
|
+
|
|
2675
|
+
|
|
2676
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:57:07 +0900
|
|
2677
|
+
|
|
2678
|
+
|
|
2679
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:57:07 +0900
|
|
2680
|
+
|
|
2681
|
+
|
|
2682
|
+
Started POST "/user/registration" for ::1 at 2015-03-20 00:57:14 +0900
|
|
2683
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2684
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Y78wg3gu0WqYiwRB4wCz2aZKF1xWWyuLwm+DmDv30tcSHQcYZrNQGLXeEeZ6YT+gZU/dl9Dgjr3TnfxKu0UQ+g==", "user"=>{"email"=>"a@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2685
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
2686
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["email", "a@hoge.com"], ["password_salt", "cfacb740a3661b5f13c4753118ed656c8c2f091afb31765008815f8f5d6643a1be53ae1f3bdba5a9e6bbd99c07e8bbde6484bb17b6fa06714ed079fd9b928eb34657d38d3ef8cb154a8c09a857f1a87c2e5c1e762bd4accf1b322c024c511e8ba463b7a1a9e308c63a8059f1b4449785067c99941053ab10fcc32a55a4d816a2"], ["password_digest", "41bcb43385bf1fa34dd859be90c6fa172f57b01423bcfe0ac879356933cfa260"], ["created_at", "2015-03-19 15:57:14.794587"], ["updated_at", "2015-03-19 15:57:14.794587"]]
|
|
2687
|
+
SQLite3::ConstraintException: column email is not unique: INSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)
|
|
2688
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
|
2689
|
+
Completed 500 Internal Server Error in 10ms
|
|
2690
|
+
|
|
2691
|
+
ActiveRecord::RecordNotUnique (SQLite3::ConstraintException: column email is not unique: INSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)):
|
|
2692
|
+
sqlite3 (1.3.10) lib/sqlite3/statement.rb:108:in `step'
|
|
2693
|
+
sqlite3 (1.3.10) lib/sqlite3/statement.rb:108:in `block in each'
|
|
2694
|
+
sqlite3 (1.3.10) lib/sqlite3/statement.rb:107:in `loop'
|
|
2695
|
+
sqlite3 (1.3.10) lib/sqlite3/statement.rb:107:in `each'
|
|
2696
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:318:in `to_a'
|
|
2697
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:318:in `block in exec_query'
|
|
2698
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:466:in `block in log'
|
|
2699
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2700
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract_adapter.rb:460:in `log'
|
|
2701
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/sqlite3_adapter.rb:297:in `exec_query'
|
|
2702
|
+
database_rewinder (0.5.1) lib/database_rewinder/active_record_monkey.rb:10:in `exec_query'
|
|
2703
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:76:in `exec_insert'
|
|
2704
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:108:in `insert'
|
|
2705
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/query_cache.rb:14:in `insert'
|
|
2706
|
+
activerecord (4.2.0) lib/active_record/relation.rb:64:in `insert'
|
|
2707
|
+
activerecord (4.2.0) lib/active_record/persistence.rb:521:in `_create_record'
|
|
2708
|
+
activerecord (4.2.0) lib/active_record/counter_cache.rb:139:in `_create_record'
|
|
2709
|
+
activerecord (4.2.0) lib/active_record/attribute_methods/dirty.rb:127:in `_create_record'
|
|
2710
|
+
activerecord (4.2.0) lib/active_record/callbacks.rb:306:in `block in _create_record'
|
|
2711
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
2712
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
2713
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_create_callbacks'
|
|
2714
|
+
activerecord (4.2.0) lib/active_record/callbacks.rb:306:in `_create_record'
|
|
2715
|
+
activerecord (4.2.0) lib/active_record/timestamp.rb:57:in `_create_record'
|
|
2716
|
+
activerecord (4.2.0) lib/active_record/persistence.rb:501:in `create_or_update'
|
|
2717
|
+
activerecord (4.2.0) lib/active_record/callbacks.rb:302:in `block in create_or_update'
|
|
2718
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
2719
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
2720
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_save_callbacks'
|
|
2721
|
+
activerecord (4.2.0) lib/active_record/callbacks.rb:302:in `create_or_update'
|
|
2722
|
+
activerecord (4.2.0) lib/active_record/persistence.rb:120:in `save'
|
|
2723
|
+
activerecord (4.2.0) lib/active_record/validations.rb:37:in `save'
|
|
2724
|
+
activerecord (4.2.0) lib/active_record/attribute_methods/dirty.rb:21:in `save'
|
|
2725
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:286:in `block (2 levels) in save'
|
|
2726
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:347:in `block in with_transaction_returning_status'
|
|
2727
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `block in transaction'
|
|
2728
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/transaction.rb:188:in `within_new_transaction'
|
|
2729
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/database_statements.rb:213:in `transaction'
|
|
2730
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:220:in `transaction'
|
|
2731
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:344:in `with_transaction_returning_status'
|
|
2732
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:286:in `block in save'
|
|
2733
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:301:in `rollback_active_record_state!'
|
|
2734
|
+
activerecord (4.2.0) lib/active_record/transactions.rb:285:in `save'
|
|
2735
|
+
/Users/koshikawa/repository/github.com/ppworks/nyauth/app/controllers/nyauth/registrations_controller.rb:13:in `create'
|
|
2736
|
+
actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action'
|
|
2737
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action'
|
|
2738
|
+
actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action'
|
|
2739
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action'
|
|
2740
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
|
2741
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:117:in `call'
|
|
2742
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
|
2743
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `call'
|
|
2744
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:234:in `block in halting'
|
|
2745
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `call'
|
|
2746
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:169:in `block in halting'
|
|
2747
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `call'
|
|
2748
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:92:in `_run_callbacks'
|
|
2749
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks'
|
|
2750
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2751
|
+
actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action'
|
|
2752
|
+
actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action'
|
|
2753
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action'
|
|
2754
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument'
|
|
2755
|
+
activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument'
|
|
2756
|
+
activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument'
|
|
2757
|
+
actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action'
|
|
2758
|
+
actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action'
|
|
2759
|
+
activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action'
|
|
2760
|
+
actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process'
|
|
2761
|
+
actionview (4.2.0) lib/action_view/rendering.rb:30:in `process'
|
|
2762
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch'
|
|
2763
|
+
actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch'
|
|
2764
|
+
actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action'
|
|
2765
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call'
|
|
2766
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch'
|
|
2767
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve'
|
|
2768
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
2769
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
2770
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
2771
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
2772
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2773
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `public_send'
|
|
2774
|
+
railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing'
|
|
2775
|
+
actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve'
|
|
2776
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
2777
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
2778
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
2779
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
2780
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
|
2781
|
+
rack (1.6.0) lib/rack/conditionalget.rb:38:in `call'
|
|
2782
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
|
2783
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
2784
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
2785
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
|
2786
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
|
2787
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
2788
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
|
2789
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
|
2790
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
|
2791
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
2792
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
2793
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
2794
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
|
2795
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
2796
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
2797
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
2798
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
2799
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
2800
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
2801
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
2802
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
2803
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
2804
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
2805
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
2806
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
2807
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
2808
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
2809
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
2810
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
2811
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2812
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
2813
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
2814
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
2815
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
2816
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
2817
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
2818
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
2819
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
2820
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
2821
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
2822
|
+
|
|
2823
|
+
|
|
2824
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.1ms)
|
|
2825
|
+
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.4ms)
|
|
2826
|
+
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)
|
|
2827
|
+
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 (47.1ms)
|
|
2828
|
+
|
|
2829
|
+
|
|
2830
|
+
Started POST "/user/registration" for ::1 at 2015-03-20 00:57:26 +0900
|
|
2831
|
+
Processing by Nyauth::RegistrationsController#create as HTML
|
|
2832
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Y78wg3gu0WqYiwRB4wCz2aZKF1xWWyuLwm+DmDv30tcSHQcYZrNQGLXeEeZ6YT+gZU/dl9Dgjr3TnfxKu0UQ+g==", "user"=>{"email"=>"b@hoge.com", "password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Sign up"}
|
|
2833
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2834
|
+
[1m[35mSQL (0.7ms)[0m INSERT INTO "users" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?) [["email", "b@hoge.com"], ["password_salt", "2baa232bb5d489fa36e4259aeef008419957f1142452c96d589ed088de3469fa64784dfc7092fd1148be3720102032a62e8012f3a35478238191fe00878967e934241296b1e071ee655c7dc10a9cee6a9818ce4875b22c5e673e085df38395a7948645c0e1ed0a38299230e0af9565f56757ae8798a109256657f806f5a01f17"], ["password_digest", "0015dc8002a044afff9924183e45c95d580ebc0c900350f297af1af79f610547"], ["created_at", "2015-03-19 15:57:26.636179"], ["updated_at", "2015-03-19 15:57:26.636179"]]
|
|
2835
|
+
[1m[36m (0.7ms)[0m [1mcommit transaction[0m
|
|
2836
|
+
Redirected to http://localhost:3000/
|
|
2837
|
+
Completed 302 Found in 19ms (ActiveRecord: 1.4ms)
|
|
2838
|
+
|
|
2839
|
+
|
|
2840
|
+
Started GET "/" for ::1 at 2015-03-20 00:57:26 +0900
|
|
2841
|
+
Processing by PagesController#index as HTML
|
|
2842
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
2843
|
+
Completed 200 OK in 14ms (Views: 13.4ms | ActiveRecord: 0.0ms)
|
|
2844
|
+
|
|
2845
|
+
|
|
2846
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:57:26 +0900
|
|
2847
|
+
|
|
2848
|
+
|
|
2849
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:57:26 +0900
|
|
2850
|
+
|
|
2851
|
+
|
|
2852
|
+
Started GET "/user/new_password_requests/new" for ::1 at 2015-03-20 00:57:32 +0900
|
|
2853
|
+
Processing by Nyauth::NewPasswordRequestsController#new as HTML
|
|
2854
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_password_requests/new.html.slim within layouts/application (1.7ms)
|
|
2855
|
+
Completed 200 OK in 19ms (Views: 18.6ms | ActiveRecord: 0.0ms)
|
|
2856
|
+
|
|
2857
|
+
|
|
2858
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:57:32 +0900
|
|
2859
|
+
|
|
2860
|
+
|
|
2861
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:57:32 +0900
|
|
2862
|
+
|
|
2863
|
+
|
|
2864
|
+
Started POST "/user/new_password_requests" for ::1 at 2015-03-20 00:57:34 +0900
|
|
2865
|
+
Processing by Nyauth::NewPasswordRequestsController#create as HTML
|
|
2866
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"lzyTPoOp1j8SJCdOV66XhcpMw32lNJgES3nKu7ZGHGbmnqSlnTRXTT9xMunOzxv8CUkJtiOPPTJai7VpNvTeSw==", "user"=>{"email"=>"b@hoge.com"}, "commit"=>"request new password"}
|
|
2867
|
+
[1m[35mUser Load (0.4ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? LIMIT 1 [["email", "b@hoge.com"]]
|
|
2868
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2869
|
+
[1m[35mSQL (0.4ms)[0m UPDATE "users" SET "new_password_key" = ?, "new_password_key_expired_at" = ?, "updated_at" = ? WHERE "users"."id" = ? [["new_password_key", "b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae"], ["new_password_key_expired_at", "2015-03-19 16:57:34.955899"], ["updated_at", "2015-03-19 15:57:34.957690"], ["id", 3]]
|
|
2870
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
|
2871
|
+
Redirected to http://localhost:3000/
|
|
2872
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_new_password.html.slim within layouts/nyauth/mailer (4.2ms)
|
|
2873
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/request_mailer/request_new_password.text.erb within layouts/nyauth/mailer (1.6ms)
|
|
2874
|
+
|
|
2875
|
+
Nyauth::RequestMailer#request_new_password: processed outbound mail in 146.3ms
|
|
2876
|
+
|
|
2877
|
+
Sent mail to b@hoge.com (7.8ms)
|
|
2878
|
+
Date: Fri, 20 Mar 2015 00:57:35 +0900
|
|
2879
|
+
From: from@example.com
|
|
2880
|
+
To: b@hoge.com
|
|
2881
|
+
Message-ID: <550af1ef1ed81_814a3ff3bc09e7ec9345d@mbpA1502.local.mail>
|
|
2882
|
+
Subject: Request new password
|
|
2883
|
+
Mime-Version: 1.0
|
|
2884
|
+
Content-Type: multipart/alternative;
|
|
2885
|
+
boundary="--==_mimepart_550af1ef1decb_814a3ff3bc09e7ec9331b";
|
|
2886
|
+
charset=UTF-8
|
|
2887
|
+
Content-Transfer-Encoding: 7bit
|
|
2888
|
+
|
|
2889
|
+
|
|
2890
|
+
----==_mimepart_550af1ef1decb_814a3ff3bc09e7ec9331b
|
|
2891
|
+
Content-Type: text/plain;
|
|
2892
|
+
charset=UTF-8
|
|
2893
|
+
Content-Transfer-Encoding: 7bit
|
|
2894
|
+
|
|
2895
|
+
Plese set your new password
|
|
2896
|
+
|
|
2897
|
+
http://localhost:3000/new_passwords/b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae/edit
|
|
2898
|
+
|
|
2899
|
+
|
|
2900
|
+
----==_mimepart_550af1ef1decb_814a3ff3bc09e7ec9331b
|
|
2901
|
+
Content-Type: text/html;
|
|
2902
|
+
charset=UTF-8
|
|
2903
|
+
Content-Transfer-Encoding: 7bit
|
|
2904
|
+
|
|
2905
|
+
<p>
|
|
2906
|
+
Plese set your new password
|
|
2907
|
+
</p>
|
|
2908
|
+
<p>
|
|
2909
|
+
<a href="http://localhost:3000/new_passwords/b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae/edit">set new password</a>
|
|
2910
|
+
</p>
|
|
2911
|
+
|
|
2912
|
+
----==_mimepart_550af1ef1decb_814a3ff3bc09e7ec9331b--
|
|
2913
|
+
|
|
2914
|
+
Completed 302 Found in 179ms (ActiveRecord: 1.9ms)
|
|
2915
|
+
|
|
2916
|
+
|
|
2917
|
+
Started GET "/" for ::1 at 2015-03-20 00:57:35 +0900
|
|
2918
|
+
Processing by PagesController#index as HTML
|
|
2919
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
2920
|
+
Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
|
2921
|
+
|
|
2922
|
+
|
|
2923
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:57:35 +0900
|
|
2924
|
+
|
|
2925
|
+
|
|
2926
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:57:35 +0900
|
|
2927
|
+
|
|
2928
|
+
|
|
2929
|
+
Started GET "/new_passwords/b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae/edit" for ::1 at 2015-03-20 00:57:55 +0900
|
|
2930
|
+
Processing by Nyauth::NewPasswordsController#edit as HTML
|
|
2931
|
+
Parameters: {"new_password_key"=>"[FILTERED]"}
|
|
2932
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users" WHERE "users"."new_password_key" = ? LIMIT 1 [["new_password_key", "b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae"]]
|
|
2933
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_passwords/edit.html.slim within layouts/application (4.5ms)
|
|
2934
|
+
Completed 200 OK in 24ms (Views: 21.9ms | ActiveRecord: 0.2ms)
|
|
2935
|
+
|
|
2936
|
+
|
|
2937
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:57:55 +0900
|
|
2938
|
+
|
|
2939
|
+
|
|
2940
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:57:55 +0900
|
|
2941
|
+
|
|
2942
|
+
|
|
2943
|
+
Started GET "/user/new_passwords/b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae/edit" for ::1 at 2015-03-20 00:57:59 +0900
|
|
2944
|
+
Processing by Nyauth::NewPasswordsController#edit as HTML
|
|
2945
|
+
Parameters: {"new_password_key"=>"[FILTERED]"}
|
|
2946
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."new_password_key" = ? LIMIT 1[0m [["new_password_key", "b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae"]]
|
|
2947
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/new_passwords/edit.html.slim within layouts/application (2.8ms)
|
|
2948
|
+
Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.1ms)
|
|
2949
|
+
|
|
2950
|
+
|
|
2951
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:57:59 +0900
|
|
2952
|
+
|
|
2953
|
+
|
|
2954
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:57:59 +0900
|
|
2955
|
+
|
|
2956
|
+
|
|
2957
|
+
Started PATCH "/user/new_passwords/b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae" for ::1 at 2015-03-20 00:58:10 +0900
|
|
2958
|
+
Processing by Nyauth::NewPasswordsController#update as HTML
|
|
2959
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"8DfinIQXe0ItcgeXIcJoWXQcQtgv42glkSoWWX0FyrmBldUHmor6MAAnEjC4o+QgtxmIE6lYzROA2GmL/bcIlA==", "user"=>{"password"=>"[FILTERED]", "password_confirmation"=>"[FILTERED]"}, "commit"=>"Update", "new_password_key"=>"[FILTERED]"}
|
|
2960
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."new_password_key" = ? LIMIT 1 [["new_password_key", "b8a017fe7c960e4bee47f00a3cbe39a5ae01740cb7a1fbe1c498d43d19b151ae"]]
|
|
2961
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
|
2962
|
+
[1m[35mSQL (0.5ms)[0m UPDATE "users" SET "password_salt" = ?, "password_digest" = ?, "new_password_key" = ?, "updated_at" = ? WHERE "users"."id" = ? [["password_salt", "3189a9b1b2667a0dd040d28391e33730d55d7f9ee15572699d1b5a37f5b67149488e4cb7c99a99d742e1e0280270a651f5c039936610171ba5754c7f9d1a4ab7a8c046d41bdc9eb5082c4690d0ee879f752274825d818ae2ae099aece08806a23194e4ce04e5ac8973b3e0f109e717f61b49292f3fa0fc7bba734efcee2c20560"], ["password_digest", "ecd0b461b7b510fb4120ee4ba3bc9e00738a86be68b0a101216292aa647cd18a"], ["new_password_key", nil], ["updated_at", "2015-03-19 15:58:10.954522"], ["id", 3]]
|
|
2963
|
+
[1m[36m (1.1ms)[0m [1mcommit transaction[0m
|
|
2964
|
+
Redirected to http://localhost:3000/user/session/new
|
|
2965
|
+
Completed 302 Found in 18ms (ActiveRecord: 1.8ms)
|
|
2966
|
+
|
|
2967
|
+
|
|
2968
|
+
Started GET "/user/session/new" for ::1 at 2015-03-20 00:58:10 +0900
|
|
2969
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
2970
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (7.2ms)
|
|
2971
|
+
Completed 200 OK in 28ms (Views: 26.0ms | ActiveRecord: 0.0ms)
|
|
2972
|
+
|
|
2973
|
+
|
|
2974
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for ::1 at 2015-03-20 00:58:11 +0900
|
|
2975
|
+
|
|
2976
|
+
|
|
2977
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for ::1 at 2015-03-20 00:58:11 +0900
|
|
2978
|
+
|
|
2979
|
+
|
|
2980
|
+
Started GET "/" for 127.0.0.1 at 2015-06-09 20:47:22 +0900
|
|
2981
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
2982
|
+
Processing by PagesController#index as HTML
|
|
2983
|
+
Rendered pages/index.html.slim within layouts/application (10.6ms)
|
|
2984
|
+
Completed 200 OK in 58ms (Views: 57.8ms | ActiveRecord: 0.0ms)
|
|
2985
|
+
|
|
2986
|
+
|
|
2987
|
+
Started GET "/" for 127.0.0.1 at 2015-06-09 20:47:23 +0900
|
|
2988
|
+
Processing by PagesController#index as HTML
|
|
2989
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
2990
|
+
Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
|
|
2991
|
+
|
|
2992
|
+
|
|
2993
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-09 20:47:23 +0900
|
|
2994
|
+
|
|
2995
|
+
|
|
2996
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-09 20:47:23 +0900
|
|
2997
|
+
|
|
2998
|
+
|
|
2999
|
+
Started GET "/session" for 127.0.0.1 at 2015-06-09 20:47:26 +0900
|
|
3000
|
+
|
|
3001
|
+
ActionController::RoutingError (No route matches [GET] "/session"):
|
|
3002
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
3003
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3004
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3005
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3006
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3007
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3008
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3009
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3010
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3011
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3012
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3013
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3014
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3015
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3016
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3017
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3018
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3019
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3020
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3021
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3022
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3023
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3024
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3025
|
+
|
|
3026
|
+
|
|
3027
|
+
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)
|
|
3028
|
+
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.1ms)
|
|
3029
|
+
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)
|
|
3030
|
+
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.6ms)
|
|
3031
|
+
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)
|
|
3032
|
+
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 (93.8ms)
|
|
3033
|
+
|
|
3034
|
+
|
|
3035
|
+
Started GET "/" for 127.0.0.1 at 2015-06-09 20:47:31 +0900
|
|
3036
|
+
Processing by PagesController#index as HTML
|
|
3037
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
3038
|
+
Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
|
3039
|
+
|
|
3040
|
+
|
|
3041
|
+
Started GET "/posts" for 127.0.0.1 at 2015-06-09 20:47:32 +0900
|
|
3042
|
+
Processing by PostsController#index as HTML
|
|
3043
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
|
3044
|
+
|
|
3045
|
+
|
|
3046
|
+
Started GET "/" for 127.0.0.1 at 2015-06-09 20:47:34 +0900
|
|
3047
|
+
Processing by PagesController#index as HTML
|
|
3048
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
3049
|
+
Completed 200 OK in 12ms (Views: 12.3ms | ActiveRecord: 0.0ms)
|
|
3050
|
+
|
|
3051
|
+
|
|
3052
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-09 20:47:43 +0900
|
|
3053
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3054
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (259.6ms)
|
|
3055
|
+
Completed 200 OK in 278ms (Views: 275.4ms | ActiveRecord: 0.0ms)
|
|
3056
|
+
|
|
3057
|
+
|
|
3058
|
+
Started POST "/admin/session" for 127.0.0.1 at 2015-06-09 20:47:45 +0900
|
|
3059
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
3060
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"0qivn0gJdpTWyQ1Qewl/M4IwRpF+MD479X1o1gflWpRUPTii0uMnCZvlQo0M+UJeS/bMsr4gdydcaXE2d66B0Q==", "session_service"=>{"email"=>"ppworks@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
3061
|
+
[1m[35mAdmin Load (0.4ms)[0m SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", "ppworks@example.com"]]
|
|
3062
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (2.3ms)
|
|
3063
|
+
Completed 200 OK in 44ms (Views: 16.8ms | ActiveRecord: 0.6ms)
|
|
3064
|
+
|
|
3065
|
+
|
|
3066
|
+
Started GET "/" for 127.0.0.1 at 2015-06-18 00:28:23 +0900
|
|
3067
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3068
|
+
Processing by PagesController#index as HTML
|
|
3069
|
+
Rendered pages/index.html.slim within layouts/application (18.0ms)
|
|
3070
|
+
Completed 200 OK in 120ms (Views: 120.1ms | ActiveRecord: 0.0ms)
|
|
3071
|
+
|
|
3072
|
+
|
|
3073
|
+
Started GET "/" for 127.0.0.1 at 2015-06-18 00:28:23 +0900
|
|
3074
|
+
Processing by PagesController#index as HTML
|
|
3075
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
3076
|
+
Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
|
3077
|
+
|
|
3078
|
+
|
|
3079
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-18 00:28:23 +0900
|
|
3080
|
+
|
|
3081
|
+
|
|
3082
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-18 00:28:23 +0900
|
|
3083
|
+
|
|
3084
|
+
|
|
3085
|
+
Started GET "/posts" for 127.0.0.1 at 2015-06-18 00:28:27 +0900
|
|
3086
|
+
Processing by PostsController#index as HTML
|
|
3087
|
+
Completed 200 OK in 0ms (ActiveRecord: 0.0ms)
|
|
3088
|
+
|
|
3089
|
+
|
|
3090
|
+
Started GET "/session" for 127.0.0.1 at 2015-06-18 00:28:29 +0900
|
|
3091
|
+
|
|
3092
|
+
ActionController::RoutingError (No route matches [GET] "/session"):
|
|
3093
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
3094
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3095
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3096
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3097
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3098
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3099
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3100
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3101
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3102
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3103
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3104
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3105
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3106
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3107
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3108
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3109
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3110
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3111
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3112
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3113
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3114
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3115
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3116
|
+
|
|
3117
|
+
|
|
3118
|
+
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)
|
|
3119
|
+
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.2ms)
|
|
3120
|
+
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.1ms)
|
|
3121
|
+
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.8ms)
|
|
3122
|
+
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.2ms)
|
|
3123
|
+
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 (99.6ms)
|
|
3124
|
+
|
|
3125
|
+
|
|
3126
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-18 00:28:39 +0900
|
|
3127
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3128
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (221.7ms)
|
|
3129
|
+
Completed 200 OK in 239ms (Views: 235.8ms | ActiveRecord: 0.0ms)
|
|
3130
|
+
|
|
3131
|
+
|
|
3132
|
+
Started GET "/admin/registration/new" for 127.0.0.1 at 2015-06-18 00:28:42 +0900
|
|
3133
|
+
Processing by Nyauth::RegistrationsController#new as HTML
|
|
3134
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/registrations/new.html.slim within layouts/application (7.1ms)
|
|
3135
|
+
Completed 200 OK in 35ms (Views: 25.2ms | ActiveRecord: 0.3ms)
|
|
3136
|
+
|
|
3137
|
+
|
|
3138
|
+
Started GET "/" for 127.0.0.1 at 2015-06-21 23:49:17 +0900
|
|
3139
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.3ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3140
|
+
Processing by PagesController#index as HTML
|
|
3141
|
+
Rendered pages/index.html.slim within layouts/application (10.6ms)
|
|
3142
|
+
Completed 200 OK in 60ms (Views: 59.6ms | ActiveRecord: 0.0ms)
|
|
3143
|
+
|
|
3144
|
+
|
|
3145
|
+
Started GET "/" for 127.0.0.1 at 2015-06-21 23:49:18 +0900
|
|
3146
|
+
Processing by PagesController#index as HTML
|
|
3147
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
3148
|
+
Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
|
|
3149
|
+
|
|
3150
|
+
|
|
3151
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-21 23:49:18 +0900
|
|
3152
|
+
|
|
3153
|
+
|
|
3154
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-21 23:49:18 +0900
|
|
3155
|
+
|
|
3156
|
+
|
|
3157
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-06-21 23:49:24 +0900
|
|
3158
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3159
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (244.6ms)
|
|
3160
|
+
Completed 200 OK in 263ms (Views: 260.7ms | ActiveRecord: 0.0ms)
|
|
3161
|
+
|
|
3162
|
+
|
|
3163
|
+
Started POST "/session/sessions" for 127.0.0.1 at 2015-06-21 23:49:40 +0900
|
|
3164
|
+
|
|
3165
|
+
ActionController::RoutingError (No route matches [POST] "/session/sessions"):
|
|
3166
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
3167
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3168
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3169
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3170
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3171
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3172
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3173
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3174
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3175
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3176
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3177
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3178
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3179
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3180
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3181
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3182
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3183
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3184
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3185
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3186
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3187
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3188
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3189
|
+
|
|
3190
|
+
|
|
3191
|
+
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)
|
|
3192
|
+
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)
|
|
3193
|
+
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.5ms)
|
|
3194
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/vendor/bundle/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (3.3ms)
|
|
3195
|
+
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.6ms)
|
|
3196
|
+
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 (93.9ms)
|
|
3197
|
+
|
|
3198
|
+
|
|
3199
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-06-21 23:49:42 +0900
|
|
3200
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3201
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.8ms)
|
|
3202
|
+
Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
|
|
3203
|
+
|
|
3204
|
+
|
|
3205
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-21 23:49:42 +0900
|
|
3206
|
+
|
|
3207
|
+
|
|
3208
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-21 23:49:42 +0900
|
|
3209
|
+
|
|
3210
|
+
|
|
3211
|
+
Started GET "/session/new" for 127.0.0.1 at 2015-06-21 23:54:15 +0900
|
|
3212
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3213
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (14551.4ms)
|
|
3214
|
+
Completed 200 OK in 14569ms (Views: 14567.0ms | ActiveRecord: 0.0ms)
|
|
3215
|
+
|
|
3216
|
+
|
|
3217
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-21 23:54:29 +0900
|
|
3218
|
+
|
|
3219
|
+
|
|
3220
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-21 23:54:29 +0900
|
|
3221
|
+
|
|
3222
|
+
|
|
3223
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:56:05 +0900
|
|
3224
|
+
|
|
3225
|
+
ActionController::RoutingError (No route matches [GET] "/admin/session/new"):
|
|
3226
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
|
3227
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3228
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3229
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3230
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3231
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3232
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3233
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3234
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3235
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3236
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3237
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3238
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3239
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3240
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3241
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3242
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3243
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3244
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3245
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3246
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3247
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3248
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3249
|
+
|
|
3250
|
+
|
|
3251
|
+
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.0ms)
|
|
3252
|
+
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)
|
|
3253
|
+
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.1ms)
|
|
3254
|
+
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.8ms)
|
|
3255
|
+
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.4ms)
|
|
3256
|
+
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 (83.4ms)
|
|
3257
|
+
|
|
3258
|
+
|
|
3259
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:56:15 +0900
|
|
3260
|
+
|
|
3261
|
+
ActionController::RoutingError (uninitialized constant Admin::SessionController):
|
|
3262
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
|
|
3263
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
|
|
3264
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
|
3265
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
|
3266
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
|
3267
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
|
3268
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
|
3269
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
|
3270
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
3271
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
3272
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
3273
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
3274
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
|
3275
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
|
3276
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
|
3277
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
3278
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
3279
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
|
3280
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
|
3281
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
3282
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
|
3283
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
|
3284
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
|
3285
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
3286
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
3287
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
3288
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
|
3289
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
3290
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
3291
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
3292
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
3293
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
3294
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3295
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3296
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3297
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3298
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3299
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3300
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3301
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3302
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3303
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3304
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3305
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3306
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3307
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3308
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3309
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3310
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3311
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3312
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3313
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3314
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3315
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3316
|
+
|
|
3317
|
+
|
|
3318
|
+
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)
|
|
3319
|
+
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)
|
|
3320
|
+
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)
|
|
3321
|
+
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)
|
|
3322
|
+
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)
|
|
3323
|
+
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 (80.9ms)
|
|
3324
|
+
|
|
3325
|
+
|
|
3326
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:56:24 +0900
|
|
3327
|
+
|
|
3328
|
+
ActionController::RoutingError (uninitialized constant SessionController):
|
|
3329
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `const_get'
|
|
3330
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:261:in `block in constantize'
|
|
3331
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
|
3332
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
|
3333
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
|
3334
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
|
3335
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
|
3336
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
|
3337
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
3338
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
3339
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
3340
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
3341
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
|
3342
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
|
3343
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
|
3344
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
3345
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
3346
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
|
3347
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
|
3348
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
3349
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
|
3350
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
|
3351
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
|
3352
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
3353
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
3354
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
3355
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
|
3356
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
3357
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
3358
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
3359
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
3360
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
3361
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3362
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3363
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3364
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3365
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3366
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3367
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3368
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3369
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3370
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3371
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3372
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3373
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3374
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3375
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3376
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3377
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3378
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3379
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3380
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3381
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3382
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3383
|
+
|
|
3384
|
+
|
|
3385
|
+
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)
|
|
3386
|
+
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)
|
|
3387
|
+
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)
|
|
3388
|
+
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)
|
|
3389
|
+
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)
|
|
3390
|
+
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.8ms)
|
|
3391
|
+
|
|
3392
|
+
|
|
3393
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:56:44 +0900
|
|
3394
|
+
|
|
3395
|
+
ActionController::RoutingError (uninitialized constant Nyauth::SessionController):
|
|
3396
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get'
|
|
3397
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize'
|
|
3398
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each'
|
|
3399
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject'
|
|
3400
|
+
activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize'
|
|
3401
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference'
|
|
3402
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller'
|
|
3403
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve'
|
|
3404
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve'
|
|
3405
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each'
|
|
3406
|
+
actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve'
|
|
3407
|
+
actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call'
|
|
3408
|
+
rack (1.6.0) lib/rack/etag.rb:24:in `call'
|
|
3409
|
+
rack (1.6.0) lib/rack/conditionalget.rb:25:in `call'
|
|
3410
|
+
rack (1.6.0) lib/rack/head.rb:13:in `call'
|
|
3411
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call'
|
|
3412
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call'
|
|
3413
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context'
|
|
3414
|
+
rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call'
|
|
3415
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call'
|
|
3416
|
+
activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call'
|
|
3417
|
+
activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call'
|
|
3418
|
+
activerecord (4.2.0) lib/active_record/migration.rb:378:in `call'
|
|
3419
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call'
|
|
3420
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call'
|
|
3421
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks'
|
|
3422
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks'
|
|
3423
|
+
activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks'
|
|
3424
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call'
|
|
3425
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call'
|
|
3426
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call'
|
|
3427
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call'
|
|
3428
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
|
3429
|
+
railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app'
|
|
3430
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call'
|
|
3431
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
|
3432
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged'
|
|
3433
|
+
activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged'
|
|
3434
|
+
railties (4.2.0) lib/rails/rack/logger.rb:20:in `call'
|
|
3435
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
|
3436
|
+
rack (1.6.0) lib/rack/methodoverride.rb:22:in `call'
|
|
3437
|
+
rack (1.6.0) lib/rack/runtime.rb:18:in `call'
|
|
3438
|
+
activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call'
|
|
3439
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3440
|
+
actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call'
|
|
3441
|
+
rack (1.6.0) lib/rack/sendfile.rb:113:in `call'
|
|
3442
|
+
railties (4.2.0) lib/rails/engine.rb:518:in `call'
|
|
3443
|
+
railties (4.2.0) lib/rails/application.rb:164:in `call'
|
|
3444
|
+
rack (1.6.0) lib/rack/lock.rb:17:in `call'
|
|
3445
|
+
rack (1.6.0) lib/rack/content_length.rb:15:in `call'
|
|
3446
|
+
rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service'
|
|
3447
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:138:in `service'
|
|
3448
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/httpserver.rb:94:in `run'
|
|
3449
|
+
/Users/koshikawa/.rbenv/versions/2.2.0/lib/ruby/2.2.0/webrick/server.rb:294:in `block in start_thread'
|
|
3450
|
+
|
|
3451
|
+
|
|
3452
|
+
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.2ms)
|
|
3453
|
+
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)
|
|
3454
|
+
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)
|
|
3455
|
+
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.7ms)
|
|
3456
|
+
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)
|
|
3457
|
+
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 (80.6ms)
|
|
3458
|
+
|
|
3459
|
+
|
|
3460
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:56:53 +0900
|
|
3461
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3462
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (157636.3ms)
|
|
3463
|
+
Completed 200 OK in 157655ms (Views: 157647.6ms | ActiveRecord: 0.0ms)
|
|
3464
|
+
|
|
3465
|
+
|
|
3466
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:59:31 +0900
|
|
3467
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3468
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1470.4ms)
|
|
3469
|
+
Completed 200 OK in 1486ms (Views: 1485.7ms | ActiveRecord: 0.0ms)
|
|
3470
|
+
|
|
3471
|
+
|
|
3472
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-21 23:59:32 +0900
|
|
3473
|
+
|
|
3474
|
+
|
|
3475
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-21 23:59:32 +0900
|
|
3476
|
+
|
|
3477
|
+
|
|
3478
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-21 23:59:38 +0900
|
|
3479
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3480
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (4.9ms)
|
|
3481
|
+
Completed 200 OK in 17ms (Views: 16.6ms | ActiveRecord: 0.0ms)
|
|
3482
|
+
|
|
3483
|
+
|
|
3484
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-21 23:59:38 +0900
|
|
3485
|
+
|
|
3486
|
+
|
|
3487
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-21 23:59:38 +0900
|
|
3488
|
+
|
|
3489
|
+
|
|
3490
|
+
Started POST "/admin/session/" for 127.0.0.1 at 2015-06-21 23:59:52 +0900
|
|
3491
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
3492
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"BPTrqA4xb8PLdWEw8LRj9bs6tmg6QA3yyl3bz+fBM5iiPzfohYvlZBFSeMh8y9IrngfoE5hUcOGk4tcIAIc2lg==", "session_service"=>{"email"=>"ppworks@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
3493
|
+
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "ppworks@example.com"]]
|
|
3494
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.3ms)
|
|
3495
|
+
Completed 200 OK in 43ms (Views: 13.6ms | ActiveRecord: 1.0ms)
|
|
3496
|
+
|
|
3497
|
+
|
|
3498
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-21 23:59:52 +0900
|
|
3499
|
+
|
|
3500
|
+
|
|
3501
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-21 23:59:52 +0900
|
|
3502
|
+
|
|
3503
|
+
|
|
3504
|
+
Started POST "/admin/session" for 127.0.0.1 at 2015-06-22 00:02:44 +0900
|
|
3505
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
3506
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"MMHHbthKs6i6UMHsMKTCU3cs4PhuZi3Q6EUZuh2VnbKWChsuU/A5D2B32BS823ONUhG+g8xyUMOG+hV9+tOYvA==", "session_service"=>{"email"=>"ppworks@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
3507
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1[0m [["email", "ppworks@example.com"]]
|
|
3508
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.5ms)
|
|
3509
|
+
Completed 200 OK in 35ms (Views: 17.3ms | ActiveRecord: 0.5ms)
|
|
3510
|
+
|
|
3511
|
+
|
|
3512
|
+
Started GET "/assets/application-5f1f3a0d9f2a8d9e8fcda8edadddaf68.js?body=1" for 127.0.0.1 at 2015-06-22 00:02:44 +0900
|
|
3513
|
+
|
|
3514
|
+
|
|
3515
|
+
Started GET "/assets/application-5266d2988799ecc8fe6e81eaab412e7d.css?body=1" for 127.0.0.1 at 2015-06-22 00:02:44 +0900
|
|
3516
|
+
[1m[36mAdmin Load (1.7ms)[0m [1mSELECT "admins".* FROM "admins"[0m
|
|
3517
|
+
|
|
3518
|
+
|
|
3519
|
+
Started GET "/" for 127.0.0.1 at 2015-06-23 00:12:35 +0900
|
|
3520
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
|
3521
|
+
Processing by PagesController#index as HTML
|
|
3522
|
+
Rendered pages/index.html.slim within layouts/application (8.5ms)
|
|
3523
|
+
Completed 200 OK in 51ms (Views: 50.4ms | ActiveRecord: 0.0ms)
|
|
3524
|
+
|
|
3525
|
+
|
|
3526
|
+
Started GET "/" for 127.0.0.1 at 2015-06-23 00:12:35 +0900
|
|
3527
|
+
Processing by PagesController#index as HTML
|
|
3528
|
+
Rendered pages/index.html.slim within layouts/application (0.0ms)
|
|
3529
|
+
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
|
|
3530
|
+
|
|
3531
|
+
|
|
3532
|
+
Started GET "/admin/session/new" for 127.0.0.1 at 2015-06-23 00:12:39 +0900
|
|
3533
|
+
Processing by Nyauth::SessionsController#new as HTML
|
|
3534
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (246.2ms)
|
|
3535
|
+
Completed 200 OK in 271ms (Views: 268.5ms | ActiveRecord: 0.0ms)
|
|
3536
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
3537
|
+
[1m[36mSQL (1.5ms)[0m [1mINSERT INTO "admins" ("email", "password_salt", "password_digest", "created_at", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["email", "hoge@example.com"], ["password_salt", "27364dfecd3c589d76b1477868362f87b1b24b20e71610cab9dcc68d3b7847ec2e900877ac675020ee7e82ffc6ffe8869ff764e73d898ccd6cd2f7090f392571b7da3dd395a05a38ec84a19081ed74136727398bf284dff5a28c8b17efdb7c4570944448b92f94465738e4dc3650348803567af5ab39994c9935979acbf2da22"], ["password_digest", "7692f9898e16568562f32adabb24844feee7b330194b5f40ff1cfa0dac285183"], ["created_at", "2015-06-22 15:13:00.282081"], ["updated_at", "2015-06-22 15:13:00.282081"]]
|
|
3538
|
+
[1m[35m (2.6ms)[0m commit transaction
|
|
3539
|
+
|
|
3540
|
+
|
|
3541
|
+
Started POST "/admin/session/" for 127.0.0.1 at 2015-06-23 00:13:08 +0900
|
|
3542
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
3543
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"k6QFpeW2OZSCvjLy8bm7MsHPbgkoT4c8VDn0mzHPtqk1b9nlbgyzM1iZKwp9xgrs5PIwcopb+i86hvhc1omzpw==", "session_service"=>{"email"=>"hoge@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
3544
|
+
[1m[35mUser Load (0.5ms)[0m SELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1 [["email", "hoge@example.com"]]
|
|
3545
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.5ms)
|
|
3546
|
+
Completed 200 OK in 48ms (Views: 15.3ms | ActiveRecord: 1.0ms)
|
|
3547
|
+
|
|
3548
|
+
|
|
3549
|
+
Started POST "/admin/session" for 127.0.0.1 at 2015-06-23 00:13:34 +0900
|
|
3550
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
3551
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"IaiYdJid8kdiB++C4QrL9gUiAQSlPiVB2tx4tBlcT8SHY0Q0Eyd44Lgg9nptdXooIB9ffwcqWFK0Y3Rz/hpKyg==", "session_service"=>{"email"=>"hoge@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
3552
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."email" = ? ORDER BY "users"."id" DESC LIMIT 1[0m [["email", "hoge@example.com"]]
|
|
3553
|
+
Rendered /Users/koshikawa/repository/github.com/ppworks/nyauth/app/views/nyauth/sessions/new.html.slim within layouts/application (1.5ms)
|
|
3554
|
+
Completed 200 OK in 92714ms (Views: 16.2ms | ActiveRecord: 0.6ms)
|
|
3555
|
+
|
|
3556
|
+
|
|
3557
|
+
Started POST "/admin/session" for 127.0.0.1 at 2015-06-23 00:15:13 +0900
|
|
3558
|
+
Processing by Nyauth::SessionsController#create as HTML
|
|
3559
|
+
Parameters: {"utf8"=>"✓", "authenticity_token"=>"RCoOFkG62k0O6hm4GYeFUMshKbzWoIg3Q+wPs67Saxbi4dJWygBQ6tTNAECV+DSO7hx3x3S09SQtUwN0SZRuGA==", "session_service"=>{"email"=>"hoge@example.com", "password"=>"[FILTERED]"}, "commit"=>"Sign in"}
|
|
3560
|
+
[1m[35mAdmin Load (0.3ms)[0m SELECT "admins".* FROM "admins" WHERE "admins"."email" = ? ORDER BY "admins"."id" DESC LIMIT 1 [["email", "hoge@example.com"]]
|
|
3561
|
+
Redirected to http://www.lvh.me:3000/
|
|
3562
|
+
Completed 302 Found in 22326ms (ActiveRecord: 0.9ms)
|
|
3563
|
+
|
|
3564
|
+
|
|
3565
|
+
Started GET "/" for 127.0.0.1 at 2015-06-23 00:15:35 +0900
|
|
3566
|
+
Processing by PagesController#index as HTML
|
|
3567
|
+
Rendered pages/index.html.slim within layouts/application (0.1ms)
|
|
3568
|
+
Completed 200 OK in 20ms (Views: 19.5ms | ActiveRecord: 0.0ms)
|