Started GET "/" for 127.0.0.1 at 2014-11-12 16:50:02 +0000 Processing by PubsController#index as HTML Rendered pubs/index.html.erb within layouts/application (1.5ms) Completed 200 OK in 1431ms (Views: 1421.4ms | ActiveRecord: 0.0ms) Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-12 16:50:04 +0000  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)   (0.1ms) select sqlite_version(*)  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version") ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePubs (20141112165214)  (0.1ms) begin transaction  (0.5ms) CREATE TABLE "pubs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "website" varchar(255), "description" text, "latitude" float, "longitude" float, "rating" float, "address" text, "created_at" datetime, "updated_at" datetime) SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141112165214"]]  (0.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.7ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePubs (20141112165214)  (0.1ms) begin transaction  (2.2ms) DROP TABLE "pubs" SQL (0.2ms) DELETE FROM "schema_migrations" WHERE "schema_migrations"."version" = '20141112165214'  (0.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Migrating to CreatePubs (20141112165817)  (0.1ms) begin transaction  (0.7ms) CREATE TABLE "pubs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "website" varchar(255), "description" text, "latitude" float, "longitude" float, "rating" float, "address" text, "created_at" datetime, "updated_at" datetime)  SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES (?) [["version", "20141112165817"]]  (0.8ms) commit transaction ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"  (0.3ms) begin transaction SQL (0.7ms) INSERT INTO "pubs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", "2014-11-12 16:59:26.659360"], ["name", "My first pub"], ["updated_at", "2014-11-12 16:59:26.659360"]]  (0.9ms) commit transaction Started GET "/" for 127.0.0.1 at 2014-11-12 16:59:34 +0000 ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PubsController#index as HTML Pub Load (0.2ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (11.5ms) Completed 500 Internal Server Error in 16ms ActionView::Template::Error (undefined method `title' for #): 1:

Pubs#index

2: <% @pubs.each do | pub | %> 3:

<%=pub.title%>

4: <% end %> app/views/pubs/index.html.erb:3:in `block in _app_views_pubs_index_html_erb__2402342798848243663_70355818614500' app/views/pubs/index.html.erb:2:in `_app_views_pubs_index_html_erb__2402342798848243663_70355818614500' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.2ms) Started GET "/" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Processing by PubsController#index as HTML Pub Load (0.1ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (0.9ms) Completed 200 OK in 29ms (Views: 28.1ms | ActiveRecord: 0.1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-12 16:59:52 +0000 Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 09:55:19 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (13.0ms) Rendered pubs/new.html.erb within layouts/application (27.9ms) Completed 500 Internal Server Error in 39ms ActionView::Template::Error (undefined method `simple_form_for' for #<#:0x007ff9fe3101a0>): 1:

New Pub

2:
3: <%= simple_form_for @pub do |form| %> 4: <%= form.input :name, input_html: {maxlength: 40} %> 5: <%= form.input :address %> 6: <%= form.input :description, input_html: {maxlength: 40} %> app/views/pubs/_form.html.erb:3:in `_app_views_pubs__form_html_erb__565579092689045150_70355855481000' app/views/pubs/new.html.erb:1:in `_app_views_pubs_new_html_erb__3027108277175264154_70355844122840' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.6ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.5ms) Started GET "/" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Processing by PubsController#index as HTML  (0.5ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.2ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (11.8ms) Completed 200 OK in 46ms (Views: 42.3ms | ActiveRecord: 1.7ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:00:00 +0000 Started GET "/" for 127.0.0.1 at 2014-11-13 10:01:38 +0000 Processing by PubsController#index as HTML  (0.5ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.2ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (3.1ms) Completed 500 Internal Server Error in 47ms ActionView::Template::Error (undefined local variable or method `pubs_path' for #<#:0x007ff9fe5b56a8>): 7: <%= csrf_meta_tags %> 8: 9: 10: <%= link_to pubs_path %> 11: <%= yield %> 12: 13: app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__2564827817795605899_70355845475760' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.9ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.5ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (16.4ms) Started GET "/" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Processing by PubsController#index as HTML  (0.6ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.2ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (2.6ms) Completed 200 OK in 46ms (Views: 44.0ms | ActiveRecord: 0.8ms) Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:03:15 +0000 Started GET "/" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Processing by PubsController#index as HTML  (0.1ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.1ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (1.3ms) Completed 200 OK in 33ms (Views: 31.9ms | ActiveRecord: 0.2ms) Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:03:52 +0000 Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:03:55 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (11.6ms) Rendered pubs/new.html.erb within layouts/application (14.5ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (undefined method `simple_form_for' for #<#:0x007ff9ffba1c50>): 1:

New Pub

2:
3: <%= simple_form_for @pub do |form| %> 4: <%= form.input :name, input_html: {maxlength: 40} %> 5: <%= form.input :address %> 6: <%= form.input :description, input_html: {maxlength: 40} %> app/views/pubs/_form.html.erb:3:in `_app_views_pubs__form_html_erb__565579092689045150_70355857017660' app/views/pubs/new.html.erb:1:in `_app_views_pubs_new_html_erb__3027108277175264154_70355856982320' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.2ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (14.0ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:03:55 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (10.4ms) Rendered pubs/new.html.erb within layouts/application (11.4ms) Completed 500 Internal Server Error in 15ms ActionView::Template::Error (undefined method `simple_form_for' for #<#:0x007ff9fe5299a0>): 1:

New Pub

