(0.0ms) select sqlite_version(*)  (71.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)  (0.0ms) PRAGMA index_list("schema_migrations")  (66.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateCorvettes (20111016030420)  (1.0ms) CREATE TABLE "corvettes" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "body_style" varchar(255), "miles" float, "year" integer, "created_at" datetime, "updated_at" datetime)  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111016030420')  (0.0ms) select sqlite_version(*)  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"   (0.0ms) PRAGMA index_list("corvettes") Started GET "/corvettes" for 127.0.0.1 at 2011-10-16 16:03:52 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (51.0ms) Compiled application.css (2ms) (pid 2196) Compiled corvettes.css (3ms) (pid 2196) Compiled scaffolds.css (8ms) (pid 2196) Compiled application.js (4ms) (pid 2196) Compiled jquery.js (7ms) (pid 2196) Compiled jquery_ujs.js (0ms) (pid 2196) Compiled corvettes.js (127ms) (pid 2196) Completed 200 OK in 463ms (Views: 463.0ms | ActiveRecord: 0.0ms) Started GET "/assets/corvettes.js?body=1" for 127.0.0.1 at 2011-10-16 16:03:58 -0600 Served asset /corvettes.js - 200 OK (2ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2011-10-16 16:03:58 -0600 Served asset /scaffolds.css - 200 OK (2ms) Started GET "/assets/corvettes.css?body=1" for 127.0.0.1 at 2011-10-16 16:03:58 -0600 Served asset /corvettes.css - 200 OK (2ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-16 16:04:31 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (8.0ms) Rendered corvettes/new.html.erb within layouts/application (58.0ms) Completed 200 OK in 68ms (Views: 67.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-16 16:05:21 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (6.0ms) Rendered corvettes/new.html.erb within layouts/application (8.0ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 1.0ms) Started POST "/corvettes" for 127.0.0.1 at 2011-10-16 16:08:42 -0600 Processing by CorvettesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"coupe", "miles"=>"18.0", "year"=>"1997"}, "commit"=>"Create Corvette"} SQL (189.0ms) INSERT INTO "corvettes" ("body_style", "created_at", "miles", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["body_style", "coupe"], ["created_at", Sun, 16 Oct 2011 22:08:42 UTC +00:00], ["miles", 18.0], ["updated_at", Sun, 16 Oct 2011 22:08:42 UTC +00:00], ["year", 1997]] Redirected to http://localhost:3000/corvettes/1 Completed 302 Found in 295ms Started GET "/corvettes/1" for 127.0.0.1 at 2011-10-16 16:08:43 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"1"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "1"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 15ms (Views: 13.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-16 16:09:22 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 28ms (Views: 25.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/1/edit" for 127.0.0.1 at 2011-10-16 16:09:43 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"1"} Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "1"]] Rendered corvettes/_form.html.erb (6.0ms) Rendered corvettes/edit.html.erb within layouts/application (8.0ms) Completed 200 OK in 19ms (Views: 17.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-16 16:11:03 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (5.0ms) Completed 200 OK in 16ms (Views: 14.0ms | ActiveRecord: 0.0ms) Started DELETE "/corvettes/1" for 127.0.0.1 at 2011-10-16 16:12:26 -0600 Processing by CorvettesController#destroy as HTML Parameters: {"authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "id"=>"1"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "1"]] SQL (0.0ms) DELETE FROM "corvettes" WHERE "corvettes"."id" = ? [["id", 1]] Redirected to http://localhost:3000/corvettes Completed 302 Found in 75ms Started GET "/corvettes" for 127.0.0.1 at 2011-10-16 16:12:26 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (1.0ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-16 21:22:53 -0600 ActionController::RoutingError (No route matches [GET] "/main/welcome"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-16 21:30:21 -0600 ActionController::RoutingError (No route matches [GET] "/main/welcome"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-16 21:30:46 -0600 ActionController::RoutingError (No route matches [GET] "/main/welcome"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-16 21:30:59 -0600 ActionController::RoutingError (No route matches [GET] "/main/welcome"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-16 21:43:22 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (0.0ms) Compiled application.css (3ms) (pid 2196) Compiled main.css (1ms) (pid 2196) Compiled application.js (5ms) (pid 2196) Compiled main.js (109ms) (pid 2196) Completed 200 OK in 179ms (Views: 178.0ms | ActiveRecord: 1.0ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-16 21:43:23 -0600 Served asset /main.css - 200 OK (2ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-16 21:43:23 -0600 Served asset /main.js - 200 OK (2ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-16 21:45:47 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/application (0.0ms) Completed 200 OK in 16ms (Views: 9.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/application (0.0ms) Completed 200 OK in 16ms (Views: 10.0ms | ActiveRecord: 0.0ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /main.css - 304 Not Modified (0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /application.css - 200 OK (0ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /scaffolds.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /jquery_ujs.js - 304 Not Modified (4ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/corvettes.css?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /corvettes.css - 304 Not Modified (0ms) Started GET "/assets/corvettes.js?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /corvettes.js - 304 Not Modified (0ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /main.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-17 09:09:10 -0600 Served asset /application.js - 200 OK (0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 09:37:14 -0600 SyntaxError (C:/Ruby192/bin/examples/cars/app/controllers/main_controller.rb:12: syntax error, unexpected '?' @selected_cars = Corvette.where([year >= ? and year <= ? and ^ C:/Ruby192/bin/examples/cars/app/controllers/main_controller.rb:13: syntax error, unexpected ']', expecting keyword_end body_style = ?", @year1, @year2, @body]) ^): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (31.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 09:40:52 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/application (37.0ms) Completed 200 OK in 410ms (Views: 189.0ms | ActiveRecord: 1.0ms) Started GET "/assets/corvettes.css?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /corvettes.css - 304 Not Modified (1ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /main.css - 304 Not Modified (2ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /jquery_ujs.js - 304 Not Modified (2ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /scaffolds.css - 304 Not Modified (0ms) Started GET "/assets/corvettes.js?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /corvettes.js - 304 Not Modified (1ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /jquery.js - 304 Not Modified (3ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /main.js - 304 Not Modified (1ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-17 09:40:58 -0600 Served asset /application.js - 304 Not Modified (1ms) Started GET "/main/" for 127.0.0.1 at 2011-10-17 09:50:36 -0600 ActionController::RoutingError (No route matches [GET] "/main"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 09:50:43 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/application (0.0ms) Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:51:15 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (1.0ms) Completed 200 OK in 11ms (Views: 10.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-17 09:51:17 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (8.0ms) Rendered corvettes/new.html.erb within layouts/application (47.0ms) Completed 200 OK in 56ms (Views: 56.0ms | ActiveRecord: 0.0ms) Started POST "/corvettes" for 127.0.0.1 at 2011-10-17 09:51:37 -0600 Processing by CorvettesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"coupe", "miles"=>"18.0", "year"=>"1997"}, "commit"=>"Create Corvette"} SQL (66.0ms) INSERT INTO "corvettes" ("body_style", "created_at", "miles", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["body_style", "coupe"], ["created_at", Mon, 17 Oct 2011 15:51:38 UTC +00:00], ["miles", 18.0], ["updated_at", Mon, 17 Oct 2011 15:51:38 UTC +00:00], ["year", 1997]] Redirected to http://localhost:3000/corvettes/2 Completed 302 Found in 143ms Started GET "/corvettes/2" for 127.0.0.1 at 2011-10-17 09:51:38 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"2"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "2"]] Rendered corvettes/show.html.erb within layouts/application (17.0ms) Completed 200 OK in 29ms (Views: 27.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:51:43 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (6.0ms) Completed 200 OK in 16ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-17 09:51:45 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (19.0ms) Rendered corvettes/new.html.erb within layouts/application (21.0ms) Completed 200 OK in 30ms (Views: 30.0ms | ActiveRecord: 0.0ms) Started POST "/corvettes" for 127.0.0.1 at 2011-10-17 09:52:03 -0600 Processing by CorvettesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"58.8", "year"=>"1996"}, "commit"=>"Create Corvette"} SQL (1.0ms) INSERT INTO "corvettes" ("body_style", "created_at", "miles", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["body_style", "hatchback"], ["created_at", Mon, 17 Oct 2011 15:52:03 UTC +00:00], ["miles", 58.8], ["updated_at", Mon, 17 Oct 2011 15:52:03 UTC +00:00], ["year", 1996]] Redirected to http://localhost:3000/corvettes/3 Completed 302 Found in 74ms Started GET "/corvettes/3" for 127.0.0.1 at 2011-10-17 09:52:03 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"3"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "3"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 29ms (Views: 14.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:52:07 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (6.0ms) Completed 200 OK in 18ms (Views: 16.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-17 09:52:09 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (7.0ms) Rendered corvettes/new.html.erb within layouts/application (8.0ms) Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms) Started POST "/corvettes" for 127.0.0.1 at 2011-10-17 09:52:26 -0600 Processing by CorvettesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"convertible", "miles"=>"13.5", "year"=>"2001"}, "commit"=>"Create Corvette"} SQL (1.0ms) INSERT INTO "corvettes" ("body_style", "created_at", "miles", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["body_style", "convertible"], ["created_at", Mon, 17 Oct 2011 15:52:26 UTC +00:00], ["miles", 13.5], ["updated_at", Mon, 17 Oct 2011 15:52:26 UTC +00:00], ["year", 2001]] Redirected to http://localhost:3000/corvettes/4 Completed 302 Found in 57ms Started GET "/corvettes/4" for 127.0.0.1 at 2011-10-17 09:52:27 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"4"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "4"]] Rendered corvettes/show.html.erb within layouts/application (7.0ms) Completed 200 OK in 25ms (Views: 23.0ms | ActiveRecord: 2.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:52:29 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (8.0ms) Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-17 09:52:30 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (6.0ms) Rendered corvettes/new.html.erb within layouts/application (8.0ms) Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms) Started POST "/corvettes" for 127.0.0.1 at 2011-10-17 09:52:49 -0600 Processing by CorvettesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"19.0", "year"=>"1995"}, "commit"=>"Create Corvette"} SQL (1.0ms) INSERT INTO "corvettes" ("body_style", "created_at", "miles", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["body_style", "hatchback"], ["created_at", Mon, 17 Oct 2011 15:52:49 UTC +00:00], ["miles", 19.0], ["updated_at", Mon, 17 Oct 2011 15:52:49 UTC +00:00], ["year", 1995]] Redirected to http://localhost:3000/corvettes/5 Completed 302 Found in 76ms Started GET "/corvettes/5" for 127.0.0.1 at 2011-10-17 09:52:49 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"5"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "5"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 15ms (Views: 14.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:52:51 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (9.0ms) Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes/new" for 127.0.0.1 at 2011-10-17 09:52:54 -0600 Processing by CorvettesController#new as HTML Rendered corvettes/_form.html.erb (6.0ms) Rendered corvettes/new.html.erb within layouts/application (8.0ms) Completed 200 OK in 17ms (Views: 17.0ms | ActiveRecord: 0.0ms) Started POST "/corvettes" for 127.0.0.1 at 2011-10-17 09:53:20 -0600 Processing by CorvettesController#create as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"19.0", "year"=>"1995"}, "commit"=>"Create Corvette"} SQL (1.0ms) INSERT INTO "corvettes" ("body_style", "created_at", "miles", "updated_at", "year") VALUES (?, ?, ?, ?, ?) [["body_style", "hatchback"], ["created_at", Mon, 17 Oct 2011 15:53:20 UTC +00:00], ["miles", 19.0], ["updated_at", Mon, 17 Oct 2011 15:53:20 UTC +00:00], ["year", 1995]] Redirected to http://localhost:3000/corvettes/6 Completed 302 Found in 67ms Started GET "/corvettes/6" for 127.0.0.1 at 2011-10-17 09:53:20 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"6"} Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:53:23 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (18.0ms) Completed 200 OK in 35ms (Views: 33.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/6/edit" for 127.0.0.1 at 2011-10-17 09:53:36 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"6"} Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]] Rendered corvettes/_form.html.erb (7.0ms) Rendered corvettes/edit.html.erb within layouts/application (8.0ms) Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 1.0ms) Started PUT "/corvettes/6" for 127.0.0.1 at 2011-10-17 09:53:54 -0600 Processing by CorvettesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"1XuCFDV2iZTxICINOPQTej3CgfCCP2p0YqHneHr3fs0=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"25.0", "year"=>"1991"}, "commit"=>"Update Corvette", "id"=>"6"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]]  (1.0ms) UPDATE "corvettes" SET "miles" = 25.0, "year" = 1991, "updated_at" = '2011-10-17 15:53:55.020336' WHERE "corvettes"."id" = 6 Redirected to http://localhost:3000/corvettes/6 Completed 302 Found in 77ms Started GET "/corvettes/6" for 127.0.0.1 at 2011-10-17 09:53:55 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"6"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 09:53:57 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (10.0ms) Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 09:55:47 -0600 Processing by MainController#welcome as HTML  (1.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/application (0.0ms) Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 2.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 09:56:35 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 10:01:58 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 10:09:03 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 10:15:19 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:10:58 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:11:25 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:11:50 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:12:51 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:19:43 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:21:42 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:33:57 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 11:34:32 -0600 ActionController::RoutingError (No route matches [POST] "/main/result"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 14:14:50 -0600 Processing by MainController#result as HTML Parameters: {"year1"=>"1995", "year2"=>"1996", "body"=>"hatchback"} WARNING: Can't verify CSRF token authenticity Completed 500 Internal Server Error in 16ms NameError (undefined local variable or method `parmas' for #): app/controllers/main_controller.rb:10:in `result' Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.erb (2.0ms) Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.erb (1.0ms) Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/diagnostics.erb within rescues/layout (6.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 14:15:58 -0600 Processing by MainController#result as HTML Parameters: {"year1"=>"1995", "year2"=>"1996", "body"=>"hatchback"} WARNING: Can't verify CSRF token authenticity Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE (year >= 1995 and year <= 1996 and body_style = 'hatchback') Rendered main/result.html.erb within layouts/application (4.0ms) Completed 200 OK in 21ms (Views: 14.0ms | ActiveRecord: 1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 14:19:04 -0600 Processing by MainController#result as HTML Parameters: {"year1"=>"1995", "year2"=>"1996", "body"=>"hatchback"} WARNING: Can't verify CSRF token authenticity Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE (year >= 1995 and year <= 1996 and body_style = 'hatchback') Rendered main/result.html.erb within layouts/application (6.0ms) Completed 200 OK in 32ms (Views: 22.0ms | ActiveRecord: 1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 14:19:20 -0600 Processing by MainController#result as HTML Parameters: {"year1"=>"1995", "year2"=>"1996", "body"=>"hatchback"} WARNING: Can't verify CSRF token authenticity Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE (year >= 1995 and year <= 1996 and body_style = 'hatchback') Rendered main/result.html.erb within layouts/application (5.0ms) Completed 200 OK in 20ms (Views: 14.0ms | ActiveRecord: 2.0ms)  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  Migrating to CreateCorvettes (20111016030420) Migrating to AddStateToCorvette (20111017205052)  (0.0ms) select sqlite_version(*)  (1.0ms) ALTER TABLE "corvettes" ADD "state" varchar(255)  (0.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20111017205052')  (0.0ms) select sqlite_version(*)  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations"  (0.0ms) PRAGMA index_list("corvettes") Started GET "/cars" for 127.0.0.1 at 2011-10-17 15:01:08 -0600 ActionController::RoutingError (No route matches [GET] "/cars"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:01:25 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (12.0ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes/2/edit" for 127.0.0.1 at 2011-10-17 15:01:31 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"2"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "2"]] Rendered corvettes/_form.html.erb (8.0ms) Rendered corvettes/edit.html.erb within layouts/application (10.0ms) Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) Started PUT "/corvettes/2" for 127.0.0.1 at 2011-10-17 15:01:42 -0600 Processing by CorvettesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GbJMi4Z29AN/8xen1UeOMZ5p5uyAsCxf+im6OlwF1eM=", "corvette"=>{"body_style"=>"coupe", "miles"=>"18.0", "year"=>"1997", "state"=>"Arkansas"}, "commit"=>"Update Corvette", "id"=>"2"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "2"]]  (1.0ms) UPDATE "corvettes" SET "state" = 'Arkansas', "updated_at" = '2011-10-17 21:01:42.494615' WHERE "corvettes"."id" = 2 Redirected to http://localhost:3000/corvettes/2 Completed 302 Found in 63ms Started GET "/corvettes/2" for 127.0.0.1 at 2011-10-17 15:01:42 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"2"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "2"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:01:45 -0600 Processing by CorvettesController#index as HTML Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (25.0ms) Completed 200 OK in 36ms (Views: 35.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes/3/edit" for 127.0.0.1 at 2011-10-17 15:01:47 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"3"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "3"]] Rendered corvettes/_form.html.erb (6.0ms) Rendered corvettes/edit.html.erb within layouts/application (9.0ms) Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) Started PUT "/corvettes/3" for 127.0.0.1 at 2011-10-17 15:01:58 -0600 Processing by CorvettesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GbJMi4Z29AN/8xen1UeOMZ5p5uyAsCxf+im6OlwF1eM=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"58.8", "year"=>"1996", "state"=>"Connecticut"}, "commit"=>"Update Corvette", "id"=>"3"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "3"]]  (0.0ms) UPDATE "corvettes" SET "state" = 'Connecticut', "updated_at" = '2011-10-17 21:01:58.318520' WHERE "corvettes"."id" = 3 Redirected to http://localhost:3000/corvettes/3 Completed 302 Found in 78ms Started GET "/corvettes/3" for 127.0.0.1 at 2011-10-17 15:01:58 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"3"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "3"]] Rendered corvettes/show.html.erb within layouts/application (8.0ms) Completed 200 OK in 27ms (Views: 24.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:02:00 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes/4/edit" for 127.0.0.1 at 2011-10-17 15:02:02 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"4"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "4"]] Rendered corvettes/_form.html.erb (7.0ms) Rendered corvettes/edit.html.erb within layouts/application (9.0ms) Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 1.0ms) Started PUT "/corvettes/4" for 127.0.0.1 at 2011-10-17 15:02:13 -0600 Processing by CorvettesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GbJMi4Z29AN/8xen1UeOMZ5p5uyAsCxf+im6OlwF1eM=", "corvette"=>{"body_style"=>"convertible", "miles"=>"13.5", "year"=>"2001", "state"=>"Alabama"}, "commit"=>"Update Corvette", "id"=>"4"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "4"]]  (1.0ms) UPDATE "corvettes" SET "state" = 'Alabama', "updated_at" = '2011-10-17 21:02:13.870410' WHERE "corvettes"."id" = 4 Redirected to http://localhost:3000/corvettes/4 Completed 302 Found in 84ms Started GET "/corvettes/4" for 127.0.0.1 at 2011-10-17 15:02:13 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"4"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "4"]] Rendered corvettes/show.html.erb within layouts/application (9.0ms) Completed 200 OK in 26ms (Views: 23.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:02:16 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 22ms (Views: 20.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes/5/edit" for 127.0.0.1 at 2011-10-17 15:02:18 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"5"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "5"]] Rendered corvettes/_form.html.erb (6.0ms) Rendered corvettes/edit.html.erb within layouts/application (9.0ms) Completed 200 OK in 20ms (Views: 19.0ms | ActiveRecord: 0.0ms) Started PUT "/corvettes/5" for 127.0.0.1 at 2011-10-17 15:02:28 -0600 Processing by CorvettesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GbJMi4Z29AN/8xen1UeOMZ5p5uyAsCxf+im6OlwF1eM=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"19.0", "year"=>"1995", "state"=>"Alaska"}, "commit"=>"Update Corvette", "id"=>"5"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "5"]]  (0.0ms) UPDATE "corvettes" SET "state" = 'Alaska', "updated_at" = '2011-10-17 21:02:28.109224' WHERE "corvettes"."id" = 5 Redirected to http://localhost:3000/corvettes/5 Completed 302 Found in 70ms Started GET "/corvettes/5" for 127.0.0.1 at 2011-10-17 15:02:28 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"5"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "5"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:02:30 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (18.0ms) Completed 200 OK in 33ms (Views: 31.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes/6/edit" for 127.0.0.1 at 2011-10-17 15:02:34 -0600 Processing by CorvettesController#edit as HTML Parameters: {"id"=>"6"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]] Rendered corvettes/_form.html.erb (7.0ms) Rendered corvettes/edit.html.erb within layouts/application (9.0ms) Completed 200 OK in 20ms (Views: 18.0ms | ActiveRecord: 1.0ms) Started PUT "/corvettes/6" for 127.0.0.1 at 2011-10-17 15:02:41 -0600 Processing by CorvettesController#update as HTML Parameters: {"utf8"=>"✓", "authenticity_token"=>"GbJMi4Z29AN/8xen1UeOMZ5p5uyAsCxf+im6OlwF1eM=", "corvette"=>{"body_style"=>"hatchback", "miles"=>"25.0", "year"=>"1991", "state"=>"California"}, "commit"=>"Update Corvette", "id"=>"6"} Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]]  (1.0ms) UPDATE "corvettes" SET "state" = 'California', "updated_at" = '2011-10-17 21:02:41.465988' WHERE "corvettes"."id" = 6 Redirected to http://localhost:3000/corvettes/6 Completed 302 Found in 63ms Started GET "/corvettes/6" for 127.0.0.1 at 2011-10-17 15:02:41 -0600 Processing by CorvettesController#show as HTML Parameters: {"id"=>"6"} Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE "corvettes"."id" = ? LIMIT 1 [["id", "6"]] Rendered corvettes/show.html.erb within layouts/application (5.0ms) Completed 200 OK in 17ms (Views: 15.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:02:44 -0600 Processing by CorvettesController#index as HTML Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 1.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:08:20 -0600 Processing by CorvettesController#index as HTML Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 23ms (Views: 21.0ms | ActiveRecord: 1.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /application.css - 304 Not Modified (0ms) Started GET "/assets/corvettes.css?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /corvettes.css - 304 Not Modified (0ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /main.css - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /main.js - 304 Not Modified (0ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /scaffolds.css - 304 Not Modified (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/corvettes.js?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /corvettes.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-17 15:08:21 -0600 Served asset /application.js - 304 Not Modified (0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:40:04 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (1.0ms) Completed 200 OK in 24ms (Views: 6.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:44:44 -0600 Processing by MainController#welcome as HTML  (1.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 26ms (Views: 5.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:46:33 -0600 Processing by MainController#welcome as HTML  (1.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 17ms (Views: 10.0ms | ActiveRecord: 1.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 15:46:33 -0600 Served asset /mainstyles.css - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:46:37 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 14ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 15:46:37 -0600 Served asset /mainstyles.css - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 15:47:11 -0600 Processing by CorvettesController#index as HTML Corvette Load (1.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 22ms (Views: 21.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:47:22 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 1.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 15:47:22 -0600 Served asset /mainstyles.css - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/cars" for 127.0.0.1 at 2011-10-17 15:47:29 -0600 ActionController::RoutingError (No route matches [GET] "/cars"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/say/hello" for 127.0.0.1 at 2011-10-17 15:47:35 -0600 ActionController::RoutingError (No route matches [GET] "/say/hello"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:47:42 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 15:47:42 -0600 Served asset /mainstyles.css - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:58:40 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 19ms (Views: 10.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 15:58:40 -0600 Served asset /mainstyles.css - 404 Not Found (1ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 15:58:43 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 28ms (Views: 22.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 15:58:43 -0600 Served asset /mainstyles.css - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:06:01 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 24ms (Views: 14.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:06:01 -0600 Served asset /mainstyles.css - 404 Not Found (5ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:06:03 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 28ms (Views: 22.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:06:03 -0600 Served asset /mainstyles.css - 404 Not Found (2ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 16:06:13 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (13.0ms) Completed 200 OK in 27ms (Views: 25.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:06:13 -0600 Served asset /mainstyles.css - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:06:18 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:06:18 -0600 Served asset /mainstyles.css - 404 Not Found (3ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:06:37 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (1.0ms) Completed 200 OK in 28ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:06:37 -0600 Served asset /mainstyles.css - 404 Not Found (1ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:07:11 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (1.0ms) Completed 200 OK in 12ms (Views: 6.0ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:07:13 -0600 Processing by MainController#welcome as HTML  (1.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 2.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 16:07:21 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (11.0ms) Completed 200 OK in 24ms (Views: 23.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:07:21 -0600 Served asset /mainstyles.css - 404 Not Found (18ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:07:27 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 11ms (Views: 6.0ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:08:14 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 25ms (Views: 6.0ms | ActiveRecord: 0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-17 16:08:20 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" Rendered corvettes/index.html.erb within layouts/application (12.0ms) Completed 200 OK in 26ms (Views: 24.0ms | ActiveRecord: 1.0ms) Started GET "/assets/all.css" for 127.0.0.1 at 2011-10-17 16:08:20 -0600 Served asset /all.css - 404 Not Found (1ms) ActionController::RoutingError (No route matches [GET] "/assets/all.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:08:26 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 11ms (Views: 5.0ms | ActiveRecord: 1.0ms) Started POST "/main/result" for 127.0.0.1 at 2011-10-17 16:09:01 -0600 Processing by MainController#result as HTML Parameters: {"year1"=>"1995", "year2"=>"1996", "body"=>"hatchback"} WARNING: Can't verify CSRF token authenticity Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes" WHERE (year >= 1995 and year <= 1996 and body_style = 'hatchback') Rendered main/result.html.erb within layouts/main (4.0ms) Completed 200 OK in 17ms (Views: 11.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:14:36 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 43ms (Views: 15.0ms | ActiveRecord: 1.0ms) Started GET "/assets/mainstyles.css" for 127.0.0.1 at 2011-10-17 16:14:36 -0600 Served asset /mainstyles.css - 404 Not Found (5ms) ActionController::RoutingError (No route matches [GET] "/assets/mainstyles.css"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:16:26 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 29ms (Views: 23.0ms | ActiveRecord: 1.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:17:05 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 15ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:17:09 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 29ms (Views: 9.0ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:41:38 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Compiled mainstyles.css (0ms) (pid 6644) Completed 200 OK in 42ms (Views: 33.0ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-10-17 16:43:11 -0600 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 26ms (Views: 6.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css?body=1" for 127.0.0.1 at 2011-10-17 16:43:11 -0600 Served asset /mainstyles.css - 200 OK (0ms) Started GET "/popcorn/show_form" for 127.0.0.1 at 2011-10-17 20:32:14 -0600 ActionController::RoutingError (No route matches [GET] "/popcorn/show_form"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (1.0ms) Started GET "/popcorn/show_form" for 127.0.0.1 at 2011-10-17 20:36:09 -0600 ActionController::RoutingError (No route matches [GET] "/popcorn/show_form"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/popcorn/show_form" for 127.0.0.1 at 2011-10-17 20:37:32 -0600 ActionController::RoutingError (No route matches [GET] "/popcorn/show_form"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/assets/rails.png" for 127.0.0.1 at 2011-10-19 20:57:22 -0600 Served asset /rails.png - 200 OK (15ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-19 20:57:29 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (62.4ms) Compiled application.css (15ms) (pid 5068) Completed 200 OK in 421ms (Views: 421.2ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /application.css - 200 OK (0ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /main.css - 304 Not Modified (15ms) Started GET "/assets/corvettes.css?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /corvettes.css - 304 Not Modified (0ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /scaffolds.css - 304 Not Modified (0ms) Started GET "/assets/mainstyles.css?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /mainstyles.css - 304 Not Modified (15ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /jquery.js - 304 Not Modified (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /application.js - 304 Not Modified (0ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /main.js - 304 Not Modified (0ms) Started GET "/assets/corvettes.js?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /corvettes.js - 304 Not Modified (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-10-19 20:57:30 -0600 Served asset /jquery_ujs.js - 304 Not Modified (0ms) Started GET "/say/hello" for 127.0.0.1 at 2011-10-19 20:58:28 -0600 ActionController::RoutingError (No route matches [GET] "/say/hello"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/corvettes" for 127.0.0.1 at 2011-10-19 21:03:07 -0600 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (50.0ms) Completed 200 OK in 210ms (Views: 210.0ms | ActiveRecord: 0.0ms) Started GET "/welcome.html" for 127.0.0.1 at 2011-12-20 10:45:44 -0700 ActionController::RoutingError (No route matches [GET] "/welcome.html"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (62.4ms) Started GET "/cars/welcome.html" for 127.0.0.1 at 2011-12-20 10:46:04 -0700 ActionController::RoutingError (No route matches [GET] "/cars/welcome.html"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/cars/welcome" for 127.0.0.1 at 2011-12-20 10:46:39 -0700 ActionController::RoutingError (No route matches [GET] "/cars/welcome"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (0.0ms) Started GET "/welcome" for 127.0.0.1 at 2011-12-20 10:46:50 -0700 ActionController::RoutingError (No route matches [GET] "/welcome"): Rendered C:/Ruby192/lib/ruby/gems/1.9.1/gems/actionpack-3.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.erb within rescues/layout (15.6ms) Started GET "/corvettes" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Processing by CorvettesController#index as HTML Corvette Load (0.0ms) SELECT "corvettes".* FROM "corvettes"  Rendered corvettes/index.html.erb within layouts/application (15.6ms) Completed 200 OK in 312ms (Views: 312.0ms | ActiveRecord: 0.0ms) Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /application.css - 200 OK (0ms) Started GET "/assets/jquery_ujs.js?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /jquery_ujs.js - 200 OK (31ms) Started GET "/assets/mainstyles.css?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /mainstyles.css - 200 OK (0ms) Started GET "/assets/jquery.js?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /jquery.js - 200 OK (15ms) Started GET "/assets/main.css?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /main.css - 200 OK (0ms) Started GET "/assets/corvettes.css?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /corvettes.css - 200 OK (0ms) Started GET "/assets/scaffolds.css?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /scaffolds.css - 200 OK (15ms) Started GET "/assets/main.js?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /main.js - 200 OK (0ms) Started GET "/assets/corvettes.js?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /corvettes.js - 200 OK (0ms) Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2011-12-20 10:47:08 -0700 Served asset /application.js - 200 OK (0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-12-20 10:48:08 -0700 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes" Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 31ms (Views: 15.6ms | ActiveRecord: 0.0ms) Started GET "/main/welcome" for 127.0.0.1 at 2011-12-20 10:55:00 -0700 Processing by MainController#welcome as HTML  (0.0ms) SELECT COUNT(*) FROM "corvettes"  Rendered main/welcome.html.erb within layouts/main (0.0ms) Completed 200 OK in 16ms (Views: 0.0ms | ActiveRecord: 0.0ms) Started GET "/assets/mainstyles.css?body=1" for 127.0.0.1 at 2011-12-20 10:55:00 -0700 Served asset /mainstyles.css - 304 Not Modified (0ms)