injector 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (76) hide show
  1. data/MIT-LICENSE +20 -0
  2. data/README.md +60 -0
  3. data/Rakefile +38 -0
  4. data/lib/injector.rb +5 -0
  5. data/lib/injector/controller_method.rb +15 -0
  6. data/lib/injector/resolver.rb +55 -0
  7. data/lib/injector/version.rb +3 -0
  8. data/lib/tasks/injector_tasks.rake +4 -0
  9. data/test/dummy/README.rdoc +261 -0
  10. data/test/dummy/Rakefile +7 -0
  11. data/test/dummy/app/assets/javascripts/application.js +15 -0
  12. data/test/dummy/app/assets/javascripts/cars.js +2 -0
  13. data/test/dummy/app/assets/javascripts/dogs.js +2 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +13 -0
  15. data/test/dummy/app/assets/stylesheets/cars.css +4 -0
  16. data/test/dummy/app/assets/stylesheets/dogs.css +4 -0
  17. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  18. data/test/dummy/app/controllers/application_controller.rb +4 -0
  19. data/test/dummy/app/controllers/cars_controller.rb +47 -0
  20. data/test/dummy/app/controllers/dogs_controller.rb +50 -0
  21. data/test/dummy/app/helpers/application_helper.rb +2 -0
  22. data/test/dummy/app/helpers/cars_helper.rb +2 -0
  23. data/test/dummy/app/helpers/dogs_helper.rb +2 -0
  24. data/test/dummy/app/models/car.rb +3 -0
  25. data/test/dummy/app/models/dog.rb +3 -0
  26. data/test/dummy/app/views/cars/_form.html.erb +0 -0
  27. data/test/dummy/app/views/cars/edit.html.erb +0 -0
  28. data/test/dummy/app/views/cars/index.html.erb +0 -0
  29. data/test/dummy/app/views/cars/new.html.erb +0 -0
  30. data/test/dummy/app/views/cars/show.html.erb +0 -0
  31. data/test/dummy/app/views/dogs/_form.html.erb +0 -0
  32. data/test/dummy/app/views/dogs/edit.html.erb +0 -0
  33. data/test/dummy/app/views/dogs/index.html.erb +0 -0
  34. data/test/dummy/app/views/dogs/new.html.erb +0 -0
  35. data/test/dummy/app/views/dogs/show.html.erb +0 -0
  36. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  37. data/test/dummy/config.ru +4 -0
  38. data/test/dummy/config/application.rb +56 -0
  39. data/test/dummy/config/boot.rb +10 -0
  40. data/test/dummy/config/database.yml +25 -0
  41. data/test/dummy/config/environment.rb +5 -0
  42. data/test/dummy/config/environments/development.rb +37 -0
  43. data/test/dummy/config/environments/production.rb +67 -0
  44. data/test/dummy/config/environments/test.rb +37 -0
  45. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  46. data/test/dummy/config/initializers/inflections.rb +15 -0
  47. data/test/dummy/config/initializers/mime_types.rb +5 -0
  48. data/test/dummy/config/initializers/secret_token.rb +7 -0
  49. data/test/dummy/config/initializers/session_store.rb +8 -0
  50. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  51. data/test/dummy/config/locales/en.yml +5 -0
  52. data/test/dummy/config/routes.rb +60 -0
  53. data/test/dummy/db/development.sqlite3 +0 -0
  54. data/test/dummy/db/migrate/20120517025757_create_cars.rb +9 -0
  55. data/test/dummy/db/migrate/20120517043520_create_dogs.rb +9 -0
  56. data/test/dummy/db/schema.rb +28 -0
  57. data/test/dummy/db/test.sqlite3 +0 -0
  58. data/test/dummy/development.sqlite3 +0 -0
  59. data/test/dummy/log/development.log +202 -0
  60. data/test/dummy/log/test.log +3135 -0
  61. data/test/dummy/public/404.html +26 -0
  62. data/test/dummy/public/422.html +26 -0
  63. data/test/dummy/public/500.html +25 -0
  64. data/test/dummy/public/favicon.ico +0 -0
  65. data/test/dummy/script/rails +6 -0
  66. data/test/dummy/test/fixtures/cars.yml +7 -0
  67. data/test/dummy/test/fixtures/dogs.yml +7 -0
  68. data/test/dummy/test/functional/cars_controller_test.rb +46 -0
  69. data/test/dummy/test/functional/dogs_controller_test.rb +46 -0
  70. data/test/dummy/test/unit/car_test.rb +7 -0
  71. data/test/dummy/test/unit/dog_test.rb +7 -0
  72. data/test/dummy/test/unit/helpers/cars_helper_test.rb +4 -0
  73. data/test/dummy/test/unit/helpers/dogs_helper_test.rb +4 -0
  74. data/test/injector_test.rb +7 -0
  75. data/test/test_helper.rb +15 -0
  76. metadata +219 -0