2:
3: <%= simple_form_for @pub do |form| %> 4: <%= form.input :name, input_html: {maxlength: 40} %> 5: <%= form.input :address %> 6: <%= form.input :description, input_html: {maxlength: 40} %> app/views/pubs/_form.html.erb:3:in `_app_views_pubs__form_html_erb__565579092689045150_70355855481000' app/views/pubs/new.html.erb:1:in `_app_views_pubs_new_html_erb__3027108277175264154_70355844122840' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.0ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.2ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:07:54 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (9.2ms) Rendered pubs/new.html.erb within layouts/application (9.8ms) Completed 500 Internal Server Error in 12ms ActionView::Template::Error (undefined method `simple_form_for' for #<#:0x007ff9fe3f1ec0>): 1:

New Pub

2:
3: <%= simple_form_for @pub do |form| %> 4: <%= form.input :name, input_html: {maxlength: 40} %> 5: <%= form.input :address %> 6: <%= form.input :description, input_html: {maxlength: 40} %> app/views/pubs/_form.html.erb:3:in `_app_views_pubs__form_html_erb__565579092689045150_70355855481000' app/views/pubs/new.html.erb:1:in `_app_views_pubs_new_html_erb__3027108277175264154_70355844122840' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.8ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:08:30 +0000 ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations" Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (109.5ms) Rendered pubs/new.html.erb within layouts/application (115.5ms) Completed 500 Internal Server Error in 138ms ActionView::Template::Error (undefined method `pubs_path' for #<#:0x007f89a6b2b240>): 1:

New Pub

2:
3: <%= simple_form_for @pub do |form| %> 4: <%= form.input :name, input_html: {maxlength: 40} %> 5: <%= form.input :address %> 6: <%= form.input :description, input_html: {maxlength: 40} %> app/views/pubs/_form.html.erb:3:in `_app_views_pubs__form_html_erb__1551242910004121705_70114592198980' app/views/pubs/new.html.erb:1:in `_app_views_pubs_new_html_erb___1825411717851178216_70114592085620' Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.0ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.8ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.7ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (28.5ms) Rendered pubs/new.html.erb within layouts/application (29.0ms) Completed 200 OK in 132ms (Views: 128.9ms | ActiveRecord: 0.4ms) Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:11:14 +0000 Started GET "/" for 127.0.0.1 at 2014-11-13 10:11:30 +0000 Processing by PubsController#index as HTML  (0.6ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.1ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (3.2ms) Completed 200 OK in 44ms (Views: 42.5ms | ActiveRecord: 0.7ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:11:32 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (9.7ms) Rendered pubs/new.html.erb within layouts/application (11.2ms) Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.0ms) Started GET "/" for 127.0.0.1 at 2014-11-13 10:11:33 +0000 Processing by PubsController#index as HTML  (0.1ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.1ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (1.4ms) Completed 200 OK in 39ms (Views: 38.0ms | ActiveRecord: 0.2ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:11:34 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (38.8ms) Rendered pubs/new.html.erb within layouts/application (39.4ms) Completed 200 OK in 73ms (Views: 72.2ms | ActiveRecord: 0.0ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:17:22 +0000 SyntaxError (/Users/Steer/steer-rails/appetite/app/controllers/pubs_controller.rb:30: syntax error, unexpected end-of-input, expecting keyword_end): app/controllers/pubs_controller.rb:30: syntax error, unexpected end-of-input, expecting keyword_end Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_source.erb (0.5ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.8ms) Rendered /Users/Steer/.rvm/gems/ruby-2.1.2/gems/actionpack-4.1.2/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (20.6ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (17.2ms) Rendered pubs/new.html.erb within layouts/application (19.4ms) Completed 200 OK in 56ms (Views: 51.9ms | ActiveRecord: 0.5ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:10 +0000 Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (9.5ms) Rendered pubs/new.html.erb within layouts/application (10.3ms) Completed 200 OK in 42ms (Views: 41.3ms | ActiveRecord: 0.0ms) Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:19:40 +0000 Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (9.7ms) Rendered pubs/new.html.erb within layouts/application (10.4ms) Completed 200 OK in 45ms (Views: 44.1ms | ActiveRecord: 0.0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:05 +0000 Started GET "/" for 127.0.0.1 at 2014-11-13 10:20:09 +0000 Processing by PubsController#index as HTML  (0.6ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.2ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (4.5ms) Completed 200 OK in 47ms (Views: 45.5ms | ActiveRecord: 0.8ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:20:11 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (8.1ms) Rendered pubs/new.html.erb within layouts/application (10.1ms) Completed 200 OK in 48ms (Views: 47.4ms | ActiveRecord: 0.0ms) Started GET "/pubs/new" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Processing by PubsController#new as HTML Rendered pubs/_form.html.erb (6.9ms) Rendered pubs/new.html.erb within layouts/application (7.5ms) Completed 200 OK in 45ms (Views: 44.3ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/assets/pubs.css?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/assets/turbolinks.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/assets/pubs.js?body=1" for 127.0.0.1 at 2014-11-13 10:20:46 +0000 Started GET "/" for 127.0.0.1 at 2014-11-13 10:20:48 +0000 Processing by PubsController#index as HTML  (0.1ms) SELECT COUNT(*) FROM "pubs" Pub Load (0.2ms) SELECT "pubs".* FROM "pubs" Rendered pubs/index.html.erb within layouts/application (15.4ms) Completed 500 Internal Server Error in 19ms ActionView::Template::Error (undefined local variable or method `pub_edit_path' for #<#:0x007f89a80307f8>): 1:

<%= pluralize(@pubs.count,"pub")%>

2: