[1m[36m (3.1ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar NOT NULL) [0m [1m[35m (0.1ms)[0m select sqlite_version(*) [1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations"
Migrating to CreateUsers
(20141215045143)
[1m[36m (0.1ms)[0m [1mbegin transaction[0m [1m[35m (0.5ms)[0m CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "username" varchar, "email" varchar, "password" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [1m[36mSQL (0.1ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES (?)[0m [["version", "20141215045143"]] [1m[35m (0.8ms)[0m commit transaction
Migrating to CreatePosts
(20141215051632)
[1m[36m (0.0ms)[0m [1mbegin transaction[0m [1m[35m (0.3ms)[0m CREATE TABLE "posts" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "user_id" integer, "title" varchar, "body" varchar, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [1m[36m (0.1ms)[0m [1mCREATE INDEX "index_posts_on_user_id" ON "posts" ("user_id")[0m [1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141215051632"]] [1m[36m (0.8ms)[0m [1mcommit transaction[0m
Migrating to AddAuthenticationTokenToUsers
(20150114203236)
[1m[35m (0.1ms)[0m begin transaction [1m[36m (0.3ms)[0m [1mALTER TABLE "users" ADD "authentication_token" varchar[0m [1m[35mSQL (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150114203236"]] [1m[36m (0.7ms)[0m [1mcommit transaction[0m [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations" [1m[36m (0.1ms)[0m [1m SELECT sql FROM sqlite_master WHERE name='index_posts_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_posts_on_user_id' AND type='index'
[0m
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddDeviseToUsers
(20150114204523)
[1m[35m (0.1ms)[0m begin transaction [1m[36m (0.2ms)[0m [1mALTER TABLE "users" ADD "email" varchar DEFAULT '' NOT NULL[0m
SQLite3::SQLException: duplicate column name: email: ALTER TABLE “users” ADD “email” varchar DEFAULT '' NOT NULL
[1m[35m (0.0ms)[0m rollback transaction [1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Migrating to AddDeviseToUsers
(20150114204523)
[1m[35m (0.1ms)[0m begin transaction [1m[36m (0.4ms)[0m [1mALTER TABLE "users" ADD "encrypted_password" varchar DEFAULT '' NOT NULL[0m [1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "reset_password_token" varchar [1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "reset_password_sent_at" datetime[0m [1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "remember_created_at" datetime [1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "sign_in_count" integer DEFAULT 0 NOT NULL[0m [1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "current_sign_in_at" datetime [1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "last_sign_in_at" datetime[0m [1m[35m (0.1ms)[0m ALTER TABLE "users" ADD "current_sign_in_ip" varchar [1m[36m (0.1ms)[0m [1mALTER TABLE "users" ADD "last_sign_in_ip" varchar[0m [1m[35m (0.1ms)[0m select sqlite_version(*) [1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_email" ON "users" ("email")[0m [1m[35m (0.1ms)[0m SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index' [1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "index_users_on_reset_password_token" ON "users" ("reset_password_token")[0m [1m[35mSQL (0.2ms)[0m INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20150114204523"]] [1m[36m (2.0ms)[0m [1mcommit transaction[0m [1m[35mActiveRecord::SchemaMigration Load (0.1ms)[0m SELECT "schema_migrations".* FROM "schema_migrations" [1m[36m (0.1ms)[0m [1m SELECT sql FROM sqlite_master WHERE name='index_posts_on_user_id' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_posts_on_user_id' AND type='index'
[0m
[1m[35m (0.1ms)[0m SELECT sql FROM sqlite_master WHERE name='index_users_on_reset_password_token' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_reset_password_token' AND type='index' [1m[36m (0.1ms)[0m [1m SELECT sql FROM sqlite_master WHERE name='index_users_on_email' AND type='index' UNION ALL SELECT sql FROM sqlite_temp_master WHERE name='index_users_on_email' AND type='index'
[0m
Started GET “/” for 127.0.0.1 at 2015-01-14 22:56:36 -0600
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by Rails::WelcomeController#index as HTML
Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/railties-4.2.0/lib/rails/templates/rails/welcome/index.html.erb (2.3ms)
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
Started GET “/posts” for 127.0.0.1 at 2015-01-14 22:58:47 -0600 Processing by PostsController#index
as HTML
Rendered posts/index.html.erb within layouts/application (0.4ms)
Completed 200 OK in 57ms (Views: 51.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/api/posts-cd88f31488e05ff408c89482270cd472.css?body=1” for 127.0.0.1 at 2015-01-14 22:58:48 -0600
Started GET “/assets/application-832965ef535b3c17fb91dab53befb3e8.css?body=1” for 127.0.0.1 at 2015-01-14 22:58:48 -0600
Started GET “/assets/api/posts-520f000de9c4179bc5a11504b602dff1.js?body=1” for 127.0.0.1 at 2015-01-14 22:58:48 -0600
Started GET “/assets/application-76dc34890359ce0818f594ca04108c5b.js?body=1” for 127.0.0.1 at 2015-01-14 22:58:48 -0600
Started GET “/feedback/new” for 127.0.0.1 at 2015-01-14 23:02:54 -0600
ActionController::RoutingError (No route matches [GET] “/feedback/new”):
actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.8ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.6ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.1ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (9.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (50.4ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:03:21 -0600
ActionController::RoutingError (uninitialized constant Metova::FeedbacksController):
activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `const_get' activesupport (4.2.0) lib/active_support/inflector/methods.rb:263:in `block in constantize' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `each' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `inject' activesupport (4.2.0) lib/active_support/inflector/methods.rb:259:in `constantize' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:69:in `controller_reference' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:59:in `controller' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:38:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (61.1ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (2.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_route.html.erb (0.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/routes/_table.html.erb (1.5ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (101.1ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:03:42 -0600 Processing by Metova::FeedbacksController#new as HTML Completed 500 Internal Server Error in 1ms
NameError (uninitialized constant Metova::Feedback):
/workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:5:in `new' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (5.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (19.2ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:04:03 -0600 Processing by Metova::FeedbacksController#new as HTML Completed 500 Internal Server Error in 1ms
NameError (uninitialized constant Metova::Feedback):
/workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:5:in `new' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.7ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.0ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:04:13 -0600 Processing by Metova::FeedbacksController#new as HTML Completed 500 Internal Server Error in 1ms
NameError (uninitialized constant Metova::Feedback):
/workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:5:in `new' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (4.9ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (16.3ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:05:00 -0600
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
Processing by Metova::FeedbacksController#new as HTML Completed 500 Internal Server Error in 8ms
ActionView::MissingTemplate (Missing template metova/feedbacks/new, metova/application/new with {:locale=>, :formats=>, :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
* "/workspace/metova-rails/spec/dummy/app/views" * "/Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/devise-3.4.1/app/views" * "/Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/kaminari-0.16.1/app/views" * "/workspace/metova-rails/app/views"
):
actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:18:in `find_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:40:in `determine_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:8:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.6ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (8.6ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/missing_template.html.erb within rescues/layout (29.5ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:05:36 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (0.4ms)
Completed 200 OK in 19ms (Views: 19.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-823e88bf1231c4323ee1d35731d8f1b6.css?body=1” for 127.0.0.1 at 2015-01-14 23:05:36 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:05:36 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:09:13 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (9.0ms)
Completed 500 Internal Server Error in 12ms
ActionView::Template::Error (undefined method `feedbacks_path' for #<#<Class:0x007fac6f0933f0>:0x007fac6ee11820>):
1: <%= form_for @feedback do |f| %> 2: <%= f.text_area :body %> 3: <% end %> actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:220:in `polymorphic_method' actionpack (4.2.0) lib/action_dispatch/routing/polymorphic_routes.rb:134:in `polymorphic_path' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:466:in `apply_form_for_options!' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:434:in `form_for' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:1:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189285651060' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (37.7ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.8ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (50.4ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:09:31 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (10.1ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined local variable or method `metova_feedbacks_path' for #<#<Class:0x007fac6f0933f0>:0x007fac74b45690>):
1: <%= form_for @feedback, url: metova_feedbacks_path do |f| %> 2: <%= f.text_area :body %> 3: <% end %> /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:1:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189334524680' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.2ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:09:46 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (9.7ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (undefined local variable or method `metova_feedback_path' for #<#<Class:0x007fac6f0933f0>:0x007fac6c3ce748>):
1: <%= form_for @feedback, url: metova_feedback_path do |f| %> 2: <%= f.text_area :body %> 3: <% end %> /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:1:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189265681480' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.7ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (18.3ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:09:58 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (11.2ms)
Completed 500 Internal Server Error in 15ms
ActionView::Template::Error (undefined method `body' for #<Metova::Feedback:0x007fac6d5b3670>):
1: <%= form_for @feedback, url: metova.feedback_path do |f| %> 2: <%= f.text_area :body %> 3: <% end %> actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `public_send' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:37:in `value_before_type_cast' actionview (4.2.0) lib/action_view/helpers/tags/text_area.rb:17:in `block in render' actionview (4.2.0) lib/action_view/helpers/tags/text_area.rb:17:in `delete' actionview (4.2.0) lib/action_view/helpers/tags/text_area.rb:17:in `render' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:886:in `text_area' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:1322:in `text_area' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:2:in `block in __workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189272891800' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:1:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189272891800' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.1ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:11:04 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.7ms)
Completed 500 Internal Server Error in 14ms
LoadError (cannot load such file – sass
(in /workspace/metova-rails/app/assets/stylesheets/metova/application.scss)): activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require' activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `block in require' activesupport (4.2.0) lib/active_support/dependencies.rb:240:in `load_dependency' activesupport (4.2.0) lib/active_support/dependencies.rb:274:in `require' tilt (1.4.1) lib/tilt/template.rb:144:in `require_template_library' sprockets (2.12.3) lib/sprockets/sass_template.rb:20:in `initialize_engine' tilt (1.4.1) lib/tilt/template.rb:56:in `initialize' sprockets (2.12.3) lib/sprockets/context.rb:196:in `new' sprockets (2.12.3) lib/sprockets/context.rb:196:in `block in evaluate' sprockets (2.12.3) lib/sprockets/context.rb:194:in `each' sprockets (2.12.3) lib/sprockets/context.rb:194:in `evaluate' sprockets (2.12.3) lib/sprockets/processed_asset.rb:12:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:374:in `new' sprockets (2.12.3) lib/sprockets/base.rb:374:in `block in build_asset' sprockets (2.12.3) lib/sprockets/base.rb:395:in `circular_call_protection' sprockets (2.12.3) lib/sprockets/base.rb:373:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/bundled_asset.rb:16:in `initialize' sprockets (2.12.3) lib/sprockets/base.rb:377:in `new' sprockets (2.12.3) lib/sprockets/base.rb:377:in `build_asset' sprockets (2.12.3) lib/sprockets/index.rb:94:in `block in build_asset' sprockets (2.12.3) lib/sprockets/caching.rb:58:in `cache_asset' sprockets (2.12.3) lib/sprockets/index.rb:93:in `build_asset' sprockets (2.12.3) lib/sprockets/base.rb:287:in `find_asset' sprockets (2.12.3) lib/sprockets/index.rb:61:in `find_asset' sprockets (2.12.3) lib/sprockets/environment.rb:75:in `find_asset' sprockets (2.12.3) lib/sprockets/base.rb:295:in `[]' sprockets-rails (2.2.2) lib/sprockets/rails/helper.rb:230:in `lookup_asset_for_path' sprockets-rails (2.2.2) lib/sprockets/rails/helper.rb:190:in `check_errors_for' sprockets-rails (2.2.2) lib/sprockets/rails/helper.rb:159:in `block in stylesheet_link_tag' sprockets-rails (2.2.2) lib/sprockets/rails/helper.rb:158:in `map' sprockets-rails (2.2.2) lib/sprockets/rails/helper.rb:158:in `stylesheet_link_tag' /workspace/metova-rails/app/views/layouts/metova/application.html.erb:5:in `__workspace_metova_rails_app_views_layouts_metova_application_html_erb___3705283862917990863_70189306771020' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:66:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (11.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.7ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:12:14 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms)
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-e1bddfbb8122503ce9baeb1173d28ff9.css?body=1” for 127.0.0.1 at 2015-01-14 23:12:14 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:12:14 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:13:50 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.3ms)
Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:13:50 -0600
Started GET “/assets/metova/application-fc0f55850e3b3caa1e0680ba1587340c.css?body=1” for 127.0.0.1 at 2015-01-14 23:13:50 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:13:50 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:21:43 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms)
Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:21:43 -0600
Started GET “/assets/metova/application-5100eacb47828255dfdbdd213354dd99.css?body=1” for 127.0.0.1 at 2015-01-14 23:21:43 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:21:43 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:21:51 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:21:51 -0600
Started GET “/assets/metova/application-5d876b308079ee3760b6affec479c493.css?body=1” for 127.0.0.1 at 2015-01-14 23:21:51 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:21:51 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:21:59 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.8ms)
Completed 200 OK in 21ms (Views: 20.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:21:59 -0600
Started GET “/assets/metova/application-bfcb5b541a9c525cd3c76ae6aa64826c.css?body=1” for 127.0.0.1 at 2015-01-14 23:21:59 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:21:59 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:22:54 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.0ms)
Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:22:54 -0600
Started GET “/assets/metova/application-b58dd08a222d27d0f3be9a8578dd1386.css?body=1” for 127.0.0.1 at 2015-01-14 23:22:54 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:22:54 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:23:25 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.3ms)
Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-32f98dbfb9a7be6e62f37e9e4cc6e9da.css?body=1” for 127.0.0.1 at 2015-01-14 23:23:25 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:23:25 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:23:25 -0600
Started GET “/assets/metova/application-15c474192f2161212bb26ce85654cc46.css?body=1” for 127.0.0.1 at 2015-01-14 23:23:25 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:24:07 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms)
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-c4443374330ab6bcfcfaa5355476bcf5.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:07 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:07 -0600
Started GET “/assets/metova/application-8704621a3e6ad329e0a1b043354482e0.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:07 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:24:07 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:24:19 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.2ms)
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-c76ac134f16a7d47dae510e8b0b32614.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:19 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:19 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:24:19 -0600
Started GET “/assets/metova/application-43ec0f97064c3674d3b353bb9655e9db.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:19 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:24:34 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 33ms (Views: 33.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-8e8e2a4a57bc421d87d1157c160f3180.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:34 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:34 -0600
Started GET “/assets/metova/application-28a39aae43d871e1bb63f009d031fd4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:24:34 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:24:34 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:25:26 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms)
Completed 200 OK in 18ms (Views: 17.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-8e8e2a4a57bc421d87d1157c160f3180.css?body=1” for 127.0.0.1 at 2015-01-14 23:25:26 -0600
Started GET “/assets/metova/application-28a39aae43d871e1bb63f009d031fd4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:25:26 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:25:26 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:25:26 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:26:12 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.1ms)
Completed 200 OK in 27ms (Views: 27.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-e5c92910077427f6e5bedca86d869311.css?body=1” for 127.0.0.1 at 2015-01-14 23:26:12 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:26:12 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:26:12 -0600
Started GET “/assets/metova/application-8be36350090ecab3e7569ca7c0511021.css?body=1” for 127.0.0.1 at 2015-01-14 23:26:12 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:26:53 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms)
Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-78d5aa24b925fea1efacfd0c0368b6e6.css?body=1” for 127.0.0.1 at 2015-01-14 23:26:53 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:26:53 -0600
Started GET “/assets/metova/application-8e476fce4a7a16909b66b196babe707f.css?body=1” for 127.0.0.1 at 2015-01-14 23:26:53 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:26:53 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:28:13 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.0ms)
Completed 200 OK in 34ms (Views: 33.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-54bd454fa1079f43adce2952d6979983.css?body=1” for 127.0.0.1 at 2015-01-14 23:28:13 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:28:13 -0600
Started GET “/assets/metova/application-f98b1ac8c7176065eaa83f38e7476cda.css?body=1” for 127.0.0.1 at 2015-01-14 23:28:13 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:28:13 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:28:21 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:29:25 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.8ms)
Completed 200 OK in 25ms (Views: 24.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-54bd454fa1079f43adce2952d6979983.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:25 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:25 -0600
Started GET “/assets/metova/application-91902e2990eb6c1ed0d60405a23908a7.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:25 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:29:25 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:29:36 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.1ms)
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-52ae9ed18f5404a6f5376d5430326ca0.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:36 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:36 -0600
Started GET “/assets/metova/application-50dacfcc0998dcce0e294895acbba608.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:36 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:29:36 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:29:46 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 28ms (Views: 28.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-584da2d02c6d09afb40531d512342380.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:46 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:47 -0600
Started GET “/assets/metova/application-91a06373319768ba71eaa44dfd910e7c.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:47 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:29:47 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:29:53 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 29ms (Views: 29.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-0e3adceeec397d8578e01cb4d97f2d83.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:53 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:53 -0600
Started GET “/assets/metova/application-35a59e4d90a5795bf2a383de9b393111.css?body=1” for 127.0.0.1 at 2015-01-14 23:29:53 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:29:53 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-14 23:30:19 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-131028bd4337ae603e12e258003ead71.css?body=1” for 127.0.0.1 at 2015-01-14 23:30:19 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-14 23:30:19 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-14 23:30:19 -0600
Started GET “/assets/metova/application-c9915fa84e71da12e14aefe23617a38f.css?body=1” for 127.0.0.1 at 2015-01-14 23:30:19 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:15:50 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (6.6ms)
Completed 500 Internal Server Error in 14ms
ActionView::Template::Error (undefined method `type' for #<Metova::Feedback:0x007fac6c5784e0>):
1: <%= form_for @feedback, url: metova.feedback_path do |f| %> 2: <h1 class="helvetica">Submit Feedback</h1> 3: <%= f.select :type, ['Bug report', 'Feature request'] %> 4: <%= f.text_area :body %> 5: <%= f.submit 'Submit', class: 'helvetica' %> 6: <% end %> actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `public_send' actionview (4.2.0) lib/action_view/helpers/tags/base.rb:28:in `value' actionview (4.2.0) lib/action_view/helpers/tags/select.rb:16:in `block in render' actionview (4.2.0) lib/action_view/helpers/tags/select.rb:16:in `fetch' actionview (4.2.0) lib/action_view/helpers/tags/select.rb:16:in `render' actionview (4.2.0) lib/action_view/helpers/form_options_helper.rb:163:in `select' actionview (4.2.0) lib/action_view/helpers/form_options_helper.rb:777:in `select' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:3:in `block in __workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189285820440' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:1:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189285820440' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:10:in `default_render' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:5:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:25:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (9.1ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.3ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (42.0ms)
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:16:15 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.8ms)
Completed 200 OK in 20ms (Views: 18.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-131028bd4337ae603e12e258003ead71.css?body=1” for 127.0.0.1 at 2015-01-15 10:16:15 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:16:15 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:16:15 -0600
Started GET “/assets/metova/application-c9915fa84e71da12e14aefe23617a38f.css?body=1” for 127.0.0.1 at 2015-01-15 10:16:15 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:16:44 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.2ms)
Completed 200 OK in 17ms (Views: 17.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-131028bd4337ae603e12e258003ead71.css?body=1” for 127.0.0.1 at 2015-01-15 10:16:44 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:16:44 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:16:44 -0600
Started GET “/assets/metova/application-c9915fa84e71da12e14aefe23617a38f.css?body=1” for 127.0.0.1 at 2015-01-15 10:16:44 -0600
Started GET “/assets/metova/feedbacks-131028bd4337ae603e12e258003ead71.css?body=1” for 127.0.0.1 at 2015-01-15 10:17:38 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:17:38 -0600
Started GET “/assets/metova/application-c9915fa84e71da12e14aefe23617a38f.css?body=1” for 127.0.0.1 at 2015-01-15 10:17:38 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:19:19 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.1ms)
Completed 200 OK in 35ms (Views: 34.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-f3775ef0a17738a1c85211a8bb989700.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:19 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:19 -0600
Started GET “/assets/metova/application-63ba4c112062bac51f998b4b43aa8842.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:19 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:19:19 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:19:29 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 27ms (Views: 27.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-bcf470c88b1434ab549ccabb5e0e8668.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:29 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:29 -0600
Started GET “/assets/metova/application-bf5a0c0fe3c03866dcb8369728604522.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:29 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:19:29 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:19:37 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.8ms)
Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-64f2ca2dc59164df1e77b43917d3d037.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:37 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:37 -0600
Started GET “/assets/metova/application-fb4a2fd4464b73d9eff993cd9402f1f7.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:37 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:19:37 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:19:45 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 27ms (Views: 26.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-04a109f78a75111d6c16afa275d26787.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:45 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:45 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:19:45 -0600
Started GET “/assets/metova/application-c63a5893811ddb151d0225bba3be9782.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:45 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:19:57 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.5ms)
Completed 200 OK in 27ms (Views: 26.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-91a968b1a6f20f5d78c8c4c83f56c4e7.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:57 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:57 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:19:57 -0600
Started GET “/assets/metova/application-d388c883d1e88c54e28dda740dab294f.css?body=1” for 127.0.0.1 at 2015-01-15 10:19:57 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:20:15 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 27ms (Views: 26.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks-5f196fe5f0610ce445890fc9dea65d1b.css?body=1” for 127.0.0.1 at 2015-01-15 10:20:15 -0600
Started GET “/assets/metova/normalize-9c33bd1e61a480be599860ef1e249d4c.css?body=1” for 127.0.0.1 at 2015-01-15 10:20:15 -0600
Started GET “/assets/metova/application-da9a294414b20e47f0343d6a3f463a04.css?body=1” for 127.0.0.1 at 2015-01-15 10:20:15 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:20:15 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:20:56 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.3ms)
Completed 200 OK in 18ms (Views: 18.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-07ea9d4a0d15b73aa3e0cec26c64bae2.css?body=1” for 127.0.0.1 at 2015-01-15 10:20:56 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:20:56 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 10:20:56 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 10:20:56 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 10:25:03 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-07ea9d4a0d15b73aa3e0cec26c64bae2.css?body=1” for 127.0.0.1 at 2015-01-15 10:25:04 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 10:25:04 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 10:25:04 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 10:25:04 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:13:45 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.3ms)
Completed 200 OK in 13ms (Views: 12.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-07ea9d4a0d15b73aa3e0cec26c64bae2.css?body=1” for 127.0.0.1 at 2015-01-15 14:13:45 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:13:45 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:13:45 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:13:45 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:14:01 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.6ms)
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-07ea9d4a0d15b73aa3e0cec26c64bae2.css?body=1” for 127.0.0.1 at 2015-01-15 14:14:01 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:14:01 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:14:01 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:14:01 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:14:06 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.6ms)
Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-07ea9d4a0d15b73aa3e0cec26c64bae2.css?body=1” for 127.0.0.1 at 2015-01-15 14:14:06 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:14:06 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:14:06 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:14:06 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:14:40 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.8ms)
Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-07ea9d4a0d15b73aa3e0cec26c64bae2.css?body=1” for 127.0.0.1 at 2015-01-15 14:14:40 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:14:40 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:14:40 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:14:40 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:16:20 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.0ms)
Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:16:20 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:16:20 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:16:20 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:16:20 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:16:36 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:16:36 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:16:36 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:16:36 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:16:36 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:17:51 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.3ms)
Completed 200 OK in 11ms (Views: 11.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:17:51 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:17:51 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:17:51 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:17:51 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:18:05 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.0ms)
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:18:05 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:18:05 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:18:05 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:18:05 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:18:14 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 11ms (Views: 11.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:18:14 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:18:14 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:18:15 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:18:15 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:18:21 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.6ms)
Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:18:21 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:18:21 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:18:21 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:18:21 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:18:25 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:18:25 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:18:25 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:18:25 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:18:25 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:18:33 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.0ms)
Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:18:33 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:18:33 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:18:33 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:18:33 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:18:44 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:18:44 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:18:44 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:18:44 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:18:44 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:20:40 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms)
Completed 200 OK in 12ms (Views: 11.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:20:40 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:20:40 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:20:40 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:20:40 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:21:01 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.0ms)
Completed 200 OK in 12ms (Views: 11.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:21:01 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:21:01 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:21:01 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:21:01 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:21:07 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:21:07 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:21:07 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:21:07 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:21:07 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:21:23 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.7ms)
Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:21:23 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:21:23 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:21:24 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:21:24 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:21:28 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.1ms)
Completed 200 OK in 12ms (Views: 11.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:21:28 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:21:28 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:21:28 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:21:28 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:21:49 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.8ms)
Completed 200 OK in 12ms (Views: 11.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:21:49 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:21:49 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:21:49 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:21:49 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 14:21:56 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.9ms)
Completed 200 OK in 11ms (Views: 11.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 14:21:56 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 14:21:56 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 14:21:56 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 14:21:56 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 14:59:51 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"gcCeTmTdsHKEPUpAaID59FEm+tAWVJzcj+nm4z+5wQh9NidkWY+KdFg/aH/KO2I5y+uQmBJnDBiFAoyvld2ntw==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"}
Completed 500 Internal Server Error in 2ms
NoMethodError (undefined method `valid?' for nil:NilClass):
/workspace/metova-rails/app/models/metova/feedback.rb:18:in `submit!' /workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:12:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.6ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.6ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (24.2ms)
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:00:03 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"gcCeTmTdsHKEPUpAaID59FEm+tAWVJzcj+nm4z+5wQh9NidkWY+KdFg/aH/KO2I5y+uQmBJnDBiFAoyvld2ntw==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"}
Completed 500 Internal Server Error in 2ms
RuntimeError (In order to use respond_with, first you need to declare the formats your controller responds to in the class level.):
responders (2.0.2) lib/action_controller/respond_with.rb:190:in `respond_with' /workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:13:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (6.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/diagnostics.html.erb within rescues/layout (18.2ms)
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:00:15 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"gcCeTmTdsHKEPUpAaID59FEm+tAWVJzcj+nm4z+5wQh9NidkWY+KdFg/aH/KO2I5y+uQmBJnDBiFAoyvld2ntw==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.0ms)
Completed 200 OK in 16ms (Views: 11.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 15:00:15 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:00:15 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:00:15 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:00:15 -0600
Started GET “/metova/feedback/new” for 127.0.0.1 at 2015-01-15 15:03:31 -0600 Processing by Metova::FeedbacksController#new as HTML
Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms)
Completed 200 OK in 19ms (Views: 17.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 15:03:31 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:03:31 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:03:31 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:03:31 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:03:39 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (2.8ms)
Completed 200 OK in 14ms (Views: 11.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 15:03:39 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:03:39 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:03:39 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:03:39 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:04:15 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (14.9ms)
Completed 500 Internal Server Error in 20ms
ActionView::Template::Error (undefined method `error_messages' for #<ActionView::Helpers::FormBuilder:0x007fac716a6470>):
1: <div id="feedback"> 2: <%= form_for @feedback, url: metova.feedback_path do |f| %> 3: <h1 class="raleway">Submit Feedback</h1> 4: <%= f.error_messages %> 5: <%= f.select :type, @feedback.types.to_a %> 6: <%= f.text_area :body %> 7: <%= f.submit 'Submit', class: 'raleway' %> /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:4:in `block in __workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189288551860' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:2:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189288551860' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' responders (2.0.2) lib/action_controller/responder.rb:145:in `render' responders (2.0.2) lib/action_controller/responder.rb:201:in `navigation_behavior' responders (2.0.2) lib/action_controller/responder.rb:172:in `rescue in to_html' responders (2.0.2) lib/action_controller/responder.rb:170:in `to_html' responders (2.0.2) lib/action_controller/responder.rb:163:in `respond' responders (2.0.2) lib/action_controller/responder.rb:156:in `call' responders (2.0.2) lib/action_controller/respond_with.rb:203:in `respond_with' /workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:15:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (20.8ms)
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:06:19 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (13.9ms)
Completed 500 Internal Server Error in 19ms
ActionView::Template::Error (undefined method `errors' for #<ActionView::Helpers::FormBuilder:0x007fac759b0d60>):
1: <div id="feedback"> 2: <%= form_for @feedback, url: metova.feedback_path do |f| %> 3: <h1 class="raleway">Submit Feedback</h1> 4: <%= render 'shared/errors', errors: f.errors.full_messages %> 5: <%= f.select :type, @feedback.types.to_a %> 6: <%= f.text_area :body %> 7: <%= f.submit 'Submit', class: 'raleway' %> /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:4:in `block in __workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189333829920' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:2:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189333829920' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' responders (2.0.2) lib/action_controller/responder.rb:145:in `render' responders (2.0.2) lib/action_controller/responder.rb:201:in `navigation_behavior' responders (2.0.2) lib/action_controller/responder.rb:172:in `rescue in to_html' responders (2.0.2) lib/action_controller/responder.rb:170:in `to_html' responders (2.0.2) lib/action_controller/responder.rb:163:in `respond' responders (2.0.2) lib/action_controller/responder.rb:156:in `call' responders (2.0.2) lib/action_controller/respond_with.rb:203:in `respond_with' /workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:15:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (7.9ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.1ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.3ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.2ms)
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:06:31 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (7.3ms)
Completed 500 Internal Server Error in 13ms
ActionView::Template::Error (Missing partial shared/_errors with {:locale=>, :formats=>, :variants=>[], :handlers=>[:erb, :builder, :raw, :ruby]}. Searched in:
* "/workspace/metova-rails/spec/dummy/app/views" * "/Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/devise-3.4.1/app/views" * "/Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/kaminari-0.16.1/app/views" * "/workspace/metova-rails/app/views"
):
1: <div id="feedback"> 2: <%= form_for @feedback, url: metova.feedback_path do |f| %> 3: <h1 class="raleway">Submit Feedback</h1> 4: <%= render 'shared/errors', errors: f.object.errors.full_messages %> 5: <%= f.select :type, @feedback.types.to_a %> 6: <%= f.text_area :body %> 7: <%= f.submit 'Submit', class: 'raleway' %> actionview (4.2.0) lib/action_view/path_set.rb:46:in `find' actionview (4.2.0) lib/action_view/lookup_context.rb:121:in `find' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:418:in `find_template' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:413:in `find_partial' actionview (4.2.0) lib/action_view/renderer/partial_renderer.rb:294:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:47:in `render_partial' actionview (4.2.0) lib/action_view/helpers/rendering_helper.rb:35:in `render' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:4:in `block in __workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189270488220' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `block in capture' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:200:in `with_output_buffer' actionview (4.2.0) lib/action_view/helpers/capture_helper.rb:38:in `capture' actionview (4.2.0) lib/action_view/helpers/form_helper.rb:444:in `form_for' /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb:2:in `__workspace_metova_rails_app_views_metova_feedbacks_new_html_erb__14614765569985714_70189270488220' actionview (4.2.0) lib/action_view/template.rb:145:in `block in render' activesupport (4.2.0) lib/active_support/notifications.rb:166:in `instrument' actionview (4.2.0) lib/action_view/template.rb:333:in `instrument' actionview (4.2.0) lib/action_view/template.rb:143:in `render' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:54:in `block (2 levels) in render_template' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionview (4.2.0) lib/action_view/renderer/abstract_renderer.rb:39:in `instrument' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:53:in `block in render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:61:in `render_with_layout' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:52:in `render_template' actionview (4.2.0) lib/action_view/renderer/template_renderer.rb:14:in `render' actionview (4.2.0) lib/action_view/renderer/renderer.rb:42:in `render_template' actionview (4.2.0) lib/action_view/renderer/renderer.rb:23:in `render' actionview (4.2.0) lib/action_view/rendering.rb:100:in `_render_template' actionpack (4.2.0) lib/action_controller/metal/streaming.rb:217:in `_render_template' actionview (4.2.0) lib/action_view/rendering.rb:83:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:32:in `render_to_body' actionpack (4.2.0) lib/action_controller/metal/renderers.rb:37:in `render_to_body' actionpack (4.2.0) lib/abstract_controller/rendering.rb:25:in `render' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:16:in `render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block (2 levels) in render' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `block in ms' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/benchmark.rb:294:in `realtime' activesupport (4.2.0) lib/active_support/core_ext/benchmark.rb:12:in `ms' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:41:in `block in render' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:84:in `cleanup_view_runtime' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:25:in `cleanup_view_runtime' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:40:in `render' responders (2.0.2) lib/action_controller/responder.rb:145:in `render' responders (2.0.2) lib/action_controller/responder.rb:201:in `navigation_behavior' responders (2.0.2) lib/action_controller/responder.rb:172:in `rescue in to_html' responders (2.0.2) lib/action_controller/responder.rb:170:in `to_html' responders (2.0.2) lib/action_controller/responder.rb:163:in `respond' responders (2.0.2) lib/action_controller/responder.rb:156:in `call' responders (2.0.2) lib/action_controller/respond_with.rb:203:in `respond_with' /workspace/metova-rails/app/controllers/metova/feedbacks_controller.rb:15:in `create' actionpack (4.2.0) lib/action_controller/metal/implicit_render.rb:4:in `send_action' actionpack (4.2.0) lib/abstract_controller/base.rb:198:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rendering.rb:10:in `process_action' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:20:in `block in process_action' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_process_action_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/abstract_controller/callbacks.rb:19:in `process_action' actionpack (4.2.0) lib/action_controller/metal/rescue.rb:29:in `process_action' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:31:in `block in process_action' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `block in instrument' activesupport (4.2.0) lib/active_support/notifications/instrumenter.rb:20:in `instrument' activesupport (4.2.0) lib/active_support/notifications.rb:164:in `instrument' actionpack (4.2.0) lib/action_controller/metal/instrumentation.rb:30:in `process_action' actionpack (4.2.0) lib/action_controller/metal/params_wrapper.rb:250:in `process_action' activerecord (4.2.0) lib/active_record/railties/controller_runtime.rb:18:in `process_action' actionpack (4.2.0) lib/abstract_controller/base.rb:137:in `process' actionview (4.2.0) lib/action_view/rendering.rb:30:in `process' actionpack (4.2.0) lib/action_controller/metal.rb:195:in `dispatch' actionpack (4.2.0) lib/action_controller/metal/rack_delegation.rb:13:in `dispatch' actionpack (4.2.0) lib/action_controller/metal.rb:236:in `block in action' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:73:in `dispatch' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:42:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/railtie.rb:194:in `public_send' railties (4.2.0) lib/rails/railtie.rb:194:in `method_missing' actionpack (4.2.0) lib/action_dispatch/routing/mapper.rb:51:in `serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:43:in `block in serve' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `each' actionpack (4.2.0) lib/action_dispatch/journey/router.rb:30:in `serve' actionpack (4.2.0) lib/action_dispatch/routing/route_set.rb:802:in `call' warden (1.2.3) lib/warden/manager.rb:35:in `block in call' warden (1.2.3) lib/warden/manager.rb:34:in `catch' warden (1.2.3) lib/warden/manager.rb:34:in `call' rack (1.6.0) lib/rack/etag.rb:24:in `call' rack (1.6.0) lib/rack/conditionalget.rb:38:in `call' rack (1.6.0) lib/rack/head.rb:13:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/params_parser.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/flash.rb:260:in `call' rack (1.6.0) lib/rack/session/abstract/id.rb:225:in `context' rack (1.6.0) lib/rack/session/abstract/id.rb:220:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/cookies.rb:560:in `call' activerecord (4.2.0) lib/active_record/query_cache.rb:36:in `call' activerecord (4.2.0) lib/active_record/connection_adapters/abstract/connection_pool.rb:647:in `call' activerecord (4.2.0) lib/active_record/migration.rb:378:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:29:in `block in call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `call' activesupport (4.2.0) lib/active_support/callbacks.rb:88:in `_run_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:734:in `_run_call_callbacks' activesupport (4.2.0) lib/active_support/callbacks.rb:81:in `run_callbacks' actionpack (4.2.0) lib/action_dispatch/middleware/callbacks.rb:27:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/reloader.rb:73:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/remote_ip.rb:78:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/debug_exceptions.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call' railties (4.2.0) lib/rails/rack/logger.rb:38:in `call_app' railties (4.2.0) lib/rails/rack/logger.rb:20:in `block in call' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `block in tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:26:in `tagged' activesupport (4.2.0) lib/active_support/tagged_logging.rb:68:in `tagged' railties (4.2.0) lib/rails/rack/logger.rb:20:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/request_id.rb:21:in `call' rack (1.6.0) lib/rack/methodoverride.rb:22:in `call' rack (1.6.0) lib/rack/runtime.rb:18:in `call' activesupport (4.2.0) lib/active_support/cache/strategy/local_cache_middleware.rb:28:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' actionpack (4.2.0) lib/action_dispatch/middleware/static.rb:113:in `call' rack (1.6.0) lib/rack/sendfile.rb:113:in `call' railties (4.2.0) lib/rails/engine.rb:518:in `call' railties (4.2.0) lib/rails/application.rb:164:in `call' rack (1.6.0) lib/rack/lock.rb:17:in `call' rack (1.6.0) lib/rack/content_length.rb:15:in `call' rack (1.6.0) lib/rack/handler/webrick.rb:89:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run' /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread' Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_source.erb (8.4ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (3.0ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/lserman/.rbenv/versions/2.1.2/lib/ruby/gems/2.1.0/gems/actionpack-4.2.0/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (21.1ms)
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:06:44 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.4ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.8ms)
Completed 200 OK in 15ms (Views: 12.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 15:06:44 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:06:44 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:06:44 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:06:44 -0600
Started GET “/assets/metova/application-1d9cfcaab1f0ac8f30808bc9a80cd8c5.css?body=1” for 127.0.0.1 at 2015-01-15 15:06:55 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:06:55 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:06:55 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:07:14 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms)
Completed 200 OK in 22ms (Views: 19.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-78f1a655713a23791eb3211aea8cd9d7.css?body=1” for 127.0.0.1 at 2015-01-15 15:07:14 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:07:14 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:07:14 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:07:14 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:07:25 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms)
Completed 200 OK in 19ms (Views: 16.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1baafa50c4e4be2571e9490af3e758a3.css?body=1” for 127.0.0.1 at 2015-01-15 15:07:25 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:07:25 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:07:25 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:07:25 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:07:33 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms)
Completed 200 OK in 17ms (Views: 14.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-51d52c6eb3f9d1b28c9ec7702a2373a7.css?body=1” for 127.0.0.1 at 2015-01-15 15:07:34 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:07:34 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:07:34 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:07:34 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:07:48 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms)
Completed 200 OK in 18ms (Views: 15.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-2c2fac7545eb429d55c134ae6ba3be43.css?body=1” for 127.0.0.1 at 2015-01-15 15:07:48 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:07:48 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:07:48 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:07:48 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:07:56 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.0ms)
Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-1be75efcacdadb79d71e60043f81c55a.css?body=1” for 127.0.0.1 at 2015-01-15 15:07:56 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:07:56 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:07:56 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:07:56 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:08:05 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms)
Completed 200 OK in 18ms (Views: 16.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-e868dcd020ef8e7d127e90d00f317e00.css?body=1” for 127.0.0.1 at 2015-01-15 15:08:05 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:08:05 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:08:05 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:08:05 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:08:33 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"20GPEAT+BMZoGOkzyTIRGvB/FyQd4wZuWvd08b39EmontzY6Oaw+wLQaywxriYrXarJ9bBnQlqpQHB69F5l01Q==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms)
Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-d32bb31f2a071bfa9a4dd8cfe01e8986.css?body=1” for 127.0.0.1 at 2015-01-15 15:08:33 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:08:33 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:08:33 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:08:33 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:29:38 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0wprVNicdpaFSYVKoiGoDc2rR+/nW0uq0RbTSBpy/OPupCHbjBL3IYXBCqIMx1trfvHV7uu/eqhrzEBig2tTA==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.8ms)
Completed 200 OK in 28ms (Views: 21.1ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-d32bb31f2a071bfa9a4dd8cfe01e8986.css?body=1” for 127.0.0.1 at 2015-01-15 15:29:38 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:29:38 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:29:38 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:29:38 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:30:38 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"c0wprVNicdpaFSYVKoiGoDc2rR+/nW0uq0RbTSBpy/OPupCHbjBL3IYXBCqIMx1trfvHV7uu/eqhrzEBig2tTA==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms)
Completed 200 OK in 16ms (Views: 10.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-d32bb31f2a071bfa9a4dd8cfe01e8986.css?body=1” for 127.0.0.1 at 2015-01-15 15:30:38 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:30:38 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:30:38 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:30:38 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:30:40 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"3UoxYFifaLEImE4N7QBtf+t17bGMI+6E2uN/yuhPM5khvIhKZc1St9SabDJPu/aycbiH+YgQfkDQCBWGQitVJg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.1ms)
Completed 200 OK in 13ms (Views: 10.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-d32bb31f2a071bfa9a4dd8cfe01e8986.css?body=1” for 127.0.0.1 at 2015-01-15 15:30:40 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:30:40 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:30:40 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:30:40 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:34:17 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"SMGcecxd5W3VlJiVYVixJ4B1cluA23r2brwiDCbCude0NyVT8Q/fawmWuqrD4yrqGrgYE4To6jJkV0hAjKbfaA==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.5ms)
Completed 200 OK in 20ms (Views: 14.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:34:17 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:37:02 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"+CAJ0zx+e2PggbDOBWK5pesUzOeZZZ7o49Box4vCnuIE1rD5ASxBZTyDkvGn2SJocdmmr51WDizpOwKLIab4XQ==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-7ed9e1e8fcbbdea119a299599200ca6b.css?body=1” for 127.0.0.1 at 2015-01-15 15:37:02 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:37:02 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:37:14 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"zEtdXCpHtV9U9Ro5loPLfZ+T9Prl8rjvWLSY6eMf+3gwveR2FxWPWYj3OAY0OFCwBV6esuHBKCtSX/KlSXudxw==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.2ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-6663f8bb71cbc024db357ba6c4b3f888.css?body=1” for 127.0.0.1 at 2015-01-15 15:37:14 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:37:14 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:37:54 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"zEtdXCpHtV9U9Ro5loPLfZ+T9Prl8rjvWLSY6eMf+3gwveR2FxWPWYj3OAY0OFCwBV6esuHBKCtSX/KlSXudxw==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.0ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.2ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 21ms (Views: 17.8ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-025be760fb5ef0934916f69994f3ece6.css?body=1” for 127.0.0.1 at 2015-01-15 15:37:54 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:37:54 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:37:54 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:37:54 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:01 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"Zx6c/wIopc65CSi8GTVPDEWKcbuQBc484on7QU50h5ub6CXVP3qfyGULCoO7jtTB30cb85Q2XvjoYpEN5BDhJA==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 21ms (Views: 17.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-dea1704e4b79c013afa01004e67c4dd3.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:01 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:01 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:01 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:01 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:19 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"qkI/wAmRtZOujAlAu1/T2EqHoH2AMZ3Tj+VCrv4vnXlWtIbqNMOPlXKOK38Z5EgV0ErKNYQCDReFDijiVEv7xg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.5ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 21ms (Views: 17.9ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-c51c8b133e5d1d99864c9a0b107ab1c1.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:19 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:19 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:19 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:19 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:23 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.7ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-fbd1962a77f5f20241fada7710a71872.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:23 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:23 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:23 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:23 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:30 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 22ms (Views: 18.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-aa4a8d07f3da4e8468df6800bc1631cc.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:30 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:30 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:30 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:30 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:35 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:35 -0600
Started GET “/assets/metova/application-fb2846e73bfdacb1c4b5781fced7da7b.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:35 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:35 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:35 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:41 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.2ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-87bf7d8c728d21ca94272e1d63712bb5.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:41 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:41 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:41 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:42 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:38:59 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.0ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.2ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 19ms (Views: 16.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-2fc2518088133e8aec84926d693873dc.css?body=1” for 127.0.0.1 at 2015-01-15 15:38:59 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:38:59 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:38:59 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:38:59 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:39:04 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.2ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-4ec94489b4680bcb1192698c70498162.css?body=1” for 127.0.0.1 at 2015-01-15 15:39:04 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:39:04 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:39:04 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:39:04 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:39:12 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.7ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 22ms (Views: 18.5ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-826ccc1e5f26bae4078a33cbc31ac3ae.css?body=1” for 127.0.0.1 at 2015-01-15 15:39:12 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:39:12 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:39:12 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:39:12 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:39:22 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.5ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-fa5714bda30bc85a39ef95d6c13a5929.css?body=1” for 127.0.0.1 at 2015-01-15 15:39:22 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:39:22 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:39:22 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:39:22 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:39:34 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.6ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.6ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-946d3a2b2e6d5913d9173266bf851f96.css?body=1” for 127.0.0.1 at 2015-01-15 15:39:34 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:39:34 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:39:34 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:39:34 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:39:39 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.3ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-65bea2e1f8302fdec04f6caed3f3c7a7.css?body=1” for 127.0.0.1 at 2015-01-15 15:39:39 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:39:39 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:39:39 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:39:39 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:39:51 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"49kB3uiPg3AOArPUkFS0yyrxdtY1+3Yaq16IX9vjin0fL7j01d25dtIAkesy7y8GsDwcnjHI5t6hteITcYfswg==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.0ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (3.4ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 20ms (Views: 17.3ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/application-98d522320ef2c4d9076592f4c70a6d88.css?body=1” for 127.0.0.1 at 2015-01-15 15:39:51 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:39:51 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:39:51 -0600
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:39:51 -0600
Started POST “/metova/feedback” for 127.0.0.1 at 2015-01-15 15:40:02 -0600 Processing by Metova::FeedbacksController#create as HTML
Parameters: {"utf8"=>"✓", "authenticity_token"=>"4+ue2auGvrf8gtvICAqBAO/Bwrvd4ETe2ovrtivEkXcfHSfzltSEsSCA+feqsRrNdQyo89nT1BrQYIH6gaD3yA==", "feedback"=>{"type"=>"0", "body"=>""}, "commit"=>"Submit"} Rendered /workspace/metova-rails/app/views/metova/shared/_errors.html.erb (0.1ms) Rendered /workspace/metova-rails/app/views/metova/feedbacks/new.html.erb within layouts/metova/application (4.3ms) Rendered /workspace/metova-rails/app/views/metova/shared/_flash.html.erb (0.1ms)
Completed 200 OK in 16ms (Views: 13.4ms | ActiveRecord: 0.0ms)
Started GET “/assets/metova/feedbacks” for 127.0.0.1 at 2015-01-15 15:40:02 -0600
Started GET “/assets/metova/normalize” for 127.0.0.1 at 2015-01-15 15:40:02 -0600
Started GET “/assets/metova/application-6003a83c88a1f90ef300f4f20d8f3218.js?body=1” for 127.0.0.1 at 2015-01-15 15:40:02 -0600