@@ -0,0 +1,37 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Raise exception on mass assignment protection for Active Record models
33
+ config.active_record.mass_assignment_sanitizer = :strict
34
+
35
+ # Print deprecation notices to the stderr
36
+ config.active_support.deprecation = :stderr
37
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,15 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
11
+ #
12
+ # These inflection rules are supported but not enabled by default:
13
+ # ActiveSupport::Inflector.inflections do |inflect|
14
+ # inflect.acronym 'RESTful'
15
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ Dummy::Application.config.secret_token = 'bbbcfb87ac19f9c194beb76026871e93fc60b49fed869e477f008deb1fe3b18c53bfb77d4197feefe7e1d45e1e591cb2ebcf3e830b21c9232400fb9125be1557'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Dummy::Application.config.session_store :cookie_store, key: '_dummy_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # Dummy::Application.config.session_store :active_record_store
@@ -0,0 +1,14 @@
1
+ # Be sure to restart your server when you modify this file.
2
+ #
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json]
9
+ end
10
+
11
+ # Disable root element in JSON by default.
12
+ ActiveSupport.on_load(:active_record) do
13
+ self.include_root_in_json = false
14
+ end
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See https://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,60 @@
1
+ Dummy::Application.routes.draw do
2
+ resources :dogs
3
+
4
+ # The priority is based upon order of creation:
5
+ # first created -> highest priority.
6
+
7
+ # Sample of regular route:
8
+ # match 'products/:id' => 'catalog#view'
9
+ # Keep in mind you can assign values other than :controller and :action
10
+
11
+ # Sample of named route:
12
+ # match 'products/:id/purchase' => 'catalog#purchase', :as => :purchase
13
+ # This route can be invoked with purchase_url(:id => product.id)
14
+
15
+ # Sample resource route (maps HTTP verbs to controller actions automatically):
16
+ resources :cars
17
+
18
+ # Sample resource route with options:
19
+ # resources :products do
20
+ # member do
21
+ # get 'short'
22
+ # post 'toggle'
23
+ # end
24
+ #
25
+ # collection do
26
+ # get 'sold'
27
+ # end
28
+ # end
29
+
30
+ # Sample resource route with sub-resources:
31
+ # resources :products do
32
+ # resources :comments, :sales
33
+ # resource :seller
34
+ # end
35
+
36
+ # Sample resource route with more complex sub-resources
37
+ # resources :products do
38
+ # resources :comments
39
+ # resources :sales do
40
+ # get 'recent', :on => :collection
41
+ # end
42
+ # end
43
+
44
+ # Sample resource route within a namespace:
45
+ # namespace :admin do
46
+ # # Directs /admin/products/* to Admin::ProductsController
47
+ # # (app/controllers/admin/products_controller.rb)
48
+ # resources :products
49
+ # end
50
+
51
+ # You can have the root of your site routed with "root"
52
+ # just remember to delete public/index.html.
53
+ # root :to => 'welcome#index'
54
+
55
+ # See how all your routes lay out with "rake routes"
56
+
57
+ # This is a legacy wild controller route that's not recommended for RESTful applications.
58
+ # Note: This route will make all actions in every controller accessible via GET requests.
59
+ # match ':controller(/:action(/:id))(.:format)'
60
+ end
@@ -0,0 +1,9 @@
1
+ class CreateCars < ActiveRecord::Migration
2
+ def change
3
+ create_table :cars do |t|
4
+ t.string :model
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,9 @@
1
+ class CreateDogs < ActiveRecord::Migration
2
+ def change
3
+ create_table :dogs do |t|
4
+ t.string :name
5
+
6
+ t.timestamps
7
+ end
8
+ end
9
+ end
@@ -0,0 +1,28 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20120517043520) do
15
+
16
+ create_table "cars", :force => true do |t|
17
+ t.string "model"
18
+ t.datetime "created_at", :null => false
19
+ t.datetime "updated_at", :null => false
20
+ end
21
+
22
+ create_table "dogs", :force => true do |t|
23
+ t.string "name"
24
+ t.datetime "created_at", :null => false
25
+ t.datetime "updated_at", :null => false
26
+ end
27
+
28
+ end
File without changes
@@ -0,0 +1,202 @@
1
+  (0.1ms) select sqlite_version(*)
2
+  (2.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateCars (20120517025757)
7
+  (0.0ms) begin transaction
8
+  (0.4ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
9
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120517025757')
10
+  (2.2ms) commit transaction
11
+  (0.2ms) select sqlite_version(*)
12
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+  (0.0ms) PRAGMA index_list("cars")
14
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
15
+  (0.2ms) select sqlite_version(*)
16
+  (2.9ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
17
+  (1.4ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
18
+  (0.0ms) PRAGMA index_list("schema_migrations")
19
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
20
+  (0.1ms) SELECT version FROM "schema_migrations"
21
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
22
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
23
+  (0.2ms) select sqlite_version(*)
24
+  (2.5ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
25
+  (1.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
26
+  (0.0ms) PRAGMA index_list("schema_migrations")
27
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
28
+  (0.1ms) SELECT version FROM "schema_migrations"
29
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
30
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
31
+  (0.3ms) select sqlite_version(*)
32
+  (2.1ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
33
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
34
+  (0.0ms) PRAGMA index_list("schema_migrations")
35
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
36
+  (0.1ms) SELECT version FROM "schema_migrations"
37
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
38
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
39
+ Migrating to CreateCars (20120517025757)
40
+ Migrating to CreateDogs (20120517043355)
41
+  (0.1ms) select sqlite_version(*)
42
+  (0.1ms) begin transaction
43
+  (0.5ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
44
+  (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120517043355')
45
+  (1.8ms) commit transaction
46
+  (0.5ms) select sqlite_version(*)
47
+  (0.2ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
48
+  (0.0ms) PRAGMA index_list("cars")
49
+  (0.0ms) PRAGMA index_list("dogs")
50
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
51
+ Migrating to CreateCars (20120517025757)
52
+ Migrating to CreateDogs (20120517043520)
53
+  (0.0ms) select sqlite_version(*)
54
+  (0.0ms) begin transaction
55
+  (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
56
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
57
+  (0.1ms) rollback transaction
58
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
59
+  (0.2ms) select sqlite_version(*)
60
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
61
+  (0.0ms) PRAGMA index_list("cars")
62
+  (0.0ms) PRAGMA index_list("dogs")
63
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
64
+ Migrating to CreateCars (20120517025757)
65
+ Migrating to CreateDogs (20120517043520)
66
+  (0.0ms) select sqlite_version(*)
67
+  (0.0ms) begin transaction
68
+  (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
69
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
70
+  (0.0ms) rollback transaction
71
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
72
+  (0.2ms) select sqlite_version(*)
73
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
74
+  (0.0ms) PRAGMA index_list("cars")
75
+  (0.0ms) PRAGMA index_list("dogs")
76
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
77
+ Migrating to CreateCars (20120517025757)
78
+ Migrating to CreateDogs (20120517043520)
79
+  (0.0ms) select sqlite_version(*)
80
+  (0.0ms) begin transaction
81
+  (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
82
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
83
+  (0.1ms) rollback transaction
84
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
85
+  (0.2ms) select sqlite_version(*)
86
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
87
+  (0.0ms) PRAGMA index_list("cars")
88
+  (0.0ms) PRAGMA index_list("dogs")
89
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
90
+  (0.3ms) select sqlite_version(*)
91
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
92
+  (0.0ms) PRAGMA index_list("cars")
93
+  (0.0ms) PRAGMA index_list("dogs")
94
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
95
+  (0.2ms) select sqlite_version(*)
96
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
97
+  (0.0ms) PRAGMA index_list("cars")
98
+  (0.0ms) PRAGMA index_list("dogs")
99
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
100
+  (0.3ms) select sqlite_version(*)
101
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
102
+  (0.0ms) PRAGMA index_list("cars")
103
+  (0.0ms) PRAGMA index_list("dogs")
104
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
105
+ Migrating to CreateCars (20120517025757)
106
+ Migrating to CreateDogs (20120517043520)
107
+  (0.0ms) select sqlite_version(*)
108
+  (0.0ms) begin transaction
109
+  (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
110
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
111
+  (0.0ms) rollback transaction
112
+  (1.1ms) select sqlite_version(*)
113
+  (2.6ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
114
+  (1.3ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
115
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
116
+  (0.0ms) PRAGMA index_list("schema_migrations")
117
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
118
+  (0.1ms) SELECT version FROM "schema_migrations"
119
+  (1.3ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517043355')
120
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
121
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
122
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
123
+ Migrating to CreateCars (20120517025757)
124
+ Migrating to CreateDogs (20120517043520)
125
+  (0.0ms) select sqlite_version(*)
126
+  (0.0ms) begin transaction
127
+  (0.1ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
128
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
129
+  (0.1ms) rollback transaction
130
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
131
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
132
+ Migrating to CreateCars (20120517025757)
133
+ Migrating to CreateDogs (20120517043520)
134
+  (0.0ms) select sqlite_version(*)
135
+  (0.0ms) begin transaction
136
+  (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
137
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
138
+  (0.1ms) rollback transaction
139
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
140
+ Migrating to CreateCars (20120517025757)
141
+ Migrating to CreateDogs (20120517043520)
142
+  (0.0ms) select sqlite_version(*)
143
+  (0.0ms) begin transaction
144
+  (0.2ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
145
+ SQLite3::SQLException: table "dogs" already exists: CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
146
+  (0.1ms) rollback transaction
147
+  (0.1ms) select sqlite_version(*)
148
+  (2.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
149
+  (0.1ms) PRAGMA index_list("schema_migrations")
150
+  (1.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
151
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
152
+ Migrating to CreateCars (20120517025757)
153
+  (0.0ms) begin transaction
154
+  (0.4ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
155
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120517025757')
156
+  (1.4ms) commit transaction
157
+ Migrating to CreateDogs (20120517043520)
158
+  (0.0ms) begin transaction
159
+  (0.4ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
160
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20120517043520')
161
+  (1.2ms) commit transaction
162
+  (0.2ms) select sqlite_version(*)
163
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
164
+  (0.0ms) PRAGMA index_list("cars")
165
+  (0.0ms) PRAGMA index_list("dogs")
166
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
167
+  (0.2ms) select sqlite_version(*)
168
+  (3.0ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
169
+  (1.8ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
170
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
171
+  (0.0ms) PRAGMA index_list("schema_migrations")
172
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
173
+  (0.1ms) SELECT version FROM "schema_migrations"
174
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517043520')
175
+  (1.1ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
176
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
177
+  (0.2ms) select sqlite_version(*)
178
+  (1.8ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
179
+  (1.4ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
180
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
181
+  (0.0ms) PRAGMA index_list("schema_migrations")
182
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
183
+  (0.1ms) SELECT version FROM "schema_migrations"
184
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517043520')
185
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
186
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
187
+  (0.2ms) select sqlite_version(*)
188
+  (2.9ms) CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) 
189
+  (1.4ms) CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
190
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
191
+  (0.0ms) PRAGMA index_list("schema_migrations")
192
+  (1.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
193
+  (0.1ms) SELECT version FROM "schema_migrations"
194
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517043520')
195
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
196
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
197
+ Migrating to CreateCars (20120517025757)
198
+ Migrating to CreateDogs (20120517043520)
199
+  (0.2ms) select sqlite_version(*)
200
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
201
+  (0.0ms) PRAGMA index_list("cars")
202
+  (0.0ms) PRAGMA index_list("dogs")
@@ -0,0 +1,3135 @@
1
+  (0.3ms) begin transaction
2
+  (0.0ms) rollback transaction
3
+  (0.3ms) begin transaction
4
+  (0.0ms) rollback transaction
5
+  (0.3ms) begin transaction
6
+  (0.0ms) rollback transaction
7
+  (0.3ms) begin transaction
8
+  (0.1ms) rollback transaction
9
+  (0.3ms) begin transaction
10
+  (0.0ms) rollback transaction
11
+  (0.3ms) begin transaction
12
+  (0.0ms) rollback transaction
13
+  (0.3ms) begin transaction
14
+  (0.1ms) rollback transaction
15
+  (0.3ms) begin transaction
16
+  (0.1ms) rollback transaction
17
+  (0.3ms) begin transaction
18
+  (0.1ms) rollback transaction
19
+  (0.4ms) begin transaction
20
+  (0.1ms) rollback transaction
21
+  (0.3ms) begin transaction
22
+ Processing by CarsController#index as HTML
23
+ Completed 500 Internal Server Error in 15ms
24
+  (0.1ms) rollback transaction
25
+  (0.0ms) begin transaction
26
+  (0.0ms) rollback transaction
27
+  (0.3ms) begin transaction
28
+ Processing by CarsController#index as HTML
29
+ Completed 500 Internal Server Error in 11ms
30
+  (0.1ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+  (0.0ms) rollback transaction
33
+  (0.3ms) begin transaction
34
+ Processing by CarsController#index as HTML
35
+ Rendered cars/index.html.erb within layouts/application (24.0ms)
36
+ Completed 200 OK in 33ms (Views: 31.3ms | ActiveRecord: 0.0ms)
37
+  (0.1ms) rollback transaction
38
+  (0.1ms) begin transaction
39
+  (0.1ms) rollback transaction
40
+  (0.3ms) begin transaction
41
+ Processing by CarsController#index as HTML
42
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
43
+ Completed 500 Internal Server Error in 1ms
44
+  (0.0ms) rollback transaction
45
+  (0.0ms) begin transaction
46
+  (0.0ms) rollback transaction
47
+  (0.3ms) begin transaction
48
+ Processing by CarsController#index as HTML
49
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
50
+ Rendered cars/index.html.erb within layouts/application (1.5ms)
51
+ Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.1ms)
52
+  (0.1ms) rollback transaction
53
+  (0.0ms) begin transaction
54
+  (0.0ms) rollback transaction
55
+  (0.3ms) begin transaction
56
+  (0.1ms) SAVEPOINT active_record_1
57
+ SQL (54.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:10:18 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:10:18 UTC +00:00]]
58
+  (0.1ms) RELEASE SAVEPOINT active_record_1
59
+ Processing by CarsController#index as HTML
60
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
61
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
62
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
63
+  (0.5ms) rollback transaction
64
+  (0.0ms) begin transaction
65
+  (0.0ms) rollback transaction
66
+  (0.3ms) begin transaction
67
+  (0.1ms) SAVEPOINT active_record_1
68
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:10:56 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:10:56 UTC +00:00]]
69
+  (0.0ms) RELEASE SAVEPOINT active_record_1
70
+ Processing by CarsController#index as HTML
71
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" 
72
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
73
+ Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms)
74
+  (0.7ms) rollback transaction
75
+  (0.1ms) begin transaction
76
+  (0.1ms) rollback transaction
77
+  (0.3ms) begin transaction
78
+  (0.1ms) SAVEPOINT active_record_1
79
+ SQL (3.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:11:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:11:24 UTC +00:00]]
80
+  (0.0ms) RELEASE SAVEPOINT active_record_1
81
+ Processing by CarsController#index as HTML
82
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
83
+ Rendered cars/index.html.erb within layouts/application (1.6ms)
84
+ Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.1ms)
85
+  (0.6ms) rollback transaction
86
+  (0.1ms) begin transaction
87
+  (0.0ms) rollback transaction
88
+  (0.3ms) begin transaction
89
+  (0.1ms) SAVEPOINT active_record_1
90
+ SQL (3.7ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:11:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:11:39 UTC +00:00]]
91
+  (0.1ms) RELEASE SAVEPOINT active_record_1
92
+ Processing by CarsController#index as HTML
93
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
94
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
95
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.1ms)
96
+  (0.6ms) rollback transaction
97
+  (0.0ms) begin transaction
98
+  (0.0ms) rollback transaction
99
+  (0.3ms) begin transaction
100
+  (0.1ms) SAVEPOINT active_record_1
101
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:11:55 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:11:55 UTC +00:00]]
102
+  (0.0ms) RELEASE SAVEPOINT active_record_1
103
+ Processing by CarsController#index as HTML
104
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
105
+ Rendered cars/index.html.erb within layouts/application (1.7ms)
106
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)
107
+  (0.6ms) rollback transaction
108
+  (0.1ms) begin transaction
109
+  (0.0ms) rollback transaction
110
+  (0.3ms) begin transaction
111
+  (0.1ms) SAVEPOINT active_record_1
112
+ SQL (3.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:13:01 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:13:01 UTC +00:00]]
113
+  (0.0ms) RELEASE SAVEPOINT active_record_1
114
+ Processing by CarsController#index as HTML
115
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" 
116
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
117
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
118
+  (0.6ms) rollback transaction
119
+  (0.0ms) begin transaction
120
+  (0.0ms) rollback transaction
121
+  (0.3ms) begin transaction
122
+  (0.0ms) SAVEPOINT active_record_1
123
+ SQL (3.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:20:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:20:44 UTC +00:00]]
124
+  (0.0ms) RELEASE SAVEPOINT active_record_1
125
+ Processing by CarsController#index as HTML
126
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
127
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
128
+ Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.1ms)
129
+  (0.5ms) rollback transaction
130
+  (0.0ms) begin transaction
131
+  (0.0ms) rollback transaction
132
+  (0.3ms) begin transaction
133
+  (0.1ms) SAVEPOINT active_record_1
134
+ SQL (4.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:20:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:20:58 UTC +00:00]]
135
+  (0.1ms) RELEASE SAVEPOINT active_record_1
136
+ Processing by CarsController#index as HTML
137
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
138
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
139
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)
140
+  (0.6ms) rollback transaction
141
+  (0.1ms) begin transaction
142
+  (0.1ms) rollback transaction
143
+  (0.3ms) begin transaction
144
+  (0.1ms) SAVEPOINT active_record_1
145
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:22:02 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:22:02 UTC +00:00]]
146
+  (0.1ms) RELEASE SAVEPOINT active_record_1
147
+ Processing by CarsController#index as HTML
148
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
149
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
150
+ Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.1ms)
151
+  (0.5ms) rollback transaction
152
+  (0.1ms) begin transaction
153
+  (0.1ms) rollback transaction
154
+  (0.3ms) begin transaction
155
+  (0.1ms) SAVEPOINT active_record_1
156
+ SQL (3.7ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:23:57 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:23:57 UTC +00:00]]
157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
158
+ Processing by CarsController#index as HTML
159
+ Completed 500 Internal Server Error in 0ms
160
+  (0.6ms) rollback transaction
161
+  (0.0ms) begin transaction
162
+  (0.0ms) rollback transaction
163
+  (0.3ms) begin transaction
164
+  (0.1ms) SAVEPOINT active_record_1
165
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:24:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:24:19 UTC +00:00]]
166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
167
+ Processing by CarsController#index as HTML
168
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
169
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
170
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)
171
+  (0.6ms) rollback transaction
172
+  (0.0ms) begin transaction
173
+  (0.0ms) rollback transaction
174
+  (0.3ms) begin transaction
175
+  (0.1ms) SAVEPOINT active_record_1
176
+ SQL (3.9ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:25:04 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:25:04 UTC +00:00]]
177
+  (0.1ms) RELEASE SAVEPOINT active_record_1
178
+ Processing by CarsController#index as HTML
179
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
180
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
181
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms)
182
+  (0.7ms) rollback transaction
183
+  (0.1ms) begin transaction
184
+  (0.1ms) SAVEPOINT active_record_1
185
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:25:04 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:25:04 UTC +00:00]]
186
+  (0.1ms) RELEASE SAVEPOINT active_record_1
187
+ Processing by CarsController#show as HTML
188
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
189
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
190
+  (0.6ms) rollback transaction
191
+  (0.0ms) begin transaction
192
+  (0.0ms) rollback transaction
193
+  (0.3ms) begin transaction
194
+  (0.1ms) SAVEPOINT active_record_1
195
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:25:38 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:25:38 UTC +00:00]]
196
+  (0.0ms) RELEASE SAVEPOINT active_record_1
197
+ Processing by CarsController#index as HTML
198
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
199
+ Rendered cars/index.html.erb within layouts/application (13.1ms)
200
+ Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.1ms)
201
+  (0.6ms) rollback transaction
202
+  (0.1ms) begin transaction
203
+  (0.0ms) SAVEPOINT active_record_1
204
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:25:38 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:25:38 UTC +00:00]]
205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
206
+ Processing by CarsController#show as HTML
207
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
208
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
209
+  (0.5ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+  (0.1ms) rollback transaction
212
+  (0.3ms) begin transaction
213
+  (0.0ms) SAVEPOINT active_record_1
214
+ SQL (6.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:26:05 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:26:05 UTC +00:00]]
215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
216
+ Processing by CarsController#index as HTML
217
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" 
218
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
219
+ Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms)
220
+  (0.6ms) rollback transaction
221
+  (0.1ms) begin transaction
222
+  (0.0ms) SAVEPOINT active_record_1
223
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:26:05 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:26:05 UTC +00:00]]
224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
225
+  (0.5ms) rollback transaction
226
+  (0.0ms) begin transaction
227
+  (0.0ms) rollback transaction
228
+  (0.3ms) begin transaction
229
+  (0.1ms) SAVEPOINT active_record_1
230
+ SQL (3.7ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:26:17 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:26:17 UTC +00:00]]
231
+  (0.1ms) RELEASE SAVEPOINT active_record_1
232
+ Processing by CarsController#index as HTML
233
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
234
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
235
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)
236
+  (0.4ms) rollback transaction
237
+  (0.0ms) begin transaction
238
+  (0.0ms) SAVEPOINT active_record_1
239
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:26:18 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:26:18 UTC +00:00]]
240
+  (0.0ms) RELEASE SAVEPOINT active_record_1
241
+  (0.5ms) rollback transaction
242
+  (0.0ms) begin transaction
243
+  (0.0ms) rollback transaction
244
+  (0.3ms) begin transaction
245
+  (0.1ms) SAVEPOINT active_record_1
246
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:37:17 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:37:17 UTC +00:00]]
247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
248
+ Processing by CarsController#index as HTML
249
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
250
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
251
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
252
+  (0.6ms) rollback transaction
253
+  (0.1ms) begin transaction
254
+  (0.0ms) SAVEPOINT active_record_1
255
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:37:17 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:37:17 UTC +00:00]]
256
+  (0.0ms) RELEASE SAVEPOINT active_record_1
257
+ Processing by CarsController#show as HTML
258
+ Parameters: {"id"=>"1"}
259
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
260
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
261
+  (0.6ms) rollback transaction
262
+  (0.0ms) begin transaction
263
+  (0.0ms) rollback transaction
264
+  (0.3ms) begin transaction
265
+  (0.1ms) SAVEPOINT active_record_1
266
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:38:22 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:38:22 UTC +00:00]]
267
+  (0.0ms) RELEASE SAVEPOINT active_record_1
268
+ Processing by CarsController#index as HTML
269
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" 
270
+ Completed 500 Internal Server Error in 2ms
271
+  (0.5ms) rollback transaction
272
+  (0.1ms) begin transaction
273
+  (0.0ms) SAVEPOINT active_record_1
274
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:38:22 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:38:22 UTC +00:00]]
275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
276
+ Processing by CarsController#show as HTML
277
+ Parameters: {"id"=>"1"}
278
+ Car Load (17.4ms) SELECT "cars".* FROM "cars" 
279
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
280
+ Completed 200 OK in 28ms (Views: 8.6ms | ActiveRecord: 17.5ms)
281
+  (0.6ms) rollback transaction
282
+  (0.0ms) begin transaction
283
+  (0.0ms) rollback transaction
284
+  (0.3ms) begin transaction
285
+  (0.0ms) SAVEPOINT active_record_1
286
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:39:57 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:39:57 UTC +00:00]]
287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
288
+ Processing by CarsController#index as HTML
289
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
290
+ Completed 500 Internal Server Error in 1ms
291
+  (0.4ms) rollback transaction
292
+  (0.1ms) begin transaction
293
+  (0.0ms) SAVEPOINT active_record_1
294
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:39:57 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:39:57 UTC +00:00]]
295
+  (0.0ms) RELEASE SAVEPOINT active_record_1
296
+ Processing by CarsController#show as HTML
297
+ Parameters: {"car"=>{"id"=>"1"}}
298
+ Car Load (17.0ms) SELECT "cars".* FROM "cars" 
299
+ Completed 500 Internal Server Error in 18ms
300
+  (0.5ms) rollback transaction
301
+  (0.0ms) begin transaction
302
+  (0.0ms) rollback transaction
303
+  (0.3ms) begin transaction
304
+  (0.1ms) SAVEPOINT active_record_1
305
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:40:15 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:40:15 UTC +00:00]]
306
+  (0.0ms) RELEASE SAVEPOINT active_record_1
307
+ Processing by CarsController#index as HTML
308
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" 
309
+ Completed 500 Internal Server Error in 2ms
310
+  (0.6ms) rollback transaction
311
+  (0.0ms) begin transaction
312
+  (0.0ms) SAVEPOINT active_record_1
313
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:40:15 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:40:15 UTC +00:00]]
314
+  (0.1ms) RELEASE SAVEPOINT active_record_1
315
+ Processing by CarsController#show as HTML
316
+ Parameters: {"car"=>{"id"=>"1"}}
317
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
318
+ Completed 500 Internal Server Error in 1ms
319
+  (0.6ms) rollback transaction
320
+  (0.0ms) begin transaction
321
+  (0.0ms) rollback transaction
322
+  (0.3ms) begin transaction
323
+  (0.0ms) SAVEPOINT active_record_1
324
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:40:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:40:53 UTC +00:00]]
325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
326
+ Processing by CarsController#index as HTML
327
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
328
+ Completed 500 Internal Server Error in 1ms
329
+  (0.6ms) rollback transaction
330
+  (0.1ms) begin transaction
331
+  (0.1ms) SAVEPOINT active_record_1
332
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:40:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:40:53 UTC +00:00]]
333
+  (0.1ms) RELEASE SAVEPOINT active_record_1
334
+ Processing by CarsController#show as HTML
335
+ Parameters: {"car"=>{"id"=>"1"}}
336
+ Car Load (16.8ms) SELECT "cars".* FROM "cars" 
337
+ Completed 500 Internal Server Error in 18ms
338
+  (0.5ms) rollback transaction
339
+  (0.0ms) begin transaction
340
+  (0.0ms) rollback transaction
341
+  (0.3ms) begin transaction
342
+  (0.1ms) SAVEPOINT active_record_1
343
+ SQL (4.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:41:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:41:32 UTC +00:00]]
344
+  (0.1ms) RELEASE SAVEPOINT active_record_1
345
+ Processing by CarsController#index as HTML
346
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
347
+ Completed 500 Internal Server Error in 1ms
348
+  (0.5ms) rollback transaction
349
+  (0.0ms) begin transaction
350
+  (0.0ms) SAVEPOINT active_record_1
351
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:41:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:41:32 UTC +00:00]]
352
+  (0.0ms) RELEASE SAVEPOINT active_record_1
353
+ Processing by CarsController#show as HTML
354
+ Parameters: {"car"=>{"id"=>"1"}}
355
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
356
+ Completed 500 Internal Server Error in 1ms
357
+  (0.5ms) rollback transaction
358
+  (0.0ms) begin transaction
359
+  (0.0ms) rollback transaction
360
+  (0.3ms) begin transaction
361
+  (0.0ms) SAVEPOINT active_record_1
362
+ SQL (3.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:41:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:41:50 UTC +00:00]]
363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
364
+ Processing by CarsController#index as HTML
365
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
366
+ Completed 500 Internal Server Error in 1ms
367
+  (0.5ms) rollback transaction
368
+  (0.1ms) begin transaction
369
+  (0.0ms) SAVEPOINT active_record_1
370
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:41:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:41:50 UTC +00:00]]
371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
372
+ Processing by CarsController#show as HTML
373
+ Parameters: {"car"=>{"id"=>"1"}}
374
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
375
+ Completed 500 Internal Server Error in 18ms
376
+  (0.6ms) rollback transaction
377
+  (0.0ms) begin transaction
378
+  (0.0ms) rollback transaction
379
+  (0.3ms) begin transaction
380
+  (0.0ms) SAVEPOINT active_record_1
381
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:42:42 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:42:42 UTC +00:00]]
382
+  (0.0ms) RELEASE SAVEPOINT active_record_1
383
+ Processing by CarsController#index as HTML
384
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
385
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
386
+ Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.1ms)
387
+  (0.6ms) rollback transaction
388
+  (0.1ms) begin transaction
389
+  (0.0ms) SAVEPOINT active_record_1
390
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:42:42 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:42:42 UTC +00:00]]
391
+  (0.0ms) RELEASE SAVEPOINT active_record_1
392
+ Processing by CarsController#show as HTML
393
+ Parameters: {"car"=>{"id"=>"1"}}
394
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
395
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
396
+  (0.5ms) rollback transaction
397
+  (0.0ms) begin transaction
398
+  (0.0ms) rollback transaction
399
+  (0.3ms) begin transaction
400
+  (0.1ms) SAVEPOINT active_record_1
401
+ SQL (3.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:43:22 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:43:22 UTC +00:00]]
402
+  (0.1ms) RELEASE SAVEPOINT active_record_1
403
+ Processing by CarsController#index as HTML
404
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
405
+ Completed 500 Internal Server Error in 1ms
406
+  (0.6ms) rollback transaction
407
+  (0.0ms) begin transaction
408
+  (0.0ms) SAVEPOINT active_record_1
409
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:43:22 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:43:22 UTC +00:00]]
410
+  (0.0ms) RELEASE SAVEPOINT active_record_1
411
+ Processing by CarsController#show as HTML
412
+ Parameters: {"car"=>{"id"=>"1"}}
413
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
414
+ Completed 500 Internal Server Error in 1ms
415
+  (0.6ms) rollback transaction
416
+  (0.0ms) begin transaction
417
+  (0.0ms) rollback transaction
418
+  (0.3ms) begin transaction
419
+  (0.1ms) SAVEPOINT active_record_1
420
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:45:23 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:45:23 UTC +00:00]]
421
+  (0.0ms) RELEASE SAVEPOINT active_record_1
422
+ Processing by CarsController#index as HTML
423
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
424
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
425
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
426
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms)
427
+  (0.8ms) rollback transaction
428
+  (0.1ms) begin transaction
429
+  (0.1ms) SAVEPOINT active_record_1
430
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:45:23 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:45:23 UTC +00:00]]
431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
432
+ Processing by CarsController#show as HTML
433
+ Parameters: {"car"=>{"id"=>"1"}}
434
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
435
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
436
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
437
+  (0.6ms) rollback transaction
438
+  (0.0ms) begin transaction
439
+  (0.0ms) rollback transaction
440
+  (0.4ms) begin transaction
441
+  (0.0ms) SAVEPOINT active_record_1
442
+ SQL (3.1ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:45:42 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:45:42 UTC +00:00]]
443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
444
+ Processing by CarsController#index as HTML
445
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
446
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
447
+ Rendered cars/index.html.erb within layouts/application (2.0ms)
448
+ Completed 200 OK in 30ms (Views: 28.0ms | ActiveRecord: 0.2ms)
449
+  (0.6ms) rollback transaction
450
+  (0.1ms) begin transaction
451
+  (0.0ms) SAVEPOINT active_record_1
452
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:45:42 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:45:42 UTC +00:00]]
453
+  (0.0ms) RELEASE SAVEPOINT active_record_1
454
+ Processing by CarsController#show as HTML
455
+ Parameters: {"car"=>{"id"=>"1"}}
456
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
457
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
458
+ Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.2ms)
459
+  (0.6ms) rollback transaction
460
+  (0.0ms) begin transaction
461
+  (0.0ms) rollback transaction
462
+  (0.3ms) begin transaction
463
+  (0.1ms) SAVEPOINT active_record_1
464
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:46:02 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:46:02 UTC +00:00]]
465
+  (0.0ms) RELEASE SAVEPOINT active_record_1
466
+ Processing by CarsController#index as HTML
467
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
468
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
469
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
470
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.2ms)
471
+  (0.6ms) rollback transaction
472
+  (0.0ms) begin transaction
473
+  (0.0ms) SAVEPOINT active_record_1
474
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:46:02 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:46:02 UTC +00:00]]
475
+  (0.0ms) RELEASE SAVEPOINT active_record_1
476
+ Processing by CarsController#show as HTML
477
+ Parameters: {"id"=>"1"}
478
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
479
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
480
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
481
+  (0.5ms) rollback transaction
482
+  (0.0ms) begin transaction
483
+  (0.0ms) rollback transaction
484
+  (0.3ms) begin transaction
485
+  (0.1ms) SAVEPOINT active_record_1
486
+ SQL (3.7ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:46:08 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:46:08 UTC +00:00]]
487
+  (0.0ms) RELEASE SAVEPOINT active_record_1
488
+ Processing by CarsController#index as HTML
489
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
490
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
491
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
492
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
493
+  (0.6ms) rollback transaction
494
+  (0.1ms) begin transaction
495
+  (0.0ms) SAVEPOINT active_record_1
496
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:46:08 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:46:08 UTC +00:00]]
497
+  (0.0ms) RELEASE SAVEPOINT active_record_1
498
+ Processing by CarsController#show as HTML
499
+ Parameters: {"id"=>"1"}
500
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
501
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
502
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
503
+  (0.6ms) rollback transaction
504
+  (0.0ms) begin transaction
505
+  (0.0ms) rollback transaction
506
+  (0.3ms) begin transaction
507
+  (0.1ms) SAVEPOINT active_record_1
508
+ SQL (3.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:46:55 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:46:55 UTC +00:00]]
509
+  (0.1ms) RELEASE SAVEPOINT active_record_1
510
+ Processing by CarsController#index as HTML
511
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
512
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
513
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
514
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
515
+  (0.6ms) rollback transaction
516
+  (0.1ms) begin transaction
517
+  (0.0ms) SAVEPOINT active_record_1
518
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:46:55 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:46:55 UTC +00:00]]
519
+  (0.0ms) RELEASE SAVEPOINT active_record_1
520
+ Processing by CarsController#show as HTML
521
+ Parameters: {"id"=>"1"}
522
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
523
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
524
+ Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.2ms)
525
+  (0.6ms) rollback transaction
526
+  (0.0ms) begin transaction
527
+  (0.0ms) rollback transaction
528
+  (0.3ms) begin transaction
529
+  (0.0ms) SAVEPOINT active_record_1
530
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:47:22 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:47:22 UTC +00:00]]
531
+  (0.0ms) RELEASE SAVEPOINT active_record_1
532
+ Processing by CarsController#index as HTML
533
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
534
+ Completed 500 Internal Server Error in 1ms
535
+  (0.6ms) rollback transaction
536
+  (0.1ms) begin transaction
537
+  (0.0ms) SAVEPOINT active_record_1
538
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:47:22 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:47:22 UTC +00:00]]
539
+  (0.1ms) RELEASE SAVEPOINT active_record_1
540
+ Processing by CarsController#show as HTML
541
+ Parameters: {"id"=>"1"}
542
+ Car Load (19.5ms) SELECT "cars".* FROM "cars" 
543
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
544
+ Completed 200 OK in 30ms (Views: 8.4ms | ActiveRecord: 19.7ms)
545
+  (0.6ms) rollback transaction
546
+  (0.0ms) begin transaction
547
+  (0.0ms) rollback transaction
548
+  (0.3ms) begin transaction
549
+  (0.1ms) SAVEPOINT active_record_1
550
+ SQL (3.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:48:07 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:48:07 UTC +00:00]]
551
+  (0.1ms) RELEASE SAVEPOINT active_record_1
552
+ Processing by CarsController#index as HTML
553
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
554
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
555
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.1ms)
556
+  (0.6ms) rollback transaction
557
+  (0.1ms) begin transaction
558
+  (0.0ms) SAVEPOINT active_record_1
559
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:48:07 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:48:07 UTC +00:00]]
560
+  (0.0ms) RELEASE SAVEPOINT active_record_1
561
+ Processing by CarsController#show as HTML
562
+ Parameters: {"id"=>"1"}
563
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
564
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
565
+ Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.2ms)
566
+  (0.6ms) rollback transaction
567
+  (0.1ms) begin transaction
568
+  (0.0ms) rollback transaction
569
+  (0.4ms) begin transaction
570
+  (0.0ms) SAVEPOINT active_record_1
571
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:49:57 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:49:57 UTC +00:00]]
572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
573
+ Processing by CarsController#index as HTML
574
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
575
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
576
+ Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.1ms)
577
+  (0.7ms) rollback transaction
578
+  (0.1ms) begin transaction
579
+  (0.1ms) SAVEPOINT active_record_1
580
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:49:57 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:49:57 UTC +00:00]]
581
+  (0.0ms) RELEASE SAVEPOINT active_record_1
582
+ Processing by CarsController#show as HTML
583
+ Parameters: {"id"=>"1"}
584
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
585
+ Car Load (0.3ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
586
+ Completed 200 OK in 7ms (Views: 3.1ms | ActiveRecord: 0.4ms)
587
+  (0.5ms) rollback transaction
588
+  (0.0ms) begin transaction
589
+  (0.0ms) rollback transaction
590
+  (0.4ms) begin transaction
591
+  (0.1ms) SAVEPOINT active_record_1
592
+ SQL (4.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:52:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:52:03 UTC +00:00]]
593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
594
+ Processing by CarsController#index as HTML
595
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
596
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
597
+ Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.1ms)
598
+  (0.6ms) rollback transaction
599
+  (0.0ms) begin transaction
600
+  (0.0ms) SAVEPOINT active_record_1
601
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:52:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:52:03 UTC +00:00]]
602
+  (0.0ms) RELEASE SAVEPOINT active_record_1
603
+ Processing by CarsController#show as HTML
604
+ Parameters: {"id"=>"1"}
605
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
606
+ Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
607
+  (0.5ms) rollback transaction
608
+  (0.1ms) begin transaction
609
+  (0.0ms) rollback transaction
610
+  (0.3ms) begin transaction
611
+  (0.0ms) SAVEPOINT active_record_1
612
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:52:38 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:52:38 UTC +00:00]]
613
+  (0.0ms) RELEASE SAVEPOINT active_record_1
614
+ Processing by CarsController#index as HTML
615
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
616
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
617
+ Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.1ms)
618
+  (0.4ms) rollback transaction
619
+  (0.0ms) begin transaction
620
+  (0.0ms) SAVEPOINT active_record_1
621
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:52:38 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:52:38 UTC +00:00]]
622
+  (0.0ms) RELEASE SAVEPOINT active_record_1
623
+ Processing by CarsController#show as HTML
624
+ Parameters: {"id"=>"1"}
625
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
626
+ Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.2ms)
627
+  (0.5ms) rollback transaction
628
+  (0.0ms) begin transaction
629
+  (0.0ms) rollback transaction
630
+  (0.3ms) begin transaction
631
+  (0.0ms) SAVEPOINT active_record_1
632
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:53:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:53:53 UTC +00:00]]
633
+  (0.1ms) RELEASE SAVEPOINT active_record_1
634
+ Processing by CarsController#index as HTML
635
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
636
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
637
+ Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.1ms)
638
+  (0.6ms) rollback transaction
639
+  (0.0ms) begin transaction
640
+  (0.0ms) SAVEPOINT active_record_1
641
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:53:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:53:53 UTC +00:00]]
642
+  (0.0ms) RELEASE SAVEPOINT active_record_1
643
+ Processing by CarsController#new as HTML
644
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
645
+  (0.4ms) rollback transaction
646
+  (0.0ms) begin transaction
647
+  (0.0ms) rollback transaction
648
+  (0.3ms) begin transaction
649
+  (0.1ms) SAVEPOINT active_record_1
650
+ SQL (3.1ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:54:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:54:21 UTC +00:00]]
651
+  (0.0ms) RELEASE SAVEPOINT active_record_1
652
+ Processing by CarsController#index as HTML
653
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" 
654
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
655
+ Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.2ms)
656
+  (0.4ms) rollback transaction
657
+  (0.1ms) begin transaction
658
+  (0.0ms) SAVEPOINT active_record_1
659
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:54:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:54:21 UTC +00:00]]
660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
661
+ Processing by CarsController#new as HTML
662
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
663
+  (0.5ms) rollback transaction
664
+  (0.1ms) begin transaction
665
+  (0.0ms) rollback transaction
666
+  (0.3ms) begin transaction
667
+  (0.0ms) SAVEPOINT active_record_1
668
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:55:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:55:44 UTC +00:00]]
669
+  (0.0ms) RELEASE SAVEPOINT active_record_1
670
+ Processing by CarsController#index as HTML
671
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
672
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
673
+ Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.1ms)
674
+  (0.6ms) rollback transaction
675
+  (0.0ms) begin transaction
676
+  (0.0ms) SAVEPOINT active_record_1
677
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:55:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:55:44 UTC +00:00]]
678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
679
+ Processing by CarsController#new as HTML
680
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
681
+  (0.6ms) rollback transaction
682
+  (0.1ms) begin transaction
683
+  (0.0ms) rollback transaction
684
+  (0.3ms) begin transaction
685
+  (0.0ms) SAVEPOINT active_record_1
686
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:56:11 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:56:11 UTC +00:00]]
687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
688
+ Processing by CarsController#index as HTML
689
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
690
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
691
+ Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.1ms)
692
+  (0.6ms) rollback transaction
693
+  (0.1ms) begin transaction
694
+  (0.0ms) SAVEPOINT active_record_1
695
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:56:11 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:56:11 UTC +00:00]]
696
+  (0.0ms) RELEASE SAVEPOINT active_record_1
697
+ Processing by CarsController#new as HTML
698
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
699
+  (0.5ms) rollback transaction
700
+  (0.1ms) begin transaction
701
+  (0.0ms) rollback transaction
702
+  (0.3ms) begin transaction
703
+  (0.1ms) SAVEPOINT active_record_1
704
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:56:16 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:56:16 UTC +00:00]]
705
+  (0.0ms) RELEASE SAVEPOINT active_record_1
706
+ Processing by CarsController#index as HTML
707
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
708
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
709
+ Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.1ms)
710
+  (0.6ms) rollback transaction
711
+  (0.1ms) begin transaction
712
+  (0.0ms) SAVEPOINT active_record_1
713
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:56:16 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:56:16 UTC +00:00]]
714
+  (0.0ms) RELEASE SAVEPOINT active_record_1
715
+ Processing by CarsController#new as HTML
716
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
717
+  (0.5ms) rollback transaction
718
+  (0.1ms) begin transaction
719
+  (0.0ms) rollback transaction
720
+  (0.3ms) begin transaction
721
+  (0.1ms) SAVEPOINT active_record_1
722
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:56:38 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:56:38 UTC +00:00]]
723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
724
+ Processing by CarsController#index as HTML
725
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
726
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
727
+ Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.1ms)
728
+  (0.7ms) rollback transaction
729
+  (0.0ms) begin transaction
730
+  (0.1ms) SAVEPOINT active_record_1
731
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:56:38 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:56:38 UTC +00:00]]
732
+  (0.1ms) RELEASE SAVEPOINT active_record_1
733
+ Processing by CarsController#new as HTML
734
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
735
+  (0.5ms) rollback transaction
736
+  (0.0ms) begin transaction
737
+  (0.0ms) rollback transaction
738
+  (0.3ms) begin transaction
739
+  (0.1ms) SAVEPOINT active_record_1
740
+ SQL (3.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:57:48 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:57:48 UTC +00:00]]
741
+  (0.0ms) RELEASE SAVEPOINT active_record_1
742
+ Processing by CarsController#index as HTML
743
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
744
+ Rendered cars/index.html.erb within layouts/application (1.4ms)
745
+ Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
746
+  (0.5ms) rollback transaction
747
+  (0.1ms) begin transaction
748
+  (0.0ms) SAVEPOINT active_record_1
749
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:57:48 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:57:48 UTC +00:00]]
750
+  (0.0ms) RELEASE SAVEPOINT active_record_1
751
+ Processing by CarsController#new as HTML
752
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
753
+  (0.5ms) rollback transaction
754
+  (0.0ms) begin transaction
755
+  (0.0ms) rollback transaction
756
+  (0.3ms) begin transaction
757
+  (0.1ms) SAVEPOINT active_record_1
758
+ SQL (3.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:59:03 UTC +00:00]]
759
+  (0.0ms) RELEASE SAVEPOINT active_record_1
760
+ Processing by CarsController#index as HTML
761
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
762
+ Rendered cars/index.html.erb within layouts/application (1.3ms)
763
+ Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms)
764
+  (0.6ms) rollback transaction
765
+  (0.1ms) begin transaction
766
+  (0.0ms) SAVEPOINT active_record_1
767
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 03:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 03:59:03 UTC +00:00]]
768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
769
+ Processing by CarsController#new as HTML
770
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
771
+  (0.6ms) rollback transaction
772
+  (0.0ms) begin transaction
773
+  (0.0ms) rollback transaction
774
+  (0.3ms) begin transaction
775
+  (0.1ms) SAVEPOINT active_record_1
776
+ SQL (3.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:06:15 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:06:15 UTC +00:00]]
777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
778
+ Processing by CarsController#edit as HTML
779
+ Parameters: {"id"=>"1"}
780
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
781
+ Rendered cars/edit.html.erb within layouts/application (1.4ms)
782
+ Completed 200 OK in 12ms (Views: 9.9ms | ActiveRecord: 0.2ms)
783
+  (0.5ms) rollback transaction
784
+  (0.0ms) begin transaction
785
+  (0.0ms) SAVEPOINT active_record_1
786
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:06:15 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:06:15 UTC +00:00]]
787
+  (0.0ms) RELEASE SAVEPOINT active_record_1
788
+ Processing by CarsController#index as HTML
789
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
790
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
791
+  (0.6ms) rollback transaction
792
+  (0.0ms) begin transaction
793
+  (0.1ms) SAVEPOINT active_record_1
794
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:06:15 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:06:15 UTC +00:00]]
795
+  (0.0ms) RELEASE SAVEPOINT active_record_1
796
+ Processing by CarsController#new as HTML
797
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
798
+  (0.6ms) rollback transaction
799
+  (0.0ms) begin transaction
800
+  (0.0ms) rollback transaction
801
+  (0.3ms) begin transaction
802
+  (0.0ms) SAVEPOINT active_record_1
803
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:13:11 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:13:11 UTC +00:00]]
804
+  (0.0ms) RELEASE SAVEPOINT active_record_1
805
+ Processing by CarsController#edit as HTML
806
+ Parameters: {"car"=>{"model"=>"Mustang"}}
807
+ Rendered cars/edit.html.erb within layouts/application (1.4ms)
808
+ Completed 200 OK in 12ms (Views: 11.1ms | ActiveRecord: 0.0ms)
809
+  (0.6ms) rollback transaction
810
+  (0.0ms) begin transaction
811
+  (0.0ms) SAVEPOINT active_record_1
812
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:13:11 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:13:11 UTC +00:00]]
813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
814
+ Processing by CarsController#edit as HTML
815
+ Parameters: {"id"=>"1"}
816
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
817
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms)
818
+  (0.5ms) rollback transaction
819
+  (0.0ms) begin transaction
820
+  (0.0ms) SAVEPOINT active_record_1
821
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:13:11 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:13:11 UTC +00:00]]
822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
823
+ Processing by CarsController#index as HTML
824
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
825
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
826
+  (0.6ms) rollback transaction
827
+  (0.0ms) begin transaction
828
+  (0.0ms) SAVEPOINT active_record_1
829
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:13:11 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:13:11 UTC +00:00]]
830
+  (0.0ms) RELEASE SAVEPOINT active_record_1
831
+ Processing by CarsController#new as HTML
832
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
833
+  (0.6ms) rollback transaction
834
+  (0.1ms) begin transaction
835
+  (0.0ms) rollback transaction
836
+  (0.3ms) begin transaction
837
+  (0.0ms) SAVEPOINT active_record_1
838
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:09 UTC +00:00]]
839
+  (0.0ms) RELEASE SAVEPOINT active_record_1
840
+ Processing by CarsController#edit as HTML
841
+ Parameters: {"car"=>{"model"=>"Mustang"}}
842
+ Rendered cars/edit.html.erb within layouts/application (1.4ms)
843
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.0ms)
844
+  (0.5ms) rollback transaction
845
+  (0.0ms) begin transaction
846
+  (0.0ms) SAVEPOINT active_record_1
847
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:09 UTC +00:00]]
848
+  (0.0ms) RELEASE SAVEPOINT active_record_1
849
+ Processing by CarsController#edit as HTML
850
+ Parameters: {"id"=>"1"}
851
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
852
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
853
+  (0.5ms) rollback transaction
854
+  (0.0ms) begin transaction
855
+  (0.0ms) SAVEPOINT active_record_1
856
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:09 UTC +00:00]]
857
+  (0.0ms) RELEASE SAVEPOINT active_record_1
858
+ Processing by CarsController#index as HTML
859
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
860
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
861
+  (0.5ms) rollback transaction
862
+  (0.0ms) begin transaction
863
+  (0.0ms) SAVEPOINT active_record_1
864
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:09 UTC +00:00]]
865
+  (0.0ms) RELEASE SAVEPOINT active_record_1
866
+ Processing by CarsController#new as HTML
867
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
868
+  (0.5ms) rollback transaction
869
+  (0.0ms) begin transaction
870
+  (0.0ms) rollback transaction
871
+  (0.3ms) begin transaction
872
+  (0.0ms) SAVEPOINT active_record_1
873
+ SQL (3.1ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:52 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:52 UTC +00:00]]
874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
875
+ Processing by CarsController#edit as HTML
876
+ Parameters: {"car"=>{"model"=>"Mustang"}}
877
+ Rendered cars/edit.html.erb within layouts/application (1.3ms)
878
+ Completed 200 OK in 9ms (Views: 8.3ms | ActiveRecord: 0.0ms)
879
+  (0.6ms) rollback transaction
880
+  (0.0ms) begin transaction
881
+  (0.0ms) SAVEPOINT active_record_1
882
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:53 UTC +00:00]]
883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
884
+ Processing by CarsController#edit as HTML
885
+ Parameters: {"id"=>"1"}
886
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
887
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
888
+  (0.6ms) rollback transaction
889
+  (0.0ms) begin transaction
890
+  (0.0ms) SAVEPOINT active_record_1
891
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:53 UTC +00:00]]
892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
893
+ Processing by CarsController#index as HTML
894
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
895
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
896
+  (0.6ms) rollback transaction
897
+  (0.0ms) begin transaction
898
+  (0.0ms) SAVEPOINT active_record_1
899
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:14:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:14:53 UTC +00:00]]
900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
901
+ Processing by CarsController#new as HTML
902
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
903
+  (0.6ms) rollback transaction
904
+  (0.0ms) begin transaction
905
+  (0.0ms) rollback transaction
906
+  (0.3ms) begin transaction
907
+  (0.1ms) SAVEPOINT active_record_1
908
+ SQL (3.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:29 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:29 UTC +00:00]]
909
+  (0.1ms) RELEASE SAVEPOINT active_record_1
910
+ Processing by CarsController#create as HTML
911
+ Parameters: {"car"=>{"model"=>"Mustang"}}
912
+ Completed 500 Internal Server Error in 1ms
913
+  (0.4ms) rollback transaction
914
+  (0.0ms) begin transaction
915
+  (0.0ms) SAVEPOINT active_record_1
916
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:29 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:29 UTC +00:00]]
917
+  (0.0ms) RELEASE SAVEPOINT active_record_1
918
+ Processing by CarsController#edit as HTML
919
+ Parameters: {"id"=>"1"}
920
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
921
+ Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 0.2ms)
922
+  (0.6ms) rollback transaction
923
+  (0.0ms) begin transaction
924
+  (0.0ms) SAVEPOINT active_record_1
925
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:29 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:29 UTC +00:00]]
926
+  (0.0ms) RELEASE SAVEPOINT active_record_1
927
+ Processing by CarsController#index as HTML
928
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
929
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
930
+  (0.6ms) rollback transaction
931
+  (0.0ms) begin transaction
932
+  (0.0ms) SAVEPOINT active_record_1
933
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:29 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:29 UTC +00:00]]
934
+  (0.0ms) RELEASE SAVEPOINT active_record_1
935
+ Processing by CarsController#new as HTML
936
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
937
+  (0.4ms) rollback transaction
938
+  (0.1ms) begin transaction
939
+  (0.1ms) rollback transaction
940
+  (0.3ms) begin transaction
941
+  (0.0ms) SAVEPOINT active_record_1
942
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:36 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:36 UTC +00:00]]
943
+  (0.0ms) RELEASE SAVEPOINT active_record_1
944
+ Processing by CarsController#create as HTML
945
+ Parameters: {"car"=>{"model"=>"Mustang"}}
946
+ Completed 500 Internal Server Error in 1ms
947
+  (0.6ms) rollback transaction
948
+  (0.0ms) begin transaction
949
+  (0.0ms) SAVEPOINT active_record_1
950
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:36 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:36 UTC +00:00]]
951
+  (0.0ms) RELEASE SAVEPOINT active_record_1
952
+ Processing by CarsController#edit as HTML
953
+ Parameters: {"id"=>"1"}
954
+ Car Load (0.3ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
955
+ Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.3ms)
956
+  (0.6ms) rollback transaction
957
+  (0.1ms) begin transaction
958
+  (0.0ms) SAVEPOINT active_record_1
959
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:36 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:36 UTC +00:00]]
960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
961
+ Processing by CarsController#index as HTML
962
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
963
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
964
+  (0.6ms) rollback transaction
965
+  (0.0ms) begin transaction
966
+  (0.0ms) SAVEPOINT active_record_1
967
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:15:36 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:15:36 UTC +00:00]]
968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
969
+ Processing by CarsController#new as HTML
970
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
971
+  (0.6ms) rollback transaction
972
+  (0.0ms) begin transaction
973
+  (0.0ms) rollback transaction
974
+  (0.3ms) begin transaction
975
+  (0.1ms) SAVEPOINT active_record_1
976
+ SQL (3.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:12 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:12 UTC +00:00]]
977
+  (0.0ms) RELEASE SAVEPOINT active_record_1
978
+ Processing by CarsController#create as HTML
979
+ Parameters: {"car"=>{"model"=>"Mustang"}}
980
+ Completed 500 Internal Server Error in 1ms
981
+  (0.6ms) rollback transaction
982
+  (0.1ms) begin transaction
983
+  (0.0ms) SAVEPOINT active_record_1
984
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:12 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:12 UTC +00:00]]
985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
986
+ Processing by CarsController#edit as HTML
987
+ Parameters: {"id"=>"1"}
988
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
989
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
990
+  (0.6ms) rollback transaction
991
+  (0.1ms) begin transaction
992
+  (0.0ms) SAVEPOINT active_record_1
993
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:12 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:12 UTC +00:00]]
994
+  (0.0ms) RELEASE SAVEPOINT active_record_1
995
+ Processing by CarsController#index as HTML
996
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
997
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
998
+  (0.6ms) rollback transaction
999
+  (0.0ms) begin transaction
1000
+  (0.0ms) SAVEPOINT active_record_1
1001
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:12 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:12 UTC +00:00]]
1002
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1003
+ Processing by CarsController#new as HTML
1004
+ Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms)
1005
+  (0.6ms) rollback transaction
1006
+  (0.1ms) begin transaction
1007
+  (0.0ms) rollback transaction
1008
+  (0.3ms) begin transaction
1009
+  (0.0ms) SAVEPOINT active_record_1
1010
+ SQL (3.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:53 UTC +00:00]]
1011
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1012
+ Processing by CarsController#create as HTML
1013
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1014
+  (0.1ms) SAVEPOINT active_record_1
1015
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:53 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:16:53 UTC +00:00]]
1016
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1017
+ Completed 500 Internal Server Error in 10ms
1018
+  (0.8ms) rollback transaction
1019
+  (0.1ms) begin transaction
1020
+  (0.0ms) SAVEPOINT active_record_1
1021
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:53 UTC +00:00]]
1022
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1023
+ Processing by CarsController#edit as HTML
1024
+ Parameters: {"id"=>"1"}
1025
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1026
+ Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.2ms)
1027
+  (0.4ms) rollback transaction
1028
+  (0.0ms) begin transaction
1029
+  (0.0ms) SAVEPOINT active_record_1
1030
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:53 UTC +00:00]]
1031
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1032
+ Processing by CarsController#index as HTML
1033
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1034
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1035
+  (0.7ms) rollback transaction
1036
+  (0.1ms) begin transaction
1037
+  (0.1ms) SAVEPOINT active_record_1
1038
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:16:53 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:16:53 UTC +00:00]]
1039
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1040
+ Processing by CarsController#new as HTML
1041
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1042
+  (0.4ms) rollback transaction
1043
+  (0.0ms) begin transaction
1044
+  (0.0ms) rollback transaction
1045
+  (0.3ms) begin transaction
1046
+  (0.1ms) SAVEPOINT active_record_1
1047
+ SQL (4.9ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:19 UTC +00:00]]
1048
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1049
+ Processing by CarsController#create as HTML
1050
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1051
+  (0.1ms) SAVEPOINT active_record_1
1052
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:19 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:19:19 UTC +00:00]]
1053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1054
+ Completed 500 Internal Server Error in 2ms
1055
+  (0.5ms) rollback transaction
1056
+  (0.0ms) begin transaction
1057
+  (0.0ms) SAVEPOINT active_record_1
1058
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:19 UTC +00:00]]
1059
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1060
+ Processing by CarsController#edit as HTML
1061
+ Parameters: {"id"=>"1"}
1062
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1063
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.2ms)
1064
+  (0.5ms) rollback transaction
1065
+  (0.0ms) begin transaction
1066
+  (0.0ms) SAVEPOINT active_record_1
1067
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:19 UTC +00:00]]
1068
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1069
+ Processing by CarsController#index as HTML
1070
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1071
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
1072
+  (1.3ms) rollback transaction
1073
+  (0.0ms) begin transaction
1074
+  (0.0ms) SAVEPOINT active_record_1
1075
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:19 UTC +00:00]]
1076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1077
+ Processing by CarsController#new as HTML
1078
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1079
+  (0.5ms) rollback transaction
1080
+  (0.1ms) begin transaction
1081
+  (0.0ms) rollback transaction
1082
+  (0.4ms) begin transaction
1083
+  (0.0ms) SAVEPOINT active_record_1
1084
+ SQL (3.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:58 UTC +00:00]]
1085
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1086
+ Processing by CarsController#create as HTML
1087
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1088
+  (0.1ms) SAVEPOINT active_record_1
1089
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:58 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:19:58 UTC +00:00]]
1090
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1091
+ Redirected to
1092
+ Completed 500 Internal Server Error in 4ms
1093
+  (0.5ms) rollback transaction
1094
+  (0.0ms) begin transaction
1095
+  (0.0ms) SAVEPOINT active_record_1
1096
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:58 UTC +00:00]]
1097
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1098
+ Processing by CarsController#edit as HTML
1099
+ Parameters: {"id"=>"1"}
1100
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1101
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
1102
+  (0.6ms) rollback transaction
1103
+  (0.0ms) begin transaction
1104
+  (0.0ms) SAVEPOINT active_record_1
1105
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:58 UTC +00:00]]
1106
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1107
+ Processing by CarsController#index as HTML
1108
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1109
+ Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.1ms)
1110
+  (0.6ms) rollback transaction
1111
+  (0.0ms) begin transaction
1112
+  (0.0ms) SAVEPOINT active_record_1
1113
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:19:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:19:58 UTC +00:00]]
1114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1115
+ Processing by CarsController#new as HTML
1116
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1117
+  (0.6ms) rollback transaction
1118
+  (0.0ms) begin transaction
1119
+  (0.0ms) rollback transaction
1120
+  (0.3ms) begin transaction
1121
+  (0.0ms) SAVEPOINT active_record_1
1122
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:21:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:21:32 UTC +00:00]]
1123
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1124
+ Processing by CarsController#create as HTML
1125
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1126
+  (0.1ms) SAVEPOINT active_record_1
1127
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:21:32 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:21:32 UTC +00:00]]
1128
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1129
+ Redirected to
1130
+ Completed 500 Internal Server Error in 4ms
1131
+  (0.6ms) rollback transaction
1132
+  (0.0ms) begin transaction
1133
+  (0.0ms) SAVEPOINT active_record_1
1134
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:21:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:21:32 UTC +00:00]]
1135
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1136
+ Processing by CarsController#edit as HTML
1137
+ Parameters: {"id"=>"1"}
1138
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1139
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.1ms)
1140
+  (0.6ms) rollback transaction
1141
+  (0.0ms) begin transaction
1142
+  (0.0ms) SAVEPOINT active_record_1
1143
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:21:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:21:32 UTC +00:00]]
1144
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1145
+ Processing by CarsController#index as HTML
1146
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1147
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1148
+  (0.6ms) rollback transaction
1149
+  (0.0ms) begin transaction
1150
+  (0.0ms) SAVEPOINT active_record_1
1151
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:21:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:21:32 UTC +00:00]]
1152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1153
+ Processing by CarsController#new as HTML
1154
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1155
+  (0.5ms) rollback transaction
1156
+  (0.1ms) begin transaction
1157
+  (0.0ms) rollback transaction
1158
+  (0.3ms) begin transaction
1159
+  (0.0ms) SAVEPOINT active_record_1
1160
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:03 UTC +00:00]]
1161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1162
+ Processing by CarsController#create as HTML
1163
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1164
+  (0.1ms) SAVEPOINT active_record_1
1165
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:03 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:22:03 UTC +00:00]]
1166
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1167
+ Redirected to
1168
+ Completed 500 Internal Server Error in 4ms
1169
+  (0.6ms) rollback transaction
1170
+  (0.1ms) begin transaction
1171
+  (0.1ms) SAVEPOINT active_record_1
1172
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:03 UTC +00:00]]
1173
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1174
+ Processing by CarsController#edit as HTML
1175
+ Parameters: {"id"=>"1"}
1176
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1177
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
1178
+  (0.6ms) rollback transaction
1179
+  (0.0ms) begin transaction
1180
+  (0.0ms) SAVEPOINT active_record_1
1181
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:03 UTC +00:00]]
1182
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1183
+ Processing by CarsController#index as HTML
1184
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1185
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1186
+  (0.6ms) rollback transaction
1187
+  (0.0ms) begin transaction
1188
+  (0.0ms) SAVEPOINT active_record_1
1189
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:03 UTC +00:00]]
1190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1191
+ Processing by CarsController#new as HTML
1192
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1193
+  (1.1ms) rollback transaction
1194
+  (0.1ms) begin transaction
1195
+  (0.0ms) rollback transaction
1196
+  (0.3ms) begin transaction
1197
+  (0.1ms) SAVEPOINT active_record_1
1198
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:49 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:49 UTC +00:00]]
1199
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1200
+ Processing by CarsController#create as HTML
1201
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1202
+  (0.1ms) SAVEPOINT active_record_1
1203
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:50 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:22:50 UTC +00:00]]
1204
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1205
+ Redirected to
1206
+ Completed 500 Internal Server Error in 4ms
1207
+  (0.6ms) rollback transaction
1208
+  (0.0ms) begin transaction
1209
+  (0.0ms) SAVEPOINT active_record_1
1210
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:50 UTC +00:00]]
1211
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1212
+ Processing by CarsController#edit as HTML
1213
+ Parameters: {"id"=>"1"}
1214
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1215
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
1216
+  (0.6ms) rollback transaction
1217
+  (0.0ms) begin transaction
1218
+  (0.0ms) SAVEPOINT active_record_1
1219
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:50 UTC +00:00]]
1220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1221
+ Processing by CarsController#index as HTML
1222
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1223
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
1224
+  (1.0ms) rollback transaction
1225
+  (0.1ms) begin transaction
1226
+  (0.0ms) SAVEPOINT active_record_1
1227
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:22:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:22:50 UTC +00:00]]
1228
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1229
+ Processing by CarsController#new as HTML
1230
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1231
+  (0.6ms) rollback transaction
1232
+  (0.1ms) begin transaction
1233
+  (0.0ms) rollback transaction
1234
+  (0.3ms) begin transaction
1235
+  (0.0ms) SAVEPOINT active_record_1
1236
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:23:40 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:23:40 UTC +00:00]]
1237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1238
+ Processing by CarsController#create as HTML
1239
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1240
+  (0.1ms) SAVEPOINT active_record_1
1241
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:23:40 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:23:40 UTC +00:00]]
1242
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1243
+ Redirected to http://test.host/cars/2
1244
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1245
+  (0.6ms) rollback transaction
1246
+  (0.1ms) begin transaction
1247
+  (0.0ms) SAVEPOINT active_record_1
1248
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:23:40 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:23:40 UTC +00:00]]
1249
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1250
+ Processing by CarsController#edit as HTML
1251
+ Parameters: {"id"=>"1"}
1252
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1253
+ Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.2ms)
1254
+  (0.5ms) rollback transaction
1255
+  (0.0ms) begin transaction
1256
+  (0.0ms) SAVEPOINT active_record_1
1257
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:23:40 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:23:40 UTC +00:00]]
1258
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1259
+ Processing by CarsController#index as HTML
1260
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1261
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1262
+  (0.6ms) rollback transaction
1263
+  (0.0ms) begin transaction
1264
+  (0.0ms) SAVEPOINT active_record_1
1265
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:23:40 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:23:40 UTC +00:00]]
1266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1267
+ Processing by CarsController#new as HTML
1268
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1269
+  (0.5ms) rollback transaction
1270
+  (0.1ms) begin transaction
1271
+  (0.0ms) rollback transaction
1272
+  (0.3ms) begin transaction
1273
+  (0.0ms) SAVEPOINT active_record_1
1274
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:28 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:28 UTC +00:00]]
1275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1276
+ Processing by CarsController#create as HTML
1277
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1278
+  (0.1ms) SAVEPOINT active_record_1
1279
+ SQL (0.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:28 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:26:28 UTC +00:00]]
1280
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1281
+ Redirected to http://test.host/cars/2
1282
+ Completed 302 Found in 4ms (ActiveRecord: 0.9ms)
1283
+  (0.6ms) rollback transaction
1284
+  (0.0ms) begin transaction
1285
+  (0.0ms) SAVEPOINT active_record_1
1286
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:28 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:28 UTC +00:00]]
1287
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1288
+ Processing by CarsController#edit as HTML
1289
+ Parameters: {"id"=>"1"}
1290
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1291
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
1292
+  (0.6ms) rollback transaction
1293
+  (0.0ms) begin transaction
1294
+  (0.0ms) SAVEPOINT active_record_1
1295
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:28 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:28 UTC +00:00]]
1296
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1297
+ Processing by CarsController#index as HTML
1298
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1299
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1300
+  (0.5ms) rollback transaction
1301
+  (0.0ms) begin transaction
1302
+  (0.0ms) SAVEPOINT active_record_1
1303
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:28 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:28 UTC +00:00]]
1304
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1305
+ Processing by CarsController#new as HTML
1306
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1307
+  (0.6ms) rollback transaction
1308
+  (0.0ms) begin transaction
1309
+  (0.0ms) rollback transaction
1310
+  (0.3ms) begin transaction
1311
+  (0.0ms) SAVEPOINT active_record_1
1312
+ SQL (3.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:33 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:33 UTC +00:00]]
1313
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1314
+ Processing by CarsController#create as HTML
1315
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1316
+  (0.1ms) SAVEPOINT active_record_1
1317
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:33 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:26:33 UTC +00:00]]
1318
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1319
+ Redirected to http://test.host/cars/2
1320
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
1321
+  (0.6ms) rollback transaction
1322
+  (0.1ms) begin transaction
1323
+  (0.0ms) SAVEPOINT active_record_1
1324
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:33 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:33 UTC +00:00]]
1325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1326
+ Processing by CarsController#edit as HTML
1327
+ Parameters: {"id"=>"1"}
1328
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1329
+ Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.2ms)
1330
+  (0.7ms) rollback transaction
1331
+  (0.1ms) begin transaction
1332
+  (0.1ms) SAVEPOINT active_record_1
1333
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:33 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:33 UTC +00:00]]
1334
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1335
+ Processing by CarsController#index as HTML
1336
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1337
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.1ms)
1338
+  (0.6ms) rollback transaction
1339
+  (0.0ms) begin transaction
1340
+  (0.0ms) SAVEPOINT active_record_1
1341
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:26:33 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:26:33 UTC +00:00]]
1342
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1343
+ Processing by CarsController#new as HTML
1344
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1345
+  (0.6ms) rollback transaction
1346
+  (0.1ms) begin transaction
1347
+  (0.0ms) rollback transaction
1348
+  (0.3ms) begin transaction
1349
+  (0.0ms) SAVEPOINT active_record_1
1350
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1351
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1352
+ Processing by CarsController#create as HTML
1353
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1354
+  (0.1ms) SAVEPOINT active_record_1
1355
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1356
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1357
+ Redirected to http://test.host/cars/2
1358
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1359
+  (0.7ms) rollback transaction
1360
+  (0.0ms) begin transaction
1361
+  (0.0ms) SAVEPOINT active_record_1
1362
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1363
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1364
+ Processing by CarsController#edit as HTML
1365
+ Parameters: {"id"=>"1"}
1366
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1367
+ Car Load (0.0ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1368
+ Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.2ms)
1369
+  (0.6ms) rollback transaction
1370
+  (0.0ms) begin transaction
1371
+  (0.0ms) SAVEPOINT active_record_1
1372
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1373
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1374
+ Processing by CarsController#index as HTML
1375
+ Car Load (0.1ms) SELECT "cars".* FROM "cars"
1376
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1377
+  (0.5ms) rollback transaction
1378
+  (0.0ms) begin transaction
1379
+  (0.0ms) SAVEPOINT active_record_1
1380
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1381
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1382
+ Processing by CarsController#new as HTML
1383
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1384
+  (0.6ms) rollback transaction
1385
+  (0.0ms) begin transaction
1386
+  (0.0ms) SAVEPOINT active_record_1
1387
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1388
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1389
+ Processing by CarsController#show as HTML
1390
+ Parameters: {"id"=>"1"}
1391
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1392
+ Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.1ms)
1393
+  (0.6ms) rollback transaction
1394
+  (0.0ms) begin transaction
1395
+  (0.0ms) SAVEPOINT active_record_1
1396
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:29:44 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:29:44 UTC +00:00]]
1397
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1398
+ Processing by CarsController#update as HTML
1399
+ Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
1400
+ Completed 500 Internal Server Error in 0ms
1401
+  (0.5ms) rollback transaction
1402
+  (0.0ms) begin transaction
1403
+  (0.0ms) rollback transaction
1404
+  (0.3ms) begin transaction
1405
+  (0.0ms) SAVEPOINT active_record_1
1406
+ SQL (3.1ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1407
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1408
+ Processing by CarsController#create as HTML
1409
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1410
+  (0.1ms) SAVEPOINT active_record_1
1411
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1413
+ Redirected to http://test.host/cars/2
1414
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1415
+  (0.6ms) rollback transaction
1416
+  (0.1ms) begin transaction
1417
+  (0.0ms) SAVEPOINT active_record_1
1418
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1420
+ Processing by CarsController#edit as HTML
1421
+ Parameters: {"id"=>"1"}
1422
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1423
+ Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms)
1424
+  (0.7ms) rollback transaction
1425
+  (0.0ms) begin transaction
1426
+  (0.1ms) SAVEPOINT active_record_1
1427
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1428
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1429
+ Processing by CarsController#index as HTML
1430
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1431
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.1ms)
1432
+  (0.5ms) rollback transaction
1433
+  (0.0ms) begin transaction
1434
+  (0.0ms) SAVEPOINT active_record_1
1435
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1436
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1437
+ Processing by CarsController#new as HTML
1438
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1439
+  (0.6ms) rollback transaction
1440
+  (0.0ms) begin transaction
1441
+  (0.0ms) SAVEPOINT active_record_1
1442
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1443
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1444
+ Processing by CarsController#show as HTML
1445
+ Parameters: {"id"=>"1"}
1446
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1447
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1448
+  (0.6ms) rollback transaction
1449
+  (0.0ms) begin transaction
1450
+  (0.0ms) SAVEPOINT active_record_1
1451
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:06 UTC +00:00]]
1452
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1453
+ Processing by CarsController#update as HTML
1454
+ Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
1455
+ Completed 500 Internal Server Error in 0ms
1456
+  (0.4ms) rollback transaction
1457
+  (0.1ms) begin transaction
1458
+  (0.0ms) rollback transaction
1459
+  (0.3ms) begin transaction
1460
+  (0.1ms) SAVEPOINT active_record_1
1461
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1462
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1463
+ Processing by CarsController#create as HTML
1464
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1465
+  (0.1ms) SAVEPOINT active_record_1
1466
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1468
+ Redirected to http://test.host/cars/2
1469
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1470
+  (0.5ms) rollback transaction
1471
+  (0.1ms) begin transaction
1472
+  (0.0ms) SAVEPOINT active_record_1
1473
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1475
+ Processing by CarsController#edit as HTML
1476
+ Parameters: {"id"=>"1"}
1477
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1478
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.2ms)
1479
+  (0.7ms) rollback transaction
1480
+  (0.1ms) begin transaction
1481
+  (0.1ms) SAVEPOINT active_record_1
1482
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1483
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1484
+ Processing by CarsController#index as HTML
1485
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1486
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1487
+  (0.5ms) rollback transaction
1488
+  (0.0ms) begin transaction
1489
+  (0.0ms) SAVEPOINT active_record_1
1490
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1491
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1492
+ Processing by CarsController#new as HTML
1493
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1494
+  (0.6ms) rollback transaction
1495
+  (0.0ms) begin transaction
1496
+  (0.0ms) SAVEPOINT active_record_1
1497
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1498
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1499
+ Processing by CarsController#show as HTML
1500
+ Parameters: {"id"=>"1"}
1501
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1502
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1503
+  (0.6ms) rollback transaction
1504
+  (0.1ms) begin transaction
1505
+  (0.0ms) SAVEPOINT active_record_1
1506
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:26 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:26 UTC +00:00]]
1507
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1508
+ Processing by CarsController#update as HTML
1509
+ Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
1510
+ Completed 500 Internal Server Error in 1ms
1511
+  (0.5ms) rollback transaction
1512
+  (0.0ms) begin transaction
1513
+  (0.0ms) rollback transaction
1514
+  (0.3ms) begin transaction
1515
+  (0.0ms) SAVEPOINT active_record_1
1516
+ SQL (3.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1517
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1518
+ Processing by CarsController#create as HTML
1519
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1520
+  (0.1ms) SAVEPOINT active_record_1
1521
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1522
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1523
+ Redirected to http://test.host/cars/2
1524
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1525
+  (0.6ms) rollback transaction
1526
+  (0.0ms) begin transaction
1527
+  (0.0ms) SAVEPOINT active_record_1
1528
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1529
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1530
+ Processing by CarsController#edit as HTML
1531
+ Parameters: {"id"=>"1"}
1532
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1533
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.1ms)
1534
+  (0.6ms) rollback transaction
1535
+  (0.0ms) begin transaction
1536
+  (0.0ms) SAVEPOINT active_record_1
1537
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1538
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1539
+ Processing by CarsController#index as HTML
1540
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1541
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1542
+  (0.6ms) rollback transaction
1543
+  (0.0ms) begin transaction
1544
+  (0.0ms) SAVEPOINT active_record_1
1545
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1546
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1547
+ Processing by CarsController#new as HTML
1548
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
1549
+  (0.7ms) rollback transaction
1550
+  (0.1ms) begin transaction
1551
+  (0.0ms) SAVEPOINT active_record_1
1552
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1553
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1554
+ Processing by CarsController#show as HTML
1555
+ Parameters: {"id"=>"1"}
1556
+ Car Load (0.0ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1557
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
1558
+  (0.5ms) rollback transaction
1559
+  (0.0ms) begin transaction
1560
+  (0.0ms) SAVEPOINT active_record_1
1561
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:30:54 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:30:54 UTC +00:00]]
1562
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1563
+ Processing by CarsController#update as HTML
1564
+ Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
1565
+ Completed 500 Internal Server Error in 1ms
1566
+  (0.5ms) rollback transaction
1567
+  (0.0ms) begin transaction
1568
+  (0.0ms) rollback transaction
1569
+  (0.3ms) begin transaction
1570
+  (0.0ms) SAVEPOINT active_record_1
1571
+ SQL (3.1ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1572
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1573
+ Processing by CarsController#create as HTML
1574
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1575
+  (0.1ms) SAVEPOINT active_record_1
1576
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1577
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1578
+ Redirected to http://test.host/cars/2
1579
+ Completed 302 Found in 5ms (ActiveRecord: 0.7ms)
1580
+  (0.5ms) rollback transaction
1581
+  (0.1ms) begin transaction
1582
+  (0.0ms) SAVEPOINT active_record_1
1583
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1584
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1585
+ Processing by CarsController#edit as HTML
1586
+ Parameters: {"id"=>"1"}
1587
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1588
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.1ms)
1589
+  (0.6ms) rollback transaction
1590
+  (0.0ms) begin transaction
1591
+  (0.0ms) SAVEPOINT active_record_1
1592
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1593
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1594
+ Processing by CarsController#index as HTML
1595
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1596
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1597
+  (0.6ms) rollback transaction
1598
+  (0.0ms) begin transaction
1599
+  (0.0ms) SAVEPOINT active_record_1
1600
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1601
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1602
+ Processing by CarsController#new as HTML
1603
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1604
+  (0.6ms) rollback transaction
1605
+  (0.0ms) begin transaction
1606
+  (0.0ms) SAVEPOINT active_record_1
1607
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1608
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1609
+ Processing by CarsController#show as HTML
1610
+ Parameters: {"id"=>"1"}
1611
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1612
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
1613
+  (0.6ms) rollback transaction
1614
+  (0.0ms) begin transaction
1615
+  (0.0ms) SAVEPOINT active_record_1
1616
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:21 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:21 UTC +00:00]]
1617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1618
+ Processing by CarsController#update as HTML
1619
+ Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
1620
+ Completed 500 Internal Server Error in 1ms
1621
+  (0.7ms) rollback transaction
1622
+  (0.1ms) begin transaction
1623
+  (0.0ms) rollback transaction
1624
+  (0.3ms) begin transaction
1625
+  (0.0ms) SAVEPOINT active_record_1
1626
+ SQL (3.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1627
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1628
+ Processing by CarsController#create as HTML
1629
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1630
+  (0.1ms) SAVEPOINT active_record_1
1631
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1632
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1633
+ Redirected to http://test.host/cars/2
1634
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1635
+  (0.6ms) rollback transaction
1636
+  (0.0ms) begin transaction
1637
+  (0.0ms) SAVEPOINT active_record_1
1638
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1639
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1640
+ Processing by CarsController#edit as HTML
1641
+ Parameters: {"id"=>"1"}
1642
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1643
+ Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.2ms)
1644
+  (0.5ms) rollback transaction
1645
+  (0.0ms) begin transaction
1646
+  (0.0ms) SAVEPOINT active_record_1
1647
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1648
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1649
+ Processing by CarsController#index as HTML
1650
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1651
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
1652
+  (0.6ms) rollback transaction
1653
+  (0.0ms) begin transaction
1654
+  (0.0ms) SAVEPOINT active_record_1
1655
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1656
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1657
+ Processing by CarsController#new as HTML
1658
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
1659
+  (0.6ms) rollback transaction
1660
+  (0.0ms) begin transaction
1661
+  (0.0ms) SAVEPOINT active_record_1
1662
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1663
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1664
+ Processing by CarsController#show as HTML
1665
+ Parameters: {"id"=>"1"}
1666
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1667
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
1668
+  (0.5ms) rollback transaction
1669
+  (0.0ms) begin transaction
1670
+  (0.0ms) SAVEPOINT active_record_1
1671
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:31:50 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:31:50 UTC +00:00]]
1672
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1673
+ Processing by CarsController#update as HTML
1674
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
1675
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1676
+  (0.1ms) SAVEPOINT active_record_1
1677
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:31:50.870064' WHERE "cars"."id" = 1
1678
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1679
+ Redirected to http://test.host/cars/1
1680
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
1681
+  (0.5ms) rollback transaction
1682
+  (0.0ms) begin transaction
1683
+  (0.0ms) rollback transaction
1684
+  (0.3ms) begin transaction
1685
+  (0.0ms) SAVEPOINT active_record_1
1686
+ SQL (4.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:05 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:32:05 UTC +00:00]]
1687
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1688
+ Processing by CarsController#create as HTML
1689
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1690
+  (0.1ms) SAVEPOINT active_record_1
1691
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:06 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:32:06 UTC +00:00]]
1692
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1693
+ Redirected to http://test.host/cars/2
1694
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1695
+  (0.5ms) rollback transaction
1696
+  (0.0ms) begin transaction
1697
+  (0.0ms) SAVEPOINT active_record_1
1698
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:32:06 UTC +00:00]]
1699
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1700
+ Processing by CarsController#edit as HTML
1701
+ Parameters: {"id"=>"1"}
1702
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1703
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
1704
+  (0.5ms) rollback transaction
1705
+  (0.0ms) begin transaction
1706
+  (0.0ms) SAVEPOINT active_record_1
1707
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:32:06 UTC +00:00]]
1708
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1709
+ Processing by CarsController#index as HTML
1710
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1711
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1712
+  (0.6ms) rollback transaction
1713
+  (0.0ms) begin transaction
1714
+  (0.0ms) SAVEPOINT active_record_1
1715
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:32:06 UTC +00:00]]
1716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1717
+ Processing by CarsController#new as HTML
1718
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
1719
+  (0.6ms) rollback transaction
1720
+  (0.0ms) begin transaction
1721
+  (0.0ms) SAVEPOINT active_record_1
1722
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:32:06 UTC +00:00]]
1723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1724
+ Processing by CarsController#show as HTML
1725
+ Parameters: {"id"=>"1"}
1726
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1727
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
1728
+  (0.6ms) rollback transaction
1729
+  (0.0ms) begin transaction
1730
+  (0.0ms) SAVEPOINT active_record_1
1731
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:32:06 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:32:06 UTC +00:00]]
1732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1733
+ Processing by CarsController#update as HTML
1734
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
1735
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1736
+  (0.0ms) SAVEPOINT active_record_1
1737
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:32:06.062831' WHERE "cars"."id" = 1
1738
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1739
+ Redirected to http://test.host/cars/1
1740
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
1741
+  (0.6ms) rollback transaction
1742
+  (0.0ms) begin transaction
1743
+  (0.0ms) rollback transaction
1744
+  (0.3ms) begin transaction
1745
+  (0.1ms) SAVEPOINT active_record_1
1746
+ SQL (23.2ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1748
+ Processing by CarsController#create as HTML
1749
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1750
+  (0.1ms) SAVEPOINT active_record_1
1751
+ SQL (22.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1753
+ Redirected to http://test.host/cars/2
1754
+ Completed 302 Found in 28ms (ActiveRecord: 22.7ms)
1755
+  (0.8ms) rollback transaction
1756
+  (0.1ms) begin transaction
1757
+  (0.1ms) SAVEPOINT active_record_1
1758
+ SQL (0.7ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1760
+ Processing by CarsController#edit as HTML
1761
+ Parameters: {"id"=>"1"}
1762
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1763
+ Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.2ms)
1764
+  (0.4ms) rollback transaction
1765
+  (0.1ms) begin transaction
1766
+  (0.0ms) SAVEPOINT active_record_1
1767
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1768
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1769
+ Processing by CarsController#index as HTML
1770
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1771
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
1772
+  (0.7ms) rollback transaction
1773
+  (0.1ms) begin transaction
1774
+  (0.1ms) SAVEPOINT active_record_1
1775
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1776
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1777
+ Processing by CarsController#new as HTML
1778
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.0ms)
1779
+  (0.5ms) rollback transaction
1780
+  (0.0ms) begin transaction
1781
+  (0.0ms) SAVEPOINT active_record_1
1782
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1783
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1784
+ Processing by CarsController#show as HTML
1785
+ Parameters: {"id"=>"1"}
1786
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1787
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
1788
+  (0.5ms) rollback transaction
1789
+  (0.0ms) begin transaction
1790
+  (0.0ms) SAVEPOINT active_record_1
1791
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1793
+ Processing by CarsController#update as HTML
1794
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
1795
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1796
+  (0.1ms) SAVEPOINT active_record_1
1797
+  (0.4ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:46:31.392729' WHERE "cars"."id" = 1
1798
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1799
+ Redirected to http://test.host/cars/1
1800
+ Completed 302 Found in 5ms (ActiveRecord: 0.6ms)
1801
+  (0.6ms) rollback transaction
1802
+  (0.1ms) begin transaction
1803
+  (0.1ms) SAVEPOINT active_record_1
1804
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1805
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1806
+ Processing by DogsController#create as HTML
1807
+ Parameters: {"dog"=>{"name"=>"Mustang"}}
1808
+ Completed 500 Internal Server Error in 4ms
1809
+  (0.5ms) rollback transaction
1810
+  (0.0ms) begin transaction
1811
+  (0.1ms) SAVEPOINT active_record_1
1812
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1813
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1814
+ Processing by DogsController#edit as HTML
1815
+ Parameters: {"id"=>"1"}
1816
+ Rendered dogs/_form.html.erb (1.2ms)
1817
+ Completed 500 Internal Server Error in 44ms
1818
+  (0.6ms) rollback transaction
1819
+  (0.0ms) begin transaction
1820
+  (0.0ms) SAVEPOINT active_record_1
1821
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1823
+ Processing by DogsController#index as HTML
1824
+ Completed 500 Internal Server Error in 2ms
1825
+  (0.5ms) rollback transaction
1826
+  (0.0ms) begin transaction
1827
+  (0.0ms) SAVEPOINT active_record_1
1828
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1830
+ Processing by DogsController#new as HTML
1831
+ Rendered dogs/_form.html.erb (1.1ms)
1832
+ Completed 500 Internal Server Error in 3ms
1833
+  (0.5ms) rollback transaction
1834
+  (0.0ms) begin transaction
1835
+  (0.0ms) SAVEPOINT active_record_1
1836
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1837
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1838
+ Processing by DogsController#show as HTML
1839
+ Parameters: {"id"=>"1"}
1840
+ Completed 500 Internal Server Error in 2ms
1841
+  (0.5ms) rollback transaction
1842
+  (0.0ms) begin transaction
1843
+  (0.0ms) SAVEPOINT active_record_1
1844
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:46:31 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:46:31 UTC +00:00]]
1845
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1846
+ Processing by DogsController#update as HTML
1847
+ Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
1848
+ Completed 500 Internal Server Error in 1ms
1849
+  (0.5ms) rollback transaction
1850
+  (0.1ms) begin transaction
1851
+  (0.1ms) rollback transaction
1852
+  (0.4ms) begin transaction
1853
+  (0.0ms) SAVEPOINT active_record_1
1854
+ SQL (20.1ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1855
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1856
+ Processing by CarsController#create as HTML
1857
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1858
+  (0.1ms) SAVEPOINT active_record_1
1859
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1860
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1861
+ Redirected to http://test.host/cars/2
1862
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
1863
+  (0.5ms) rollback transaction
1864
+  (0.1ms) begin transaction
1865
+  (0.0ms) SAVEPOINT active_record_1
1866
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1867
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1868
+ Processing by CarsController#edit as HTML
1869
+ Parameters: {"id"=>"1"}
1870
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1871
+ Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.2ms)
1872
+  (0.4ms) rollback transaction
1873
+  (0.0ms) begin transaction
1874
+  (0.0ms) SAVEPOINT active_record_1
1875
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1876
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1877
+ Processing by CarsController#index as HTML
1878
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1879
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1880
+  (0.7ms) rollback transaction
1881
+  (0.1ms) begin transaction
1882
+  (0.1ms) SAVEPOINT active_record_1
1883
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1884
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1885
+ Processing by CarsController#new as HTML
1886
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
1887
+  (0.6ms) rollback transaction
1888
+  (0.0ms) begin transaction
1889
+  (0.0ms) SAVEPOINT active_record_1
1890
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1891
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1892
+ Processing by CarsController#show as HTML
1893
+ Parameters: {"id"=>"1"}
1894
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1895
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1896
+  (0.4ms) rollback transaction
1897
+  (0.0ms) begin transaction
1898
+  (0.0ms) SAVEPOINT active_record_1
1899
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1901
+ Processing by CarsController#update as HTML
1902
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
1903
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1904
+  (0.0ms) SAVEPOINT active_record_1
1905
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:49:09.291330' WHERE "cars"."id" = 1
1906
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1907
+ Redirected to http://test.host/cars/1
1908
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
1909
+  (0.5ms) rollback transaction
1910
+  (0.0ms) begin transaction
1911
+  (0.0ms) SAVEPOINT active_record_1
1912
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1913
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1914
+ Processing by DogsController#create as HTML
1915
+ Parameters: {"dog"=>{"name"=>"Mustang"}}
1916
+ Completed 500 Internal Server Error in 4ms
1917
+  (0.5ms) rollback transaction
1918
+  (0.0ms) begin transaction
1919
+  (0.0ms) SAVEPOINT active_record_1
1920
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1921
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1922
+ Processing by DogsController#edit as HTML
1923
+ Parameters: {"id"=>"1"}
1924
+ Rendered dogs/_form.html.erb (1.2ms)
1925
+ Completed 500 Internal Server Error in 24ms
1926
+  (0.5ms) rollback transaction
1927
+  (0.0ms) begin transaction
1928
+  (0.0ms) SAVEPOINT active_record_1
1929
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1930
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1931
+ Processing by DogsController#index as HTML
1932
+ Completed 500 Internal Server Error in 2ms
1933
+  (0.6ms) rollback transaction
1934
+  (0.0ms) begin transaction
1935
+  (0.0ms) SAVEPOINT active_record_1
1936
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1937
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1938
+ Processing by DogsController#new as HTML
1939
+ Rendered dogs/_form.html.erb (0.6ms)
1940
+ Completed 500 Internal Server Error in 2ms
1941
+  (0.5ms) rollback transaction
1942
+  (0.0ms) begin transaction
1943
+  (0.0ms) SAVEPOINT active_record_1
1944
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1945
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1946
+ Processing by DogsController#show as HTML
1947
+ Parameters: {"id"=>"1"}
1948
+ Completed 500 Internal Server Error in 2ms
1949
+  (0.5ms) rollback transaction
1950
+  (0.0ms) begin transaction
1951
+  (0.0ms) SAVEPOINT active_record_1
1952
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:49:09 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:49:09 UTC +00:00]]
1953
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1954
+ Processing by DogsController#update as HTML
1955
+ Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
1956
+ Completed 500 Internal Server Error in 1ms
1957
+  (0.5ms) rollback transaction
1958
+  (0.1ms) begin transaction
1959
+  (0.0ms) rollback transaction
1960
+  (0.3ms) begin transaction
1961
+  (0.0ms) SAVEPOINT active_record_1
1962
+ SQL (27.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
1963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1964
+ Processing by CarsController#create as HTML
1965
+ Parameters: {"car"=>{"model"=>"Mustang"}}
1966
+  (0.1ms) SAVEPOINT active_record_1
1967
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
1968
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1969
+ Redirected to http://test.host/cars/2
1970
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
1971
+  (0.5ms) rollback transaction
1972
+  (0.1ms) begin transaction
1973
+  (0.0ms) SAVEPOINT active_record_1
1974
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
1975
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1976
+ Processing by CarsController#edit as HTML
1977
+ Parameters: {"id"=>"1"}
1978
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
1979
+ Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.1ms)
1980
+  (0.6ms) rollback transaction
1981
+  (0.0ms) begin transaction
1982
+  (0.0ms) SAVEPOINT active_record_1
1983
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
1984
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1985
+ Processing by CarsController#index as HTML
1986
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
1987
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
1988
+  (0.6ms) rollback transaction
1989
+  (0.0ms) begin transaction
1990
+  (0.0ms) SAVEPOINT active_record_1
1991
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
1992
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1993
+ Processing by CarsController#new as HTML
1994
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1995
+  (0.5ms) rollback transaction
1996
+  (0.1ms) begin transaction
1997
+  (0.0ms) SAVEPOINT active_record_1
1998
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
1999
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2000
+ Processing by CarsController#show as HTML
2001
+ Parameters: {"id"=>"1"}
2002
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2003
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2004
+  (0.6ms) rollback transaction
2005
+  (0.0ms) begin transaction
2006
+  (0.0ms) SAVEPOINT active_record_1
2007
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2009
+ Processing by CarsController#update as HTML
2010
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2011
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2012
+  (0.0ms) SAVEPOINT active_record_1
2013
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:51:51.601075' WHERE "cars"."id" = 1
2014
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2015
+ Redirected to http://test.host/cars/1
2016
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
2017
+  (0.6ms) rollback transaction
2018
+  (0.0ms) begin transaction
2019
+  (0.0ms) SAVEPOINT active_record_1
2020
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2021
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2022
+ Processing by DogsController#create as HTML
2023
+ Parameters: {"dog"=>{"name"=>"Mustang"}}
2024
+ Completed 500 Internal Server Error in 3ms
2025
+  (0.6ms) rollback transaction
2026
+  (0.0ms) begin transaction
2027
+  (0.0ms) SAVEPOINT active_record_1
2028
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2029
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2030
+ Processing by DogsController#edit as HTML
2031
+ Parameters: {"id"=>"1"}
2032
+ Rendered dogs/_form.html.erb (1.3ms)
2033
+ Completed 500 Internal Server Error in 22ms
2034
+  (0.6ms) rollback transaction
2035
+  (0.0ms) begin transaction
2036
+  (0.0ms) SAVEPOINT active_record_1
2037
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2039
+ Processing by DogsController#index as HTML
2040
+ Completed 500 Internal Server Error in 2ms
2041
+  (0.6ms) rollback transaction
2042
+  (0.0ms) begin transaction
2043
+  (0.0ms) SAVEPOINT active_record_1
2044
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2045
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2046
+ Processing by DogsController#new as HTML
2047
+ Rendered dogs/_form.html.erb (0.7ms)
2048
+ Completed 500 Internal Server Error in 3ms
2049
+  (0.6ms) rollback transaction
2050
+  (0.0ms) begin transaction
2051
+  (0.0ms) SAVEPOINT active_record_1
2052
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2053
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2054
+ Processing by DogsController#show as HTML
2055
+ Parameters: {"id"=>"1"}
2056
+ Completed 500 Internal Server Error in 2ms
2057
+  (0.6ms) rollback transaction
2058
+  (0.0ms) begin transaction
2059
+  (0.0ms) SAVEPOINT active_record_1
2060
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:51:51 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:51:51 UTC +00:00]]
2061
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2062
+ Processing by DogsController#update as HTML
2063
+ Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
2064
+ Completed 500 Internal Server Error in 1ms
2065
+  (0.5ms) rollback transaction
2066
+  (0.0ms) begin transaction
2067
+  (0.0ms) rollback transaction
2068
+  (0.3ms) begin transaction
2069
+  (0.0ms) SAVEPOINT active_record_1
2070
+ SQL (21.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2071
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2072
+ Processing by CarsController#create as HTML
2073
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2074
+  (0.1ms) SAVEPOINT active_record_1
2075
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2076
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2077
+ Redirected to http://test.host/cars/2
2078
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2079
+  (0.6ms) rollback transaction
2080
+  (0.0ms) begin transaction
2081
+  (0.0ms) SAVEPOINT active_record_1
2082
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2083
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2084
+ Processing by CarsController#edit as HTML
2085
+ Parameters: {"id"=>"1"}
2086
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2087
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.2ms)
2088
+  (0.5ms) rollback transaction
2089
+  (0.0ms) begin transaction
2090
+  (0.0ms) SAVEPOINT active_record_1
2091
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2092
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2093
+ Processing by CarsController#index as HTML
2094
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2095
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2096
+  (0.7ms) rollback transaction
2097
+  (0.0ms) begin transaction
2098
+  (0.1ms) SAVEPOINT active_record_1
2099
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2101
+ Processing by CarsController#new as HTML
2102
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2103
+  (0.7ms) rollback transaction
2104
+  (0.0ms) begin transaction
2105
+  (0.1ms) SAVEPOINT active_record_1
2106
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2107
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2108
+ Processing by CarsController#show as HTML
2109
+ Parameters: {"id"=>"1"}
2110
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2111
+ Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.1ms)
2112
+  (0.4ms) rollback transaction
2113
+  (0.1ms) begin transaction
2114
+  (0.1ms) SAVEPOINT active_record_1
2115
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2116
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2117
+ Processing by CarsController#update as HTML
2118
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2119
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2120
+  (0.0ms) SAVEPOINT active_record_1
2121
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:53:58.415535' WHERE "cars"."id" = 1
2122
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2123
+ Redirected to http://test.host/cars/1
2124
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
2125
+  (0.5ms) rollback transaction
2126
+  (0.0ms) begin transaction
2127
+  (0.0ms) SAVEPOINT active_record_1
2128
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2130
+ Processing by DogsController#create as HTML
2131
+ Parameters: {"dog"=>{"name"=>"Mustang"}}
2132
+ Completed 500 Internal Server Error in 5ms
2133
+  (0.6ms) rollback transaction
2134
+  (0.0ms) begin transaction
2135
+  (0.0ms) SAVEPOINT active_record_1
2136
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2137
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2138
+ Processing by DogsController#edit as HTML
2139
+ Parameters: {"id"=>"1"}
2140
+ Rendered dogs/_form.html.erb (1.3ms)
2141
+ Completed 500 Internal Server Error in 23ms
2142
+  (0.6ms) rollback transaction
2143
+  (0.0ms) begin transaction
2144
+  (0.0ms) SAVEPOINT active_record_1
2145
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2146
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2147
+ Processing by DogsController#index as HTML
2148
+ Completed 500 Internal Server Error in 2ms
2149
+  (0.5ms) rollback transaction
2150
+  (0.0ms) begin transaction
2151
+  (0.0ms) SAVEPOINT active_record_1
2152
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2153
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2154
+ Processing by DogsController#new as HTML
2155
+ Rendered dogs/_form.html.erb (0.6ms)
2156
+ Completed 500 Internal Server Error in 2ms
2157
+  (0.5ms) rollback transaction
2158
+  (0.0ms) begin transaction
2159
+  (0.0ms) SAVEPOINT active_record_1
2160
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2161
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2162
+ Processing by DogsController#show as HTML
2163
+ Parameters: {"id"=>"1"}
2164
+ Completed 500 Internal Server Error in 1ms
2165
+  (0.5ms) rollback transaction
2166
+  (0.0ms) begin transaction
2167
+  (0.0ms) SAVEPOINT active_record_1
2168
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:53:58 UTC +00:00], ["name", "Camaro"], ["updated_at", Thu, 17 May 2012 04:53:58 UTC +00:00]]
2169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2170
+ Processing by DogsController#update as HTML
2171
+ Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
2172
+ Completed 500 Internal Server Error in 1ms
2173
+  (0.5ms) rollback transaction
2174
+  (0.0ms) begin transaction
2175
+  (0.0ms) rollback transaction
2176
+  (0.3ms) begin transaction
2177
+  (0.0ms) SAVEPOINT active_record_1
2178
+ SQL (20.0ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2179
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2180
+ Processing by CarsController#create as HTML
2181
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2182
+  (0.1ms) SAVEPOINT active_record_1
2183
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2185
+ Redirected to http://test.host/cars/2
2186
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
2187
+  (0.6ms) rollback transaction
2188
+  (0.0ms) begin transaction
2189
+  (0.0ms) SAVEPOINT active_record_1
2190
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2191
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2192
+ Processing by CarsController#edit as HTML
2193
+ Parameters: {"id"=>"1"}
2194
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2195
+ Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
2196
+  (0.6ms) rollback transaction
2197
+  (0.0ms) begin transaction
2198
+  (0.0ms) SAVEPOINT active_record_1
2199
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2200
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2201
+ Processing by CarsController#index as HTML
2202
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2203
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2204
+  (0.5ms) rollback transaction
2205
+  (0.0ms) begin transaction
2206
+  (0.0ms) SAVEPOINT active_record_1
2207
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2208
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2209
+ Processing by CarsController#new as HTML
2210
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2211
+  (0.5ms) rollback transaction
2212
+  (0.0ms) begin transaction
2213
+  (0.0ms) SAVEPOINT active_record_1
2214
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2215
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2216
+ Processing by CarsController#show as HTML
2217
+ Parameters: {"id"=>"1"}
2218
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2219
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2220
+  (0.5ms) rollback transaction
2221
+  (0.0ms) begin transaction
2222
+  (0.0ms) SAVEPOINT active_record_1
2223
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2225
+ Processing by CarsController#update as HTML
2226
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2227
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2228
+  (0.1ms) SAVEPOINT active_record_1
2229
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:56:19.977226' WHERE "cars"."id" = 1
2230
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2231
+ Redirected to http://test.host/cars/1
2232
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2233
+  (0.5ms) rollback transaction
2234
+  (0.0ms) begin transaction
2235
+  (0.0ms) SAVEPOINT active_record_1
2236
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2237
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2238
+ Processing by DogsController#create as HTML
2239
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2240
+ Completed 500 Internal Server Error in 4ms
2241
+  (0.7ms) rollback transaction
2242
+  (0.1ms) begin transaction
2243
+  (0.0ms) SAVEPOINT active_record_1
2244
+ SQL (0.6ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:19 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:56:19 UTC +00:00]]
2245
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2246
+ Processing by DogsController#edit as HTML
2247
+ Parameters: {"id"=>"1"}
2248
+ Rendered dogs/_form.html.erb (1.3ms)
2249
+ Completed 500 Internal Server Error in 24ms
2250
+  (0.5ms) rollback transaction
2251
+  (0.0ms) begin transaction
2252
+  (0.0ms) SAVEPOINT active_record_1
2253
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:20 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:56:20 UTC +00:00]]
2254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2255
+ Processing by DogsController#index as HTML
2256
+ Completed 500 Internal Server Error in 2ms
2257
+  (0.5ms) rollback transaction
2258
+  (0.0ms) begin transaction
2259
+  (0.0ms) SAVEPOINT active_record_1
2260
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:20 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:56:20 UTC +00:00]]
2261
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2262
+ Processing by DogsController#new as HTML
2263
+ Rendered dogs/_form.html.erb (0.5ms)
2264
+ Completed 500 Internal Server Error in 2ms
2265
+  (0.4ms) rollback transaction
2266
+  (0.0ms) begin transaction
2267
+  (0.0ms) SAVEPOINT active_record_1
2268
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:20 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:56:20 UTC +00:00]]
2269
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2270
+ Processing by DogsController#show as HTML
2271
+ Parameters: {"id"=>"1"}
2272
+ Completed 500 Internal Server Error in 1ms
2273
+  (0.6ms) rollback transaction
2274
+  (0.0ms) begin transaction
2275
+  (0.0ms) SAVEPOINT active_record_1
2276
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:56:20 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:56:20 UTC +00:00]]
2277
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2278
+ Processing by DogsController#update as HTML
2279
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2280
+ Completed 500 Internal Server Error in 2ms
2281
+  (0.5ms) rollback transaction
2282
+  (0.0ms) begin transaction
2283
+  (0.0ms) rollback transaction
2284
+  (0.3ms) begin transaction
2285
+  (0.0ms) SAVEPOINT active_record_1
2286
+ SQL (20.0ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2287
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2288
+ Processing by CarsController#create as HTML
2289
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2290
+  (0.1ms) SAVEPOINT active_record_1
2291
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2292
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2293
+ Redirected to http://test.host/cars/2
2294
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
2295
+  (0.6ms) rollback transaction
2296
+  (0.1ms) begin transaction
2297
+  (0.0ms) SAVEPOINT active_record_1
2298
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2299
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2300
+ Processing by CarsController#edit as HTML
2301
+ Parameters: {"id"=>"1"}
2302
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2303
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
2304
+  (0.6ms) rollback transaction
2305
+  (0.0ms) begin transaction
2306
+  (0.0ms) SAVEPOINT active_record_1
2307
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2308
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2309
+ Processing by CarsController#index as HTML
2310
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2311
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2312
+  (0.5ms) rollback transaction
2313
+  (0.0ms) begin transaction
2314
+  (0.0ms) SAVEPOINT active_record_1
2315
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2316
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2317
+ Processing by CarsController#new as HTML
2318
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2319
+  (0.6ms) rollback transaction
2320
+  (0.0ms) begin transaction
2321
+  (0.0ms) SAVEPOINT active_record_1
2322
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2323
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2324
+ Processing by CarsController#show as HTML
2325
+ Parameters: {"id"=>"1"}
2326
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2327
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
2328
+  (0.5ms) rollback transaction
2329
+  (0.0ms) begin transaction
2330
+  (0.0ms) SAVEPOINT active_record_1
2331
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2332
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2333
+ Processing by CarsController#update as HTML
2334
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2335
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2336
+  (0.1ms) SAVEPOINT active_record_1
2337
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:57:03.253845' WHERE "cars"."id" = 1
2338
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2339
+ Redirected to http://test.host/cars/1
2340
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2341
+  (0.5ms) rollback transaction
2342
+  (0.0ms) begin transaction
2343
+  (0.0ms) SAVEPOINT active_record_1
2344
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2345
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2346
+ Processing by DogsController#create as HTML
2347
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2348
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2349
+  (0.4ms) rollback transaction
2350
+  (0.0ms) begin transaction
2351
+  (0.0ms) SAVEPOINT active_record_1
2352
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2353
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2354
+ Processing by DogsController#edit as HTML
2355
+ Parameters: {"id"=>"1"}
2356
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2357
+  (0.5ms) rollback transaction
2358
+  (0.0ms) begin transaction
2359
+  (0.0ms) SAVEPOINT active_record_1
2360
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2361
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2362
+ Processing by DogsController#index as HTML
2363
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2364
+  (0.6ms) rollback transaction
2365
+  (0.0ms) begin transaction
2366
+  (0.0ms) SAVEPOINT active_record_1
2367
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2368
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2369
+ Processing by DogsController#new as HTML
2370
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2371
+  (0.5ms) rollback transaction
2372
+  (0.0ms) begin transaction
2373
+  (0.0ms) SAVEPOINT active_record_1
2374
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2375
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2376
+ Processing by DogsController#show as HTML
2377
+ Parameters: {"id"=>"1"}
2378
+ Completed 200 OK in 19ms (Views: 18.8ms | ActiveRecord: 0.0ms)
2379
+  (0.6ms) rollback transaction
2380
+  (0.0ms) begin transaction
2381
+  (0.0ms) SAVEPOINT active_record_1
2382
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:03 UTC +00:00]]
2383
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2384
+ Processing by DogsController#update as HTML
2385
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2386
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2387
+  (0.6ms) rollback transaction
2388
+  (0.0ms) begin transaction
2389
+  (0.0ms) rollback transaction
2390
+  (0.3ms) begin transaction
2391
+  (0.0ms) SAVEPOINT active_record_1
2392
+ SQL (19.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2394
+ Processing by CarsController#create as HTML
2395
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2396
+  (0.1ms) SAVEPOINT active_record_1
2397
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2398
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2399
+ Redirected to http://test.host/cars/2
2400
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2401
+  (0.6ms) rollback transaction
2402
+  (0.0ms) begin transaction
2403
+  (0.0ms) SAVEPOINT active_record_1
2404
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2405
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2406
+ Processing by CarsController#edit as HTML
2407
+ Parameters: {"id"=>"1"}
2408
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2409
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
2410
+  (0.6ms) rollback transaction
2411
+  (0.0ms) begin transaction
2412
+  (0.0ms) SAVEPOINT active_record_1
2413
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2415
+ Processing by CarsController#index as HTML
2416
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2417
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2418
+  (0.6ms) rollback transaction
2419
+  (0.0ms) begin transaction
2420
+  (0.0ms) SAVEPOINT active_record_1
2421
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2422
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2423
+ Processing by CarsController#new as HTML
2424
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2425
+  (0.5ms) rollback transaction
2426
+  (0.0ms) begin transaction
2427
+  (0.0ms) SAVEPOINT active_record_1
2428
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2429
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2430
+ Processing by CarsController#show as HTML
2431
+ Parameters: {"id"=>"1"}
2432
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2433
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
2434
+  (0.5ms) rollback transaction
2435
+  (0.0ms) begin transaction
2436
+  (0.0ms) SAVEPOINT active_record_1
2437
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2438
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2439
+ Processing by CarsController#update as HTML
2440
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2441
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2442
+  (0.0ms) SAVEPOINT active_record_1
2443
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:57:39.406695' WHERE "cars"."id" = 1
2444
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2445
+ Redirected to http://test.host/cars/1
2446
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2447
+  (1.3ms) rollback transaction
2448
+  (0.1ms) begin transaction
2449
+  (0.1ms) SAVEPOINT active_record_1
2450
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2451
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2452
+ Processing by DogsController#create as HTML
2453
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2454
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2455
+  (0.6ms) rollback transaction
2456
+  (0.0ms) begin transaction
2457
+  (0.0ms) SAVEPOINT active_record_1
2458
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2459
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2460
+ Processing by DogsController#edit as HTML
2461
+ Parameters: {"id"=>"1"}
2462
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2463
+  (1.1ms) rollback transaction
2464
+  (0.1ms) begin transaction
2465
+  (0.0ms) SAVEPOINT active_record_1
2466
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2467
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2468
+ Processing by DogsController#index as HTML
2469
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2470
+  (0.5ms) rollback transaction
2471
+  (0.0ms) begin transaction
2472
+  (0.0ms) SAVEPOINT active_record_1
2473
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2474
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2475
+ Processing by DogsController#new as HTML
2476
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2477
+  (0.5ms) rollback transaction
2478
+  (0.0ms) begin transaction
2479
+  (0.0ms) SAVEPOINT active_record_1
2480
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2482
+ Processing by DogsController#show as HTML
2483
+ Parameters: {"id"=>"1"}
2484
+ Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
2485
+  (0.6ms) rollback transaction
2486
+  (0.1ms) begin transaction
2487
+  (0.0ms) SAVEPOINT active_record_1
2488
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:39 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:57:39 UTC +00:00]]
2489
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2490
+ Processing by DogsController#update as HTML
2491
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2492
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2493
+  (0.5ms) rollback transaction
2494
+  (0.1ms) begin transaction
2495
+  (0.0ms) rollback transaction
2496
+  (0.3ms) begin transaction
2497
+  (0.0ms) SAVEPOINT active_record_1
2498
+ SQL (20.8ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:57:59 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:57:59 UTC +00:00]]
2499
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2500
+ Processing by CarsController#create as HTML
2501
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2502
+  (0.1ms) SAVEPOINT active_record_1
2503
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2504
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2505
+ Redirected to http://test.host/cars/2
2506
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
2507
+  (0.6ms) rollback transaction
2508
+  (0.0ms) begin transaction
2509
+  (0.0ms) SAVEPOINT active_record_1
2510
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2511
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2512
+ Processing by CarsController#edit as HTML
2513
+ Parameters: {"id"=>"1"}
2514
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2515
+ Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
2516
+  (0.6ms) rollback transaction
2517
+  (0.0ms) begin transaction
2518
+  (0.0ms) SAVEPOINT active_record_1
2519
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2520
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2521
+ Processing by CarsController#index as HTML
2522
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2523
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2524
+  (0.5ms) rollback transaction
2525
+  (0.0ms) begin transaction
2526
+  (0.0ms) SAVEPOINT active_record_1
2527
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2528
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2529
+ Processing by CarsController#new as HTML
2530
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2531
+  (0.6ms) rollback transaction
2532
+  (0.0ms) begin transaction
2533
+  (0.0ms) SAVEPOINT active_record_1
2534
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2535
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2536
+ Processing by CarsController#show as HTML
2537
+ Parameters: {"id"=>"1"}
2538
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2539
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2540
+  (0.6ms) rollback transaction
2541
+  (0.0ms) begin transaction
2542
+  (0.0ms) SAVEPOINT active_record_1
2543
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2544
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2545
+ Processing by CarsController#update as HTML
2546
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2547
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2548
+  (0.0ms) SAVEPOINT active_record_1
2549
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:58:00.066898' WHERE "cars"."id" = 1
2550
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2551
+ Redirected to http://test.host/cars/1
2552
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
2553
+  (0.5ms) rollback transaction
2554
+  (0.1ms) begin transaction
2555
+  (0.0ms) SAVEPOINT active_record_1
2556
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2557
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2558
+ Processing by DogsController#create as HTML
2559
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2560
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2561
+  (0.6ms) rollback transaction
2562
+  (0.0ms) begin transaction
2563
+  (0.0ms) SAVEPOINT active_record_1
2564
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2565
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2566
+ Processing by DogsController#edit as HTML
2567
+ Parameters: {"id"=>"1"}
2568
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2569
+  (0.6ms) rollback transaction
2570
+  (0.0ms) begin transaction
2571
+  (0.0ms) SAVEPOINT active_record_1
2572
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2573
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2574
+ Processing by DogsController#index as HTML
2575
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2576
+  (0.5ms) rollback transaction
2577
+  (0.0ms) begin transaction
2578
+  (0.0ms) SAVEPOINT active_record_1
2579
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2580
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2581
+ Processing by DogsController#new as HTML
2582
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2583
+  (0.5ms) rollback transaction
2584
+  (0.1ms) begin transaction
2585
+  (0.0ms) SAVEPOINT active_record_1
2586
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2587
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2588
+ Processing by DogsController#show as HTML
2589
+ Parameters: {"id"=>"1"}
2590
+ Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
2591
+  (0.4ms) rollback transaction
2592
+  (0.0ms) begin transaction
2593
+  (0.0ms) SAVEPOINT active_record_1
2594
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:00 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:00 UTC +00:00]]
2595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2596
+ Processing by DogsController#update as HTML
2597
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2598
+ Completed 200 OK in 1ms (Views: 1.2ms | ActiveRecord: 0.0ms)
2599
+  (0.5ms) rollback transaction
2600
+  (0.1ms) begin transaction
2601
+  (0.0ms) rollback transaction
2602
+  (0.3ms) begin transaction
2603
+  (0.0ms) SAVEPOINT active_record_1
2604
+ SQL (20.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2605
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2606
+ Processing by CarsController#create as HTML
2607
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2608
+  (0.1ms) SAVEPOINT active_record_1
2609
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2610
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2611
+ Redirected to http://test.host/cars/2
2612
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
2613
+  (0.6ms) rollback transaction
2614
+  (0.0ms) begin transaction
2615
+  (0.0ms) SAVEPOINT active_record_1
2616
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2617
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2618
+ Processing by CarsController#edit as HTML
2619
+ Parameters: {"id"=>"1"}
2620
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2621
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
2622
+  (0.5ms) rollback transaction
2623
+  (0.0ms) begin transaction
2624
+  (0.0ms) SAVEPOINT active_record_1
2625
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2626
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2627
+ Processing by CarsController#index as HTML
2628
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2629
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2630
+  (0.5ms) rollback transaction
2631
+  (0.0ms) begin transaction
2632
+  (0.0ms) SAVEPOINT active_record_1
2633
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2634
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2635
+ Processing by CarsController#new as HTML
2636
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2637
+  (0.5ms) rollback transaction
2638
+  (0.0ms) begin transaction
2639
+  (0.0ms) SAVEPOINT active_record_1
2640
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2641
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2642
+ Processing by CarsController#show as HTML
2643
+ Parameters: {"id"=>"1"}
2644
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2645
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2646
+  (0.6ms) rollback transaction
2647
+  (0.0ms) begin transaction
2648
+  (0.0ms) SAVEPOINT active_record_1
2649
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2650
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2651
+ Processing by CarsController#update as HTML
2652
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2653
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2654
+  (0.1ms) SAVEPOINT active_record_1
2655
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:58:24.508206' WHERE "cars"."id" = 1
2656
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2657
+ Redirected to http://test.host/cars/1
2658
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2659
+  (0.6ms) rollback transaction
2660
+  (0.0ms) begin transaction
2661
+  (0.0ms) SAVEPOINT active_record_1
2662
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2663
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2664
+ Processing by DogsController#create as HTML
2665
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2666
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2667
+  (0.5ms) rollback transaction
2668
+  (0.0ms) begin transaction
2669
+  (0.0ms) SAVEPOINT active_record_1
2670
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2671
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2672
+ Processing by DogsController#edit as HTML
2673
+ Parameters: {"id"=>"1"}
2674
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2675
+  (0.5ms) rollback transaction
2676
+  (0.0ms) begin transaction
2677
+  (0.0ms) SAVEPOINT active_record_1
2678
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2680
+ Processing by DogsController#index as HTML
2681
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2682
+  (0.5ms) rollback transaction
2683
+  (0.0ms) begin transaction
2684
+  (0.0ms) SAVEPOINT active_record_1
2685
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2686
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2687
+ Processing by DogsController#new as HTML
2688
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2689
+  (0.6ms) rollback transaction
2690
+  (0.0ms) begin transaction
2691
+  (0.0ms) SAVEPOINT active_record_1
2692
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2693
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2694
+ Processing by DogsController#show as HTML
2695
+ Parameters: {"id"=>"1"}
2696
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
2697
+  (0.6ms) rollback transaction
2698
+  (0.1ms) begin transaction
2699
+  (0.0ms) SAVEPOINT active_record_1
2700
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:24 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:24 UTC +00:00]]
2701
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2702
+ Processing by DogsController#update as HTML
2703
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2704
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
2705
+  (0.6ms) rollback transaction
2706
+  (0.0ms) begin transaction
2707
+  (0.0ms) rollback transaction
2708
+  (0.3ms) begin transaction
2709
+  (0.0ms) SAVEPOINT active_record_1
2710
+ SQL (20.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2711
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2712
+ Processing by CarsController#create as HTML
2713
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2714
+  (0.1ms) SAVEPOINT active_record_1
2715
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2716
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2717
+ Redirected to http://test.host/cars/2
2718
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
2719
+  (0.6ms) rollback transaction
2720
+  (0.0ms) begin transaction
2721
+  (0.0ms) SAVEPOINT active_record_1
2722
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2723
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2724
+ Processing by CarsController#edit as HTML
2725
+ Parameters: {"id"=>"1"}
2726
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2727
+ Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
2728
+  (0.6ms) rollback transaction
2729
+  (0.0ms) begin transaction
2730
+  (0.0ms) SAVEPOINT active_record_1
2731
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2733
+ Processing by CarsController#index as HTML
2734
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2735
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2736
+  (0.5ms) rollback transaction
2737
+  (0.0ms) begin transaction
2738
+  (0.0ms) SAVEPOINT active_record_1
2739
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2740
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2741
+ Processing by CarsController#new as HTML
2742
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2743
+  (0.6ms) rollback transaction
2744
+  (0.0ms) begin transaction
2745
+  (0.0ms) SAVEPOINT active_record_1
2746
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2747
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2748
+ Processing by CarsController#show as HTML
2749
+ Parameters: {"id"=>"1"}
2750
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2751
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
2752
+  (0.6ms) rollback transaction
2753
+  (0.0ms) begin transaction
2754
+  (0.0ms) SAVEPOINT active_record_1
2755
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2756
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2757
+ Processing by CarsController#update as HTML
2758
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2759
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2760
+  (0.0ms) SAVEPOINT active_record_1
2761
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:58:32.471000' WHERE "cars"."id" = 1
2762
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2763
+ Redirected to http://test.host/cars/1
2764
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2765
+  (0.6ms) rollback transaction
2766
+  (0.1ms) begin transaction
2767
+  (0.0ms) SAVEPOINT active_record_1
2768
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2769
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2770
+ Processing by DogsController#create as HTML
2771
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2772
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2773
+  (0.6ms) rollback transaction
2774
+  (0.0ms) begin transaction
2775
+  (0.0ms) SAVEPOINT active_record_1
2776
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2777
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2778
+ Processing by DogsController#edit as HTML
2779
+ Parameters: {"id"=>"1"}
2780
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2781
+  (0.5ms) rollback transaction
2782
+  (0.1ms) begin transaction
2783
+  (0.0ms) SAVEPOINT active_record_1
2784
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2785
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2786
+ Processing by DogsController#index as HTML
2787
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2788
+  (0.6ms) rollback transaction
2789
+  (0.1ms) begin transaction
2790
+  (0.0ms) SAVEPOINT active_record_1
2791
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2792
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2793
+ Processing by DogsController#new as HTML
2794
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2795
+  (0.6ms) rollback transaction
2796
+  (0.0ms) begin transaction
2797
+  (0.0ms) SAVEPOINT active_record_1
2798
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2799
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2800
+ Processing by DogsController#show as HTML
2801
+ Parameters: {"id"=>"1"}
2802
+ Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms)
2803
+  (0.6ms) rollback transaction
2804
+  (0.0ms) begin transaction
2805
+  (0.0ms) SAVEPOINT active_record_1
2806
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:58:32 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:58:32 UTC +00:00]]
2807
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2808
+ Processing by DogsController#update as HTML
2809
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2810
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2811
+  (0.6ms) rollback transaction
2812
+  (0.0ms) begin transaction
2813
+  (0.0ms) rollback transaction
2814
+  (0.3ms) begin transaction
2815
+  (0.0ms) SAVEPOINT active_record_1
2816
+ SQL (22.7ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2817
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2818
+ Processing by CarsController#create as HTML
2819
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2820
+  (0.1ms) SAVEPOINT active_record_1
2821
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2822
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2823
+ Redirected to http://test.host/cars/2
2824
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
2825
+  (0.5ms) rollback transaction
2826
+  (0.1ms) begin transaction
2827
+  (0.0ms) SAVEPOINT active_record_1
2828
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2829
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2830
+ Processing by CarsController#edit as HTML
2831
+ Parameters: {"id"=>"1"}
2832
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2833
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.2ms)
2834
+  (0.6ms) rollback transaction
2835
+  (0.0ms) begin transaction
2836
+  (0.0ms) SAVEPOINT active_record_1
2837
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2838
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2839
+ Processing by CarsController#index as HTML
2840
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2841
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2842
+  (0.5ms) rollback transaction
2843
+  (0.0ms) begin transaction
2844
+  (0.0ms) SAVEPOINT active_record_1
2845
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2846
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2847
+ Processing by CarsController#new as HTML
2848
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2849
+  (0.5ms) rollback transaction
2850
+  (0.0ms) begin transaction
2851
+  (0.0ms) SAVEPOINT active_record_1
2852
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2853
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2854
+ Processing by CarsController#show as HTML
2855
+ Parameters: {"id"=>"1"}
2856
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2857
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
2858
+  (0.6ms) rollback transaction
2859
+  (0.0ms) begin transaction
2860
+  (0.0ms) SAVEPOINT active_record_1
2861
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2862
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2863
+ Processing by CarsController#update as HTML
2864
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2865
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2866
+  (0.0ms) SAVEPOINT active_record_1
2867
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:59:03.587037' WHERE "cars"."id" = 1
2868
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2869
+ Redirected to http://test.host/cars/1
2870
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
2871
+  (0.6ms) rollback transaction
2872
+  (0.1ms) begin transaction
2873
+  (0.0ms) SAVEPOINT active_record_1
2874
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2875
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2876
+ Processing by DogsController#create as HTML
2877
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2878
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2879
+  (0.6ms) rollback transaction
2880
+  (0.0ms) begin transaction
2881
+  (0.0ms) SAVEPOINT active_record_1
2882
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2883
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2884
+ Processing by DogsController#edit as HTML
2885
+ Parameters: {"id"=>"1"}
2886
+ Dog Load (0.1ms) SELECT "dogs".* FROM "dogs" WHERE "dogs"."id" = ? LIMIT 1 [["id", "1"]]
2887
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2888
+  (0.6ms) rollback transaction
2889
+  (0.1ms) begin transaction
2890
+  (0.1ms) SAVEPOINT active_record_1
2891
+ SQL (0.5ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2892
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2893
+ Processing by DogsController#index as HTML
2894
+ Dog Load (0.1ms) SELECT "dogs".* FROM "dogs"
2895
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
2896
+  (0.5ms) rollback transaction
2897
+  (0.0ms) begin transaction
2898
+  (0.0ms) SAVEPOINT active_record_1
2899
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2900
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2901
+ Processing by DogsController#new as HTML
2902
+ Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
2903
+  (0.5ms) rollback transaction
2904
+  (0.0ms) begin transaction
2905
+  (0.0ms) SAVEPOINT active_record_1
2906
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2907
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2908
+ Processing by DogsController#show as HTML
2909
+ Parameters: {"id"=>"1"}
2910
+ Dog Load (0.1ms) SELECT "dogs".* FROM "dogs" WHERE "dogs"."id" = ? LIMIT 1 [["id", "1"]]
2911
+ Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
2912
+  (0.5ms) rollback transaction
2913
+  (0.0ms) begin transaction
2914
+  (0.0ms) SAVEPOINT active_record_1
2915
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:03 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:03 UTC +00:00]]
2916
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2917
+ Processing by DogsController#update as HTML
2918
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
2919
+ Dog Load (0.1ms) SELECT "dogs".* FROM "dogs" WHERE "dogs"."id" = ? LIMIT 1 [["id", "1"]]
2920
+ Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)
2921
+  (0.4ms) rollback transaction
2922
+  (0.1ms) begin transaction
2923
+  (0.0ms) rollback transaction
2924
+  (0.3ms) begin transaction
2925
+  (0.0ms) SAVEPOINT active_record_1
2926
+ SQL (19.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2927
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2928
+ Processing by CarsController#create as HTML
2929
+ Parameters: {"car"=>{"model"=>"Mustang"}}
2930
+  (0.1ms) SAVEPOINT active_record_1
2931
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2932
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2933
+ Redirected to http://test.host/cars/2
2934
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
2935
+  (0.8ms) rollback transaction
2936
+  (0.1ms) begin transaction
2937
+  (0.1ms) SAVEPOINT active_record_1
2938
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2939
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2940
+ Processing by CarsController#edit as HTML
2941
+ Parameters: {"id"=>"1"}
2942
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2943
+ Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.2ms)
2944
+  (0.4ms) rollback transaction
2945
+  (0.0ms) begin transaction
2946
+  (0.0ms) SAVEPOINT active_record_1
2947
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2948
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2949
+ Processing by CarsController#index as HTML
2950
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
2951
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2952
+  (0.5ms) rollback transaction
2953
+  (0.0ms) begin transaction
2954
+  (0.0ms) SAVEPOINT active_record_1
2955
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2956
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2957
+ Processing by CarsController#new as HTML
2958
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2959
+  (1.1ms) rollback transaction
2960
+  (0.1ms) begin transaction
2961
+  (0.1ms) SAVEPOINT active_record_1
2962
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2963
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2964
+ Processing by CarsController#show as HTML
2965
+ Parameters: {"id"=>"1"}
2966
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2967
+ Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.1ms)
2968
+  (0.5ms) rollback transaction
2969
+  (0.1ms) begin transaction
2970
+  (0.1ms) SAVEPOINT active_record_1
2971
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2972
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2973
+ Processing by CarsController#update as HTML
2974
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
2975
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
2976
+  (0.0ms) SAVEPOINT active_record_1
2977
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:59:31.152030' WHERE "cars"."id" = 1
2978
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2979
+ Redirected to http://test.host/cars/1
2980
+ Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
2981
+  (1.0ms) rollback transaction
2982
+  (0.0ms) begin transaction
2983
+  (0.0ms) SAVEPOINT active_record_1
2984
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2985
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2986
+ Processing by DogsController#create as HTML
2987
+ Parameters: {"dog"=>{"name"=>"Goku"}}
2988
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
2989
+  (0.5ms) rollback transaction
2990
+  (0.0ms) begin transaction
2991
+  (0.0ms) SAVEPOINT active_record_1
2992
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
2993
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2994
+ Processing by DogsController#edit as HTML
2995
+ Parameters: {"id"=>"1"}
2996
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2997
+  (0.6ms) rollback transaction
2998
+  (0.0ms) begin transaction
2999
+  (0.0ms) SAVEPOINT active_record_1
3000
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
3001
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3002
+ Processing by DogsController#index as HTML
3003
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3004
+  (0.6ms) rollback transaction
3005
+  (0.0ms) begin transaction
3006
+  (0.0ms) SAVEPOINT active_record_1
3007
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
3008
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3009
+ Processing by DogsController#new as HTML
3010
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3011
+  (0.5ms) rollback transaction
3012
+  (0.0ms) begin transaction
3013
+  (0.0ms) SAVEPOINT active_record_1
3014
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
3015
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3016
+ Processing by DogsController#show as HTML
3017
+ Parameters: {"id"=>"1"}
3018
+ Completed 200 OK in 21ms (Views: 20.2ms | ActiveRecord: 0.0ms)
3019
+  (0.5ms) rollback transaction
3020
+  (0.0ms) begin transaction
3021
+  (0.0ms) SAVEPOINT active_record_1
3022
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 04:59:31 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 04:59:31 UTC +00:00]]
3023
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3024
+ Processing by DogsController#update as HTML
3025
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
3026
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
3027
+  (0.5ms) rollback transaction
3028
+  (0.0ms) begin transaction
3029
+  (0.0ms) rollback transaction
3030
+  (0.3ms) begin transaction
3031
+  (0.0ms) SAVEPOINT active_record_1
3032
+ SQL (19.9ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3033
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3034
+ Processing by CarsController#create as HTML
3035
+ Parameters: {"car"=>{"model"=>"Mustang"}}
3036
+  (0.1ms) SAVEPOINT active_record_1
3037
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Mustang"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3038
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3039
+ Redirected to http://test.host/cars/2
3040
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
3041
+  (0.5ms) rollback transaction
3042
+  (0.1ms) begin transaction
3043
+  (0.1ms) SAVEPOINT active_record_1
3044
+ SQL (0.6ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3045
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3046
+ Processing by CarsController#edit as HTML
3047
+ Parameters: {"id"=>"1"}
3048
+ Car Load (0.2ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
3049
+ Completed 200 OK in 15ms (Views: 12.6ms | ActiveRecord: 0.2ms)
3050
+  (0.5ms) rollback transaction
3051
+  (0.0ms) begin transaction
3052
+  (0.0ms) SAVEPOINT active_record_1
3053
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3054
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3055
+ Processing by CarsController#index as HTML
3056
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" 
3057
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
3058
+  (0.7ms) rollback transaction
3059
+  (0.0ms) begin transaction
3060
+  (0.1ms) SAVEPOINT active_record_1
3061
+ SQL (0.5ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3062
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3063
+ Processing by CarsController#new as HTML
3064
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
3065
+  (0.6ms) rollback transaction
3066
+  (0.0ms) begin transaction
3067
+  (0.0ms) SAVEPOINT active_record_1
3068
+ SQL (0.4ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3069
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3070
+ Processing by CarsController#show as HTML
3071
+ Parameters: {"id"=>"1"}
3072
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
3073
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
3074
+  (0.6ms) rollback transaction
3075
+  (0.0ms) begin transaction
3076
+  (0.0ms) SAVEPOINT active_record_1
3077
+ SQL (0.3ms) INSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["model", "Camaro"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3078
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3079
+ Processing by CarsController#update as HTML
3080
+ Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
3081
+ Car Load (0.1ms) SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
3082
+  (0.0ms) SAVEPOINT active_record_1
3083
+  (0.3ms) UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 05:09:46.640037' WHERE "cars"."id" = 1
3084
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3085
+ Redirected to http://test.host/cars/1
3086
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
3087
+  (0.8ms) rollback transaction
3088
+  (0.1ms) begin transaction
3089
+  (0.0ms) SAVEPOINT active_record_1
3090
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3091
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3092
+ Processing by DogsController#create as HTML
3093
+ Parameters: {"dog"=>{"name"=>"Goku"}}
3094
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3095
+  (0.5ms) rollback transaction
3096
+  (0.0ms) begin transaction
3097
+  (0.0ms) SAVEPOINT active_record_1
3098
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3099
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3100
+ Processing by DogsController#edit as HTML
3101
+ Parameters: {"id"=>"1"}
3102
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3103
+  (0.6ms) rollback transaction
3104
+  (0.0ms) begin transaction
3105
+  (0.0ms) SAVEPOINT active_record_1
3106
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3107
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3108
+ Processing by DogsController#index as HTML
3109
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
3110
+  (0.6ms) rollback transaction
3111
+  (0.0ms) begin transaction
3112
+  (0.0ms) SAVEPOINT active_record_1
3113
+ SQL (0.4ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3114
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3115
+ Processing by DogsController#new as HTML
3116
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
3117
+  (0.6ms) rollback transaction
3118
+  (0.0ms) begin transaction
3119
+  (0.0ms) SAVEPOINT active_record_1
3120
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3121
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3122
+ Processing by DogsController#show as HTML
3123
+ Parameters: {"id"=>"1"}
3124
+ Completed 200 OK in 20ms (Views: 19.3ms | ActiveRecord: 0.0ms)
3125
+  (0.6ms) rollback transaction
3126
+  (0.0ms) begin transaction
3127
+  (0.0ms) SAVEPOINT active_record_1
3128
+ SQL (0.3ms) INSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?) [["created_at", Thu, 17 May 2012 05:09:46 UTC +00:00], ["name", "Dog"], ["updated_at", Thu, 17 May 2012 05:09:46 UTC +00:00]]
3129
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3130
+ Processing by DogsController#update as HTML
3131
+ Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
3132
+ Completed 200 OK in 1ms (Views: 1.1ms | ActiveRecord: 0.0ms)
3133
+  (0.5ms) rollback transaction
3134
+  (0.0ms) begin transaction
3135
+  (0.0ms) rollback transaction