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.
- data/MIT-LICENSE +20 -0
- data/README.md +60 -0
- data/Rakefile +38 -0
- data/lib/injector.rb +5 -0
- data/lib/injector/controller_method.rb +15 -0
- data/lib/injector/resolver.rb +55 -0
- data/lib/injector/version.rb +3 -0
- data/lib/tasks/injector_tasks.rake +4 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/javascripts/cars.js +2 -0
- data/test/dummy/app/assets/javascripts/dogs.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/assets/stylesheets/cars.css +4 -0
- data/test/dummy/app/assets/stylesheets/dogs.css +4 -0
- data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
- data/test/dummy/app/controllers/application_controller.rb +4 -0
- data/test/dummy/app/controllers/cars_controller.rb +47 -0
- data/test/dummy/app/controllers/dogs_controller.rb +50 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/helpers/cars_helper.rb +2 -0
- data/test/dummy/app/helpers/dogs_helper.rb +2 -0
- data/test/dummy/app/models/car.rb +3 -0
- data/test/dummy/app/models/dog.rb +3 -0
- data/test/dummy/app/views/cars/_form.html.erb +0 -0
- data/test/dummy/app/views/cars/edit.html.erb +0 -0
- data/test/dummy/app/views/cars/index.html.erb +0 -0
- data/test/dummy/app/views/cars/new.html.erb +0 -0
- data/test/dummy/app/views/cars/show.html.erb +0 -0
- data/test/dummy/app/views/dogs/_form.html.erb +0 -0
- data/test/dummy/app/views/dogs/edit.html.erb +0 -0
- data/test/dummy/app/views/dogs/index.html.erb +0 -0
- data/test/dummy/app/views/dogs/new.html.erb +0 -0
- data/test/dummy/app/views/dogs/show.html.erb +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +56 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +60 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/db/migrate/20120517025757_create_cars.rb +9 -0
- data/test/dummy/db/migrate/20120517043520_create_dogs.rb +9 -0
- data/test/dummy/db/schema.rb +28 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +202 -0
- data/test/dummy/log/test.log +3135 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/dummy/test/fixtures/cars.yml +7 -0
- data/test/dummy/test/fixtures/dogs.yml +7 -0
- data/test/dummy/test/functional/cars_controller_test.rb +46 -0
- data/test/dummy/test/functional/dogs_controller_test.rb +46 -0
- data/test/dummy/test/unit/car_test.rb +7 -0
- data/test/dummy/test/unit/dog_test.rb +7 -0
- data/test/dummy/test/unit/helpers/cars_helper_test.rb +4 -0
- data/test/dummy/test/unit/helpers/dogs_helper_test.rb +4 -0
- data/test/injector_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- 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,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,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
|
Binary file
|
@@ -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
|
Binary file
|
File without changes
|
@@ -0,0 +1,202 @@
|
|
1
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
2
|
+
[1m[35m (2.0ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
3
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
4
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
5
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
6
|
+
Migrating to CreateCars (20120517025757)
|
7
|
+
[1m[35m (0.0ms)[0m begin transaction
|
8
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
9
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120517025757')
|
10
|
+
[1m[36m (2.2ms)[0m [1mcommit transaction[0m
|
11
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
12
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
13
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
14
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
15
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
16
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
17
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
18
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
19
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
20
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
21
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
|
22
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
23
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
24
|
+
[1m[36m (2.5ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
25
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
26
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
27
|
+
[1m[35m (1.3ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
28
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
29
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
|
30
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
31
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
32
|
+
[1m[36m (2.1ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
33
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
34
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
35
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
36
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
37
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
|
38
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
39
|
+
Migrating to CreateCars (20120517025757)
|
40
|
+
Migrating to CreateDogs (20120517043355)
|
41
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
42
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
43
|
+
[1m[35m (0.5ms)[0m CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
44
|
+
[1m[36m (0.2ms)[0m [1mINSERT INTO "schema_migrations" ("version") VALUES ('20120517043355')[0m
|
45
|
+
[1m[35m (1.8ms)[0m commit transaction
|
46
|
+
[1m[36m (0.5ms)[0m [1mselect sqlite_version(*)[0m
|
47
|
+
[1m[35m (0.2ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
48
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("cars")[0m
|
49
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("dogs")
|
50
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
51
|
+
Migrating to CreateCars (20120517025757)
|
52
|
+
Migrating to CreateDogs (20120517043520)
|
53
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
54
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
55
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
58
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
59
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
60
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
61
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
62
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
63
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
64
|
+
Migrating to CreateCars (20120517025757)
|
65
|
+
Migrating to CreateDogs (20120517043520)
|
66
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
67
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
68
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
71
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
72
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
73
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
74
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
75
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
76
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
77
|
+
Migrating to CreateCars (20120517025757)
|
78
|
+
Migrating to CreateDogs (20120517043520)
|
79
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
80
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
81
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
84
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
85
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
86
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
87
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
88
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
89
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
90
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
91
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
92
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
93
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
94
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
95
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
96
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
97
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
98
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
99
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
100
|
+
[1m[35m (0.3ms)[0m select sqlite_version(*)
|
101
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
102
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
103
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
104
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
105
|
+
Migrating to CreateCars (20120517025757)
|
106
|
+
Migrating to CreateDogs (20120517043520)
|
107
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
108
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
109
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
112
|
+
[1m[36m (1.1ms)[0m [1mselect sqlite_version(*)[0m
|
113
|
+
[1m[35m (2.6ms)[0m CREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
114
|
+
[1m[36m (1.3ms)[0m [1mCREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
115
|
+
[1m[35m (1.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
116
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
117
|
+
[1m[35m (1.2ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
118
|
+
[1m[36m (0.1ms)[0m [1mSELECT version FROM "schema_migrations"[0m
|
119
|
+
[1m[35m (1.3ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517043355')
|
120
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120517025757')[0m
|
121
|
+
[1m[35m (0.1ms)[0m SELECT "schema_migrations"."version" FROM "schema_migrations"
|
122
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
123
|
+
Migrating to CreateCars (20120517025757)
|
124
|
+
Migrating to CreateDogs (20120517043520)
|
125
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
126
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
127
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
130
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
131
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
132
|
+
Migrating to CreateCars (20120517025757)
|
133
|
+
Migrating to CreateDogs (20120517043520)
|
134
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
135
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
136
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
139
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
140
|
+
Migrating to CreateCars (20120517025757)
|
141
|
+
Migrating to CreateDogs (20120517043520)
|
142
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
144
|
+
[1m[35m (0.2ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
147
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
148
|
+
[1m[35m (2.5ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
149
|
+
[1m[36m (0.1ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
150
|
+
[1m[35m (1.4ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
151
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
152
|
+
Migrating to CreateCars (20120517025757)
|
153
|
+
[1m[35m (0.0ms)[0m begin transaction
|
154
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
155
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120517025757')
|
156
|
+
[1m[36m (1.4ms)[0m [1mcommit transaction[0m
|
157
|
+
Migrating to CreateDogs (20120517043520)
|
158
|
+
[1m[35m (0.0ms)[0m begin transaction
|
159
|
+
[1m[36m (0.4ms)[0m [1mCREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
160
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20120517043520')
|
161
|
+
[1m[36m (1.2ms)[0m [1mcommit transaction[0m
|
162
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
163
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
164
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
165
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
166
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
167
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
168
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
169
|
+
[1m[35m (1.8ms)[0m CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
170
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
171
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
172
|
+
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
173
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
174
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120517043520')[0m
|
175
|
+
[1m[35m (1.1ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
|
176
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
177
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
178
|
+
[1m[36m (1.8ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
179
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
180
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
181
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
182
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
183
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
184
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120517043520')[0m
|
185
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
|
186
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
187
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
188
|
+
[1m[36m (2.9ms)[0m [1mCREATE TABLE "cars" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "model" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
189
|
+
[1m[35m (1.4ms)[0m CREATE TABLE "dogs" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL)
|
190
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
191
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("schema_migrations")
|
192
|
+
[1m[36m (1.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
193
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
194
|
+
[1m[36m (1.2ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20120517043520')[0m
|
195
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20120517025757')
|
196
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
197
|
+
Migrating to CreateCars (20120517025757)
|
198
|
+
Migrating to CreateDogs (20120517043520)
|
199
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
200
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
201
|
+
[1m[35m (0.0ms)[0m PRAGMA index_list("cars")
|
202
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("dogs")[0m
|
@@ -0,0 +1,3135 @@
|
|
1
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
4
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
5
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
6
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
7
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
8
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
9
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
12
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
14
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
15
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
16
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
17
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
18
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
19
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
20
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
22
|
+
Processing by CarsController#index as HTML
|
23
|
+
Completed 500 Internal Server Error in 15ms
|
24
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
25
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
26
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
27
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
28
|
+
Processing by CarsController#index as HTML
|
29
|
+
Completed 500 Internal Server Error in 11ms
|
30
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
33
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
38
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
39
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
40
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
41
|
+
Processing by CarsController#index as HTML
|
42
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
43
|
+
Completed 500 Internal Server Error in 1ms
|
44
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
45
|
+
[1m[35m (0.0ms)[0m begin transaction
|
46
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
47
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
48
|
+
Processing by CarsController#index as HTML
|
49
|
+
[1m[35mCar Load (0.1ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
53
|
+
[1m[35m (0.0ms)[0m begin transaction
|
54
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
55
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
56
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
57
|
+
[1m[36mSQL (54.8ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
59
|
+
Processing by CarsController#index as HTML
|
60
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
61
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
62
|
+
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
63
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
64
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
65
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
67
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
68
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
70
|
+
Processing by CarsController#index as HTML
|
71
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
72
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
73
|
+
Completed 200 OK in 11ms (Views: 9.3ms | ActiveRecord: 0.2ms)
|
74
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
75
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
76
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
77
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
78
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
79
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
81
|
+
Processing by CarsController#index as HTML
|
82
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
83
|
+
Rendered cars/index.html.erb within layouts/application (1.6ms)
|
84
|
+
Completed 200 OK in 11ms (Views: 9.6ms | ActiveRecord: 0.1ms)
|
85
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
86
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
87
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
88
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
89
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
90
|
+
[1m[36mSQL (3.7ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
92
|
+
Processing by CarsController#index as HTML
|
93
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
94
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
95
|
+
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.1ms)
|
96
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
97
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
98
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
99
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
100
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
101
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
103
|
+
Processing by CarsController#index as HTML
|
104
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
105
|
+
Rendered cars/index.html.erb within layouts/application (1.7ms)
|
106
|
+
Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)
|
107
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
108
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
109
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
110
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
111
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
112
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
114
|
+
Processing by CarsController#index as HTML
|
115
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
116
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
117
|
+
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.2ms)
|
118
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
119
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
120
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
121
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
122
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
123
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
125
|
+
Processing by CarsController#index as HTML
|
126
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
127
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
128
|
+
Completed 200 OK in 28ms (Views: 26.8ms | ActiveRecord: 0.1ms)
|
129
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
130
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
131
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
132
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
133
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
134
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
136
|
+
Processing by CarsController#index as HTML
|
137
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
138
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
139
|
+
Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)
|
140
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
141
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
142
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
143
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
144
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
145
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
147
|
+
Processing by CarsController#index as HTML
|
148
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
149
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
150
|
+
Completed 200 OK in 28ms (Views: 26.9ms | ActiveRecord: 0.1ms)
|
151
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
152
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
153
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
154
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
155
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
156
|
+
[1m[36mSQL (3.7ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
158
|
+
Processing by CarsController#index as HTML
|
159
|
+
Completed 500 Internal Server Error in 0ms
|
160
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
161
|
+
[1m[35m (0.0ms)[0m begin transaction
|
162
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
163
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
164
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
165
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
167
|
+
Processing by CarsController#index as HTML
|
168
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
169
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
170
|
+
Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 0.1ms)
|
171
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
172
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
173
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
174
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
175
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
176
|
+
[1m[36mSQL (3.9ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
178
|
+
Processing by CarsController#index as HTML
|
179
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
180
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
181
|
+
Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.1ms)
|
182
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
183
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
184
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
185
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
187
|
+
Processing by CarsController#show as HTML
|
188
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
189
|
+
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
190
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
191
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
192
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
193
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
194
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
195
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
197
|
+
Processing by CarsController#index as HTML
|
198
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
199
|
+
Rendered cars/index.html.erb within layouts/application (13.1ms)
|
200
|
+
Completed 200 OK in 23ms (Views: 21.3ms | ActiveRecord: 0.1ms)
|
201
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
202
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
203
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
204
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
206
|
+
Processing by CarsController#show as HTML
|
207
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
208
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
209
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
211
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
212
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
213
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
214
|
+
[1m[36mSQL (6.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
216
|
+
Processing by CarsController#index as HTML
|
217
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
218
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
219
|
+
Completed 200 OK in 28ms (Views: 25.3ms | ActiveRecord: 0.2ms)
|
220
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
221
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
222
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
223
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
225
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
226
|
+
[1m[35m (0.0ms)[0m begin transaction
|
227
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
228
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
230
|
+
[1m[36mSQL (3.7ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
232
|
+
Processing by CarsController#index as HTML
|
233
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
234
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
235
|
+
Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.1ms)
|
236
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
237
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
238
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
239
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
241
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
242
|
+
[1m[35m (0.0ms)[0m begin transaction
|
243
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
244
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
245
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
246
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
248
|
+
Processing by CarsController#index as HTML
|
249
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
250
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
251
|
+
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
252
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
253
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
254
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
255
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
257
|
+
Processing by CarsController#show as HTML
|
258
|
+
Parameters: {"id"=>"1"}
|
259
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
260
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
261
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
262
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
263
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
264
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
265
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
266
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
268
|
+
Processing by CarsController#index as HTML
|
269
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
270
|
+
Completed 500 Internal Server Error in 2ms
|
271
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
272
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
273
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
274
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
276
|
+
Processing by CarsController#show as HTML
|
277
|
+
Parameters: {"id"=>"1"}
|
278
|
+
[1m[36mCar Load (17.4ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
279
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
280
|
+
Completed 200 OK in 28ms (Views: 8.6ms | ActiveRecord: 17.5ms)
|
281
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
282
|
+
[1m[35m (0.0ms)[0m begin transaction
|
283
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
284
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
285
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
286
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
288
|
+
Processing by CarsController#index as HTML
|
289
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
290
|
+
Completed 500 Internal Server Error in 1ms
|
291
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
293
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
294
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
296
|
+
Processing by CarsController#show as HTML
|
297
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
298
|
+
[1m[36mCar Load (17.0ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
299
|
+
Completed 500 Internal Server Error in 18ms
|
300
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
302
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
303
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
304
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
305
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
307
|
+
Processing by CarsController#index as HTML
|
308
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
309
|
+
Completed 500 Internal Server Error in 2ms
|
310
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
311
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
312
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
313
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
315
|
+
Processing by CarsController#show as HTML
|
316
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
317
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
318
|
+
Completed 500 Internal Server Error in 1ms
|
319
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
320
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
321
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
322
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
323
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
324
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
326
|
+
Processing by CarsController#index as HTML
|
327
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
328
|
+
Completed 500 Internal Server Error in 1ms
|
329
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
330
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
331
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
332
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
334
|
+
Processing by CarsController#show as HTML
|
335
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
336
|
+
[1m[36mCar Load (16.8ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
337
|
+
Completed 500 Internal Server Error in 18ms
|
338
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
339
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
340
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
341
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
342
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
343
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
345
|
+
Processing by CarsController#index as HTML
|
346
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
347
|
+
Completed 500 Internal Server Error in 1ms
|
348
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
349
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
350
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
351
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
353
|
+
Processing by CarsController#show as HTML
|
354
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
355
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
356
|
+
Completed 500 Internal Server Error in 1ms
|
357
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
358
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
359
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
360
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
361
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
362
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
364
|
+
Processing by CarsController#index as HTML
|
365
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
366
|
+
Completed 500 Internal Server Error in 1ms
|
367
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
368
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
369
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
370
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
372
|
+
Processing by CarsController#show as HTML
|
373
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
374
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
375
|
+
Completed 500 Internal Server Error in 18ms
|
376
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
377
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
378
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
379
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
380
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
381
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
383
|
+
Processing by CarsController#index as HTML
|
384
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
385
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
386
|
+
Completed 200 OK in 28ms (Views: 26.6ms | ActiveRecord: 0.1ms)
|
387
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
388
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
389
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
390
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
392
|
+
Processing by CarsController#show as HTML
|
393
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
394
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
395
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
396
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
397
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
398
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
399
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
400
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
401
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
403
|
+
Processing by CarsController#index as HTML
|
404
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
405
|
+
Completed 500 Internal Server Error in 1ms
|
406
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
407
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
408
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
409
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
411
|
+
Processing by CarsController#show as HTML
|
412
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
413
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
414
|
+
Completed 500 Internal Server Error in 1ms
|
415
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
416
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
417
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
418
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
419
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
420
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
422
|
+
Processing by CarsController#index as HTML
|
423
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
424
|
+
[1m[35mCar Load (0.1ms)[0m 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
|
+
[1m[36m (0.8ms)[0m [1mrollback transaction[0m
|
428
|
+
[1m[35m (0.1ms)[0m begin transaction
|
429
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
430
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
432
|
+
Processing by CarsController#show as HTML
|
433
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
434
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
435
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
436
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
437
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
438
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
439
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
440
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
441
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
442
|
+
[1m[36mSQL (3.1ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
444
|
+
Processing by CarsController#index as HTML
|
445
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
446
|
+
[1m[35mCar Load (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
450
|
+
[1m[35m (0.1ms)[0m begin transaction
|
451
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
452
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
454
|
+
Processing by CarsController#show as HTML
|
455
|
+
Parameters: {"car"=>{"id"=>"1"}}
|
456
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
457
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
458
|
+
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
459
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
460
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
461
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
462
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
463
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
464
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
466
|
+
Processing by CarsController#index as HTML
|
467
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
468
|
+
[1m[35mCar Load (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
472
|
+
[1m[35m (0.0ms)[0m begin transaction
|
473
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
474
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
476
|
+
Processing by CarsController#show as HTML
|
477
|
+
Parameters: {"id"=>"1"}
|
478
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
479
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
480
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
481
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
482
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
483
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
484
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
485
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
486
|
+
[1m[36mSQL (3.7ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
488
|
+
Processing by CarsController#index as HTML
|
489
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
490
|
+
[1m[35mCar Load (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
494
|
+
[1m[35m (0.1ms)[0m begin transaction
|
495
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
496
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
498
|
+
Processing by CarsController#show as HTML
|
499
|
+
Parameters: {"id"=>"1"}
|
500
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
501
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
502
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
503
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
504
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
505
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
506
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
507
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
508
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
510
|
+
Processing by CarsController#index as HTML
|
511
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
512
|
+
[1m[35mCar Load (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
516
|
+
[1m[35m (0.1ms)[0m begin transaction
|
517
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
518
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
520
|
+
Processing by CarsController#show as HTML
|
521
|
+
Parameters: {"id"=>"1"}
|
522
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
523
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
524
|
+
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
525
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
527
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
528
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
529
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
530
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
532
|
+
Processing by CarsController#index as HTML
|
533
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
534
|
+
Completed 500 Internal Server Error in 1ms
|
535
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
536
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
537
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
538
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
540
|
+
Processing by CarsController#show as HTML
|
541
|
+
Parameters: {"id"=>"1"}
|
542
|
+
[1m[36mCar Load (19.5ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
543
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
544
|
+
Completed 200 OK in 30ms (Views: 8.4ms | ActiveRecord: 19.7ms)
|
545
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
546
|
+
[1m[35m (0.0ms)[0m begin transaction
|
547
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
548
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
549
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
550
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
552
|
+
Processing by CarsController#index as HTML
|
553
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
554
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
555
|
+
Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 0.1ms)
|
556
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
557
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
558
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
559
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
561
|
+
Processing by CarsController#show as HTML
|
562
|
+
Parameters: {"id"=>"1"}
|
563
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
564
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
565
|
+
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
566
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
567
|
+
[1m[35m (0.1ms)[0m begin transaction
|
568
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
569
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
570
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
571
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
573
|
+
Processing by CarsController#index as HTML
|
574
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
575
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
576
|
+
Completed 200 OK in 29ms (Views: 26.6ms | ActiveRecord: 0.1ms)
|
577
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
578
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
579
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
580
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
582
|
+
Processing by CarsController#show as HTML
|
583
|
+
Parameters: {"id"=>"1"}
|
584
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
585
|
+
[1m[35mCar Load (0.3ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
586
|
+
Completed 200 OK in 7ms (Views: 3.1ms | ActiveRecord: 0.4ms)
|
587
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
588
|
+
[1m[35m (0.0ms)[0m begin transaction
|
589
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
590
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
591
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
592
|
+
[1m[36mSQL (4.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
594
|
+
Processing by CarsController#index as HTML
|
595
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
596
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
597
|
+
Completed 200 OK in 27ms (Views: 25.8ms | ActiveRecord: 0.1ms)
|
598
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
599
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
600
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
601
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
603
|
+
Processing by CarsController#show as HTML
|
604
|
+
Parameters: {"id"=>"1"}
|
605
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
606
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
607
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
608
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
609
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
610
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
611
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
612
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
614
|
+
Processing by CarsController#index as HTML
|
615
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
616
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
617
|
+
Completed 200 OK in 28ms (Views: 26.4ms | ActiveRecord: 0.1ms)
|
618
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
619
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
620
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
621
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
623
|
+
Processing by CarsController#show as HTML
|
624
|
+
Parameters: {"id"=>"1"}
|
625
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
626
|
+
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.2ms)
|
627
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
629
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
630
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
631
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
632
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
634
|
+
Processing by CarsController#index as HTML
|
635
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
636
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
637
|
+
Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.1ms)
|
638
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
639
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
640
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
641
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
646
|
+
[1m[35m (0.0ms)[0m begin transaction
|
647
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
648
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
649
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
650
|
+
[1m[36mSQL (3.1ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
652
|
+
Processing by CarsController#index as HTML
|
653
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
654
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
655
|
+
Completed 200 OK in 29ms (Views: 26.9ms | ActiveRecord: 0.2ms)
|
656
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
657
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
658
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
659
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
664
|
+
[1m[35m (0.1ms)[0m begin transaction
|
665
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
666
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
667
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
668
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
670
|
+
Processing by CarsController#index as HTML
|
671
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
672
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
673
|
+
Completed 200 OK in 27ms (Views: 25.7ms | ActiveRecord: 0.1ms)
|
674
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
675
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
676
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
677
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
682
|
+
[1m[35m (0.1ms)[0m begin transaction
|
683
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
684
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
686
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
688
|
+
Processing by CarsController#index as HTML
|
689
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
690
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
691
|
+
Completed 200 OK in 28ms (Views: 26.3ms | ActiveRecord: 0.1ms)
|
692
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
693
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
694
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
695
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
700
|
+
[1m[35m (0.1ms)[0m begin transaction
|
701
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
702
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
703
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
704
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
706
|
+
Processing by CarsController#index as HTML
|
707
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
708
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
709
|
+
Completed 200 OK in 27ms (Views: 25.4ms | ActiveRecord: 0.1ms)
|
710
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
711
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
712
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
713
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
718
|
+
[1m[35m (0.1ms)[0m begin transaction
|
719
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
720
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
721
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
722
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
724
|
+
Processing by CarsController#index as HTML
|
725
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
726
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
727
|
+
Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.1ms)
|
728
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
729
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
730
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
731
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
736
|
+
[1m[35m (0.0ms)[0m begin transaction
|
737
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
738
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
739
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
740
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
742
|
+
Processing by CarsController#index as HTML
|
743
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
744
|
+
Rendered cars/index.html.erb within layouts/application (1.4ms)
|
745
|
+
Completed 200 OK in 10ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
746
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
747
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
748
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
749
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
754
|
+
[1m[35m (0.0ms)[0m begin transaction
|
755
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
756
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
757
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
758
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
760
|
+
Processing by CarsController#index as HTML
|
761
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
762
|
+
Rendered cars/index.html.erb within layouts/application (1.3ms)
|
763
|
+
Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.1ms)
|
764
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
765
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
766
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
767
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
772
|
+
[1m[35m (0.0ms)[0m begin transaction
|
773
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
774
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
775
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
776
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
778
|
+
Processing by CarsController#edit as HTML
|
779
|
+
Parameters: {"id"=>"1"}
|
780
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
785
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
786
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
788
|
+
Processing by CarsController#index as HTML
|
789
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
790
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
791
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
792
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
793
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
794
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
799
|
+
[1m[35m (0.0ms)[0m begin transaction
|
800
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
801
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
802
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
803
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
810
|
+
[1m[35m (0.0ms)[0m begin transaction
|
811
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
812
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
814
|
+
Processing by CarsController#edit as HTML
|
815
|
+
Parameters: {"id"=>"1"}
|
816
|
+
[1m[35mCar Load (0.2ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
817
|
+
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
818
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
819
|
+
[1m[35m (0.0ms)[0m begin transaction
|
820
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
821
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
823
|
+
Processing by CarsController#index as HTML
|
824
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
825
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
826
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
827
|
+
[1m[35m (0.0ms)[0m begin transaction
|
828
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
829
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
831
|
+
Processing by CarsController#new as HTML
|
832
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
833
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
834
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
835
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
836
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
837
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
838
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
845
|
+
[1m[35m (0.0ms)[0m begin transaction
|
846
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
847
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
849
|
+
Processing by CarsController#edit as HTML
|
850
|
+
Parameters: {"id"=>"1"}
|
851
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
852
|
+
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
853
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
854
|
+
[1m[35m (0.0ms)[0m begin transaction
|
855
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
856
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
858
|
+
Processing by CarsController#index as HTML
|
859
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
860
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
861
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
862
|
+
[1m[35m (0.0ms)[0m begin transaction
|
863
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
864
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
866
|
+
Processing by CarsController#new as HTML
|
867
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
868
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
869
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
870
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
871
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
872
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
873
|
+
[1m[36mSQL (3.1ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
880
|
+
[1m[35m (0.0ms)[0m begin transaction
|
881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
882
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
884
|
+
Processing by CarsController#edit as HTML
|
885
|
+
Parameters: {"id"=>"1"}
|
886
|
+
[1m[35mCar Load (0.2ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
887
|
+
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.2ms)
|
888
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
889
|
+
[1m[35m (0.0ms)[0m begin transaction
|
890
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
891
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
893
|
+
Processing by CarsController#index as HTML
|
894
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
895
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
896
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
897
|
+
[1m[35m (0.0ms)[0m begin transaction
|
898
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
899
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
901
|
+
Processing by CarsController#new as HTML
|
902
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
903
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
904
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
905
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
906
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
907
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
908
|
+
[1m[36mSQL (3.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
914
|
+
[1m[35m (0.0ms)[0m begin transaction
|
915
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
916
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
918
|
+
Processing by CarsController#edit as HTML
|
919
|
+
Parameters: {"id"=>"1"}
|
920
|
+
[1m[35mCar Load (0.2ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
921
|
+
Completed 200 OK in 13ms (Views: 10.4ms | ActiveRecord: 0.2ms)
|
922
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
923
|
+
[1m[35m (0.0ms)[0m begin transaction
|
924
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
925
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
927
|
+
Processing by CarsController#index as HTML
|
928
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
929
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
930
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
931
|
+
[1m[35m (0.0ms)[0m begin transaction
|
932
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
933
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
935
|
+
Processing by CarsController#new as HTML
|
936
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
937
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
938
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
939
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
940
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
941
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
942
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
948
|
+
[1m[35m (0.0ms)[0m begin transaction
|
949
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
950
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
952
|
+
Processing by CarsController#edit as HTML
|
953
|
+
Parameters: {"id"=>"1"}
|
954
|
+
[1m[35mCar Load (0.3ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
955
|
+
Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.3ms)
|
956
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
957
|
+
[1m[35m (0.1ms)[0m begin transaction
|
958
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
959
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
961
|
+
Processing by CarsController#index as HTML
|
962
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
963
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
964
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
965
|
+
[1m[35m (0.0ms)[0m begin transaction
|
966
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
967
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
969
|
+
Processing by CarsController#new as HTML
|
970
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
971
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
972
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
973
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
974
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
975
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
976
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
982
|
+
[1m[35m (0.1ms)[0m begin transaction
|
983
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
984
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
986
|
+
Processing by CarsController#edit as HTML
|
987
|
+
Parameters: {"id"=>"1"}
|
988
|
+
[1m[35mCar Load (0.2ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
989
|
+
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
|
990
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
991
|
+
[1m[35m (0.1ms)[0m begin transaction
|
992
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
993
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
995
|
+
Processing by CarsController#index as HTML
|
996
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
997
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
998
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
999
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1000
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1001
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1003
|
+
Processing by CarsController#new as HTML
|
1004
|
+
Completed 200 OK in 19ms (Views: 18.0ms | ActiveRecord: 0.0ms)
|
1005
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1006
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1007
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1008
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1009
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1010
|
+
[1m[36mSQL (3.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1012
|
+
Processing by CarsController#create as HTML
|
1013
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1014
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1015
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1017
|
+
Completed 500 Internal Server Error in 10ms
|
1018
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1019
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1020
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1021
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1023
|
+
Processing by CarsController#edit as HTML
|
1024
|
+
Parameters: {"id"=>"1"}
|
1025
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1026
|
+
Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.2ms)
|
1027
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1029
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1030
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1032
|
+
Processing by CarsController#index as HTML
|
1033
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1034
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1035
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1036
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1037
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1038
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1043
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1044
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1045
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1046
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1047
|
+
[1m[36mSQL (4.9ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1049
|
+
Processing by CarsController#create as HTML
|
1050
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1051
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1052
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1054
|
+
Completed 500 Internal Server Error in 2ms
|
1055
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1056
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1057
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1058
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1060
|
+
Processing by CarsController#edit as HTML
|
1061
|
+
Parameters: {"id"=>"1"}
|
1062
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1063
|
+
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.2ms)
|
1064
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1065
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1066
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1067
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1069
|
+
Processing by CarsController#index as HTML
|
1070
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1071
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
1072
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
1073
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1074
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1075
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1080
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1081
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1082
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1083
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1084
|
+
[1m[36mSQL (3.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1086
|
+
Processing by CarsController#create as HTML
|
1087
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1088
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1089
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1091
|
+
Redirected to
|
1092
|
+
Completed 500 Internal Server Error in 4ms
|
1093
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1094
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1095
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1096
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1098
|
+
Processing by CarsController#edit as HTML
|
1099
|
+
Parameters: {"id"=>"1"}
|
1100
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1101
|
+
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
|
1102
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1103
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1104
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1105
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1107
|
+
Processing by CarsController#index as HTML
|
1108
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1109
|
+
Completed 200 OK in 20ms (Views: 18.5ms | ActiveRecord: 0.1ms)
|
1110
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1111
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1112
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1113
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1118
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1119
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1120
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1121
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1122
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1124
|
+
Processing by CarsController#create as HTML
|
1125
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1126
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1127
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1129
|
+
Redirected to
|
1130
|
+
Completed 500 Internal Server Error in 4ms
|
1131
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1132
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1133
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1134
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1136
|
+
Processing by CarsController#edit as HTML
|
1137
|
+
Parameters: {"id"=>"1"}
|
1138
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1139
|
+
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.1ms)
|
1140
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1141
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1142
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1143
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1145
|
+
Processing by CarsController#index as HTML
|
1146
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1147
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1148
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1149
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1150
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1151
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1156
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1157
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1158
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1160
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1162
|
+
Processing by CarsController#create as HTML
|
1163
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1164
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1165
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1167
|
+
Redirected to
|
1168
|
+
Completed 500 Internal Server Error in 4ms
|
1169
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1171
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1172
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1174
|
+
Processing by CarsController#edit as HTML
|
1175
|
+
Parameters: {"id"=>"1"}
|
1176
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1177
|
+
Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
1178
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1179
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1180
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1181
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1183
|
+
Processing by CarsController#index as HTML
|
1184
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1185
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1186
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1187
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1188
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1189
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
1194
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1195
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1196
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1197
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1198
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1200
|
+
Processing by CarsController#create as HTML
|
1201
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1202
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1203
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1205
|
+
Redirected to
|
1206
|
+
Completed 500 Internal Server Error in 4ms
|
1207
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1208
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1209
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1210
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1212
|
+
Processing by CarsController#edit as HTML
|
1213
|
+
Parameters: {"id"=>"1"}
|
1214
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1215
|
+
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
|
1216
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1217
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1218
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1219
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1221
|
+
Processing by CarsController#index as HTML
|
1222
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1223
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
1224
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
1225
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1226
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1227
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1232
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1233
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1234
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1236
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1238
|
+
Processing by CarsController#create as HTML
|
1239
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1240
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1241
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1243
|
+
Redirected to http://test.host/cars/2
|
1244
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1245
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1246
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1247
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1248
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1250
|
+
Processing by CarsController#edit as HTML
|
1251
|
+
Parameters: {"id"=>"1"}
|
1252
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1253
|
+
Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.2ms)
|
1254
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1255
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1256
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1257
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1259
|
+
Processing by CarsController#index as HTML
|
1260
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1261
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1262
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1263
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1264
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1265
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1270
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1271
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1272
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1273
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1274
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1276
|
+
Processing by CarsController#create as HTML
|
1277
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1278
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1279
|
+
[1m[35mSQL (0.8ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1281
|
+
Redirected to http://test.host/cars/2
|
1282
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.9ms)
|
1283
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1284
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1285
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1286
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1288
|
+
Processing by CarsController#edit as HTML
|
1289
|
+
Parameters: {"id"=>"1"}
|
1290
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1291
|
+
Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
1292
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1293
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1294
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1295
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1297
|
+
Processing by CarsController#index as HTML
|
1298
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1299
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1300
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1302
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1303
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1308
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1309
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1310
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1311
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1312
|
+
[1m[36mSQL (3.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1314
|
+
Processing by CarsController#create as HTML
|
1315
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1316
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1317
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1319
|
+
Redirected to http://test.host/cars/2
|
1320
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
1321
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1322
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1323
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1324
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1326
|
+
Processing by CarsController#edit as HTML
|
1327
|
+
Parameters: {"id"=>"1"}
|
1328
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1329
|
+
Completed 200 OK in 11ms (Views: 8.8ms | ActiveRecord: 0.2ms)
|
1330
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1331
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1332
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1333
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1335
|
+
Processing by CarsController#index as HTML
|
1336
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1337
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
1338
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1339
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1340
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1341
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1346
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1347
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1348
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1349
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1350
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1352
|
+
Processing by CarsController#create as HTML
|
1353
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1354
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1355
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1357
|
+
Redirected to http://test.host/cars/2
|
1358
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1359
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1360
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1361
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1362
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1364
|
+
Processing by CarsController#edit as HTML
|
1365
|
+
Parameters: {"id"=>"1"}
|
1366
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1367
|
+
[1m[35mCar Load (0.0ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1368
|
+
Completed 200 OK in 12ms (Views: 9.1ms | ActiveRecord: 0.2ms)
|
1369
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1371
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1372
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1374
|
+
Processing by CarsController#index as HTML
|
1375
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars"
|
1376
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1377
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1378
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1379
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1380
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1382
|
+
Processing by CarsController#new as HTML
|
1383
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1384
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1385
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1386
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1387
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1389
|
+
Processing by CarsController#show as HTML
|
1390
|
+
Parameters: {"id"=>"1"}
|
1391
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1392
|
+
Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
1393
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1394
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1395
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1396
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1402
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1403
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
1404
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1405
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1406
|
+
[1m[36mSQL (3.1ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1408
|
+
Processing by CarsController#create as HTML
|
1409
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1410
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1411
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1413
|
+
Redirected to http://test.host/cars/2
|
1414
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1415
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1416
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1417
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1418
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1420
|
+
Processing by CarsController#edit as HTML
|
1421
|
+
Parameters: {"id"=>"1"}
|
1422
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1423
|
+
Completed 200 OK in 11ms (Views: 9.1ms | ActiveRecord: 0.2ms)
|
1424
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1425
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1426
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1427
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1429
|
+
Processing by CarsController#index as HTML
|
1430
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1431
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
1432
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1434
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1435
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1440
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1441
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1442
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1444
|
+
Processing by CarsController#show as HTML
|
1445
|
+
Parameters: {"id"=>"1"}
|
1446
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1447
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1448
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1449
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1450
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1451
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1453
|
+
Processing by CarsController#update as HTML
|
1454
|
+
Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
|
1455
|
+
Completed 500 Internal Server Error in 0ms
|
1456
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1457
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1458
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1459
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1460
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1461
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1463
|
+
Processing by CarsController#create as HTML
|
1464
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1465
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1466
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1468
|
+
Redirected to http://test.host/cars/2
|
1469
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1470
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1472
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1473
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1475
|
+
Processing by CarsController#edit as HTML
|
1476
|
+
Parameters: {"id"=>"1"}
|
1477
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1478
|
+
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.2ms)
|
1479
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1480
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1481
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1482
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1484
|
+
Processing by CarsController#index as HTML
|
1485
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1486
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1487
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1488
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1489
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1490
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1495
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1497
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1499
|
+
Processing by CarsController#show as HTML
|
1500
|
+
Parameters: {"id"=>"1"}
|
1501
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1502
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1503
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1504
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1505
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1506
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1508
|
+
Processing by CarsController#update as HTML
|
1509
|
+
Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
|
1510
|
+
Completed 500 Internal Server Error in 1ms
|
1511
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1512
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1513
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1514
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1515
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1516
|
+
[1m[36mSQL (3.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1518
|
+
Processing by CarsController#create as HTML
|
1519
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1520
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1521
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1523
|
+
Redirected to http://test.host/cars/2
|
1524
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1525
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1526
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1527
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1528
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1530
|
+
Processing by CarsController#edit as HTML
|
1531
|
+
Parameters: {"id"=>"1"}
|
1532
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1533
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.1ms)
|
1534
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1535
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1536
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1537
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1539
|
+
Processing by CarsController#index as HTML
|
1540
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1541
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1542
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1543
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1544
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1545
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
1550
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1551
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1552
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1554
|
+
Processing by CarsController#show as HTML
|
1555
|
+
Parameters: {"id"=>"1"}
|
1556
|
+
[1m[35mCar Load (0.0ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1557
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
1558
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1559
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1560
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1561
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1563
|
+
Processing by CarsController#update as HTML
|
1564
|
+
Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
|
1565
|
+
Completed 500 Internal Server Error in 1ms
|
1566
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1567
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1568
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1569
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1570
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1571
|
+
[1m[36mSQL (3.1ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1573
|
+
Processing by CarsController#create as HTML
|
1574
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1575
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1576
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1578
|
+
Redirected to http://test.host/cars/2
|
1579
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.7ms)
|
1580
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1581
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1582
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1583
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1585
|
+
Processing by CarsController#edit as HTML
|
1586
|
+
Parameters: {"id"=>"1"}
|
1587
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1588
|
+
Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.1ms)
|
1589
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1590
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1591
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1592
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1594
|
+
Processing by CarsController#index as HTML
|
1595
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1596
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1597
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1598
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1599
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1600
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1605
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1606
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1607
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1609
|
+
Processing by CarsController#show as HTML
|
1610
|
+
Parameters: {"id"=>"1"}
|
1611
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1612
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
1613
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1614
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1615
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1616
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1618
|
+
Processing by CarsController#update as HTML
|
1619
|
+
Parameters: {"car"=>{"model"=>"Mustang", "id"=>"1"}}
|
1620
|
+
Completed 500 Internal Server Error in 1ms
|
1621
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1622
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1623
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1624
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1625
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1626
|
+
[1m[36mSQL (3.8ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1628
|
+
Processing by CarsController#create as HTML
|
1629
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1630
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1631
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1633
|
+
Redirected to http://test.host/cars/2
|
1634
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1635
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1636
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1637
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1638
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1640
|
+
Processing by CarsController#edit as HTML
|
1641
|
+
Parameters: {"id"=>"1"}
|
1642
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1643
|
+
Completed 200 OK in 11ms (Views: 9.0ms | ActiveRecord: 0.2ms)
|
1644
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1645
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1646
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1647
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1649
|
+
Processing by CarsController#index as HTML
|
1650
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1651
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
1652
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1653
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1654
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1655
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1660
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1661
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1662
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1664
|
+
Processing by CarsController#show as HTML
|
1665
|
+
Parameters: {"id"=>"1"}
|
1666
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1667
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
1668
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1669
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1670
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1671
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1673
|
+
Processing by CarsController#update as HTML
|
1674
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
1675
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1676
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1677
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:31:50.870064' WHERE "cars"."id" = 1
|
1678
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1679
|
+
Redirected to http://test.host/cars/1
|
1680
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
1681
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1682
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1683
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1684
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1685
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1686
|
+
[1m[36mSQL (4.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1688
|
+
Processing by CarsController#create as HTML
|
1689
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1690
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1691
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1693
|
+
Redirected to http://test.host/cars/2
|
1694
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1695
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1696
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1697
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1698
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1700
|
+
Processing by CarsController#edit as HTML
|
1701
|
+
Parameters: {"id"=>"1"}
|
1702
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1703
|
+
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
|
1704
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1705
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1706
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1707
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1709
|
+
Processing by CarsController#index as HTML
|
1710
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1711
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1712
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1713
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1714
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1715
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1720
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1721
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1722
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1724
|
+
Processing by CarsController#show as HTML
|
1725
|
+
Parameters: {"id"=>"1"}
|
1726
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1727
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
1728
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1729
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1730
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1731
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1733
|
+
Processing by CarsController#update as HTML
|
1734
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
1735
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1736
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1737
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:32:06.062831' WHERE "cars"."id" = 1
|
1738
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1739
|
+
Redirected to http://test.host/cars/1
|
1740
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
1741
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1742
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1743
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1744
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1745
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1746
|
+
[1m[36mSQL (23.2ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1748
|
+
Processing by CarsController#create as HTML
|
1749
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1750
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1751
|
+
[1m[35mSQL (22.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1753
|
+
Redirected to http://test.host/cars/2
|
1754
|
+
Completed 302 Found in 28ms (ActiveRecord: 22.7ms)
|
1755
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
1756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1757
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1758
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1760
|
+
Processing by CarsController#edit as HTML
|
1761
|
+
Parameters: {"id"=>"1"}
|
1762
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1763
|
+
Completed 200 OK in 12ms (Views: 10.2ms | ActiveRecord: 0.2ms)
|
1764
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1765
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1766
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1767
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1769
|
+
Processing by CarsController#index as HTML
|
1770
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1771
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
1772
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1773
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1774
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1775
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1780
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1781
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1782
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1784
|
+
Processing by CarsController#show as HTML
|
1785
|
+
Parameters: {"id"=>"1"}
|
1786
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1787
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
1788
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1789
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1791
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1793
|
+
Processing by CarsController#update as HTML
|
1794
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
1795
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1796
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1797
|
+
[1m[35m (0.4ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:46:31.392729' WHERE "cars"."id" = 1
|
1798
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1799
|
+
Redirected to http://test.host/cars/1
|
1800
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.6ms)
|
1801
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1802
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1803
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1804
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1810
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1811
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1812
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1819
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1820
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1821
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1823
|
+
Processing by DogsController#index as HTML
|
1824
|
+
Completed 500 Internal Server Error in 2ms
|
1825
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1826
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1827
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1828
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1830
|
+
Processing by DogsController#new as HTML
|
1831
|
+
Rendered dogs/_form.html.erb (1.1ms)
|
1832
|
+
Completed 500 Internal Server Error in 3ms
|
1833
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1834
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1835
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1836
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1842
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1843
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1844
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1846
|
+
Processing by DogsController#update as HTML
|
1847
|
+
Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
|
1848
|
+
Completed 500 Internal Server Error in 1ms
|
1849
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1850
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1851
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1852
|
+
[1m[36m (0.4ms)[0m [1mbegin transaction[0m
|
1853
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1854
|
+
[1m[36mSQL (20.1ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1856
|
+
Processing by CarsController#create as HTML
|
1857
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1858
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1859
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1861
|
+
Redirected to http://test.host/cars/2
|
1862
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
1863
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1864
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1865
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1866
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1868
|
+
Processing by CarsController#edit as HTML
|
1869
|
+
Parameters: {"id"=>"1"}
|
1870
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1871
|
+
Completed 200 OK in 13ms (Views: 11.2ms | ActiveRecord: 0.2ms)
|
1872
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
1873
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1874
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1875
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1877
|
+
Processing by CarsController#index as HTML
|
1878
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1879
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1880
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1881
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1882
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1883
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1888
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1889
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1890
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1892
|
+
Processing by CarsController#show as HTML
|
1893
|
+
Parameters: {"id"=>"1"}
|
1894
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1895
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1896
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1897
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1898
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1899
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1901
|
+
Processing by CarsController#update as HTML
|
1902
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
1903
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
1904
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1905
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:49:09.291330' WHERE "cars"."id" = 1
|
1906
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1907
|
+
Redirected to http://test.host/cars/1
|
1908
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
1909
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1910
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1911
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1912
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1918
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1919
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1920
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1927
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1928
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1929
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1931
|
+
Processing by DogsController#index as HTML
|
1932
|
+
Completed 500 Internal Server Error in 2ms
|
1933
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1934
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1935
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1936
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1938
|
+
Processing by DogsController#new as HTML
|
1939
|
+
Rendered dogs/_form.html.erb (0.6ms)
|
1940
|
+
Completed 500 Internal Server Error in 2ms
|
1941
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1942
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1943
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1944
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1950
|
+
[1m[35m (0.0ms)[0m begin transaction
|
1951
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1952
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1954
|
+
Processing by DogsController#update as HTML
|
1955
|
+
Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
|
1956
|
+
Completed 500 Internal Server Error in 1ms
|
1957
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1958
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1959
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1960
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
1961
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1962
|
+
[1m[36mSQL (27.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1964
|
+
Processing by CarsController#create as HTML
|
1965
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
1966
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1967
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1969
|
+
Redirected to http://test.host/cars/2
|
1970
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
1971
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1972
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1973
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1974
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1976
|
+
Processing by CarsController#edit as HTML
|
1977
|
+
Parameters: {"id"=>"1"}
|
1978
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
1979
|
+
Completed 200 OK in 11ms (Views: 9.2ms | ActiveRecord: 0.1ms)
|
1980
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1981
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1982
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1983
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1985
|
+
Processing by CarsController#index as HTML
|
1986
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
1987
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
1988
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1989
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1990
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1991
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1996
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1997
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1998
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2000
|
+
Processing by CarsController#show as HTML
|
2001
|
+
Parameters: {"id"=>"1"}
|
2002
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2003
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2004
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2005
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2007
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2009
|
+
Processing by CarsController#update as HTML
|
2010
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2011
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2012
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2013
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:51:51.601075' WHERE "cars"."id" = 1
|
2014
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2015
|
+
Redirected to http://test.host/cars/1
|
2016
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
2017
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2018
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2019
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2020
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2026
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2027
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2028
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2035
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2036
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2037
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2039
|
+
Processing by DogsController#index as HTML
|
2040
|
+
Completed 500 Internal Server Error in 2ms
|
2041
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2042
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2043
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2044
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2046
|
+
Processing by DogsController#new as HTML
|
2047
|
+
Rendered dogs/_form.html.erb (0.7ms)
|
2048
|
+
Completed 500 Internal Server Error in 3ms
|
2049
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2050
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2051
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2052
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2058
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2059
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2060
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2062
|
+
Processing by DogsController#update as HTML
|
2063
|
+
Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
|
2064
|
+
Completed 500 Internal Server Error in 1ms
|
2065
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2066
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2067
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2068
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2069
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2070
|
+
[1m[36mSQL (21.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2072
|
+
Processing by CarsController#create as HTML
|
2073
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2074
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2075
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2077
|
+
Redirected to http://test.host/cars/2
|
2078
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2079
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2080
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2081
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2082
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2084
|
+
Processing by CarsController#edit as HTML
|
2085
|
+
Parameters: {"id"=>"1"}
|
2086
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2087
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.2ms)
|
2088
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2089
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2090
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2091
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2093
|
+
Processing by CarsController#index as HTML
|
2094
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2095
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2096
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2097
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2098
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2099
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
2104
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2105
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2106
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2108
|
+
Processing by CarsController#show as HTML
|
2109
|
+
Parameters: {"id"=>"1"}
|
2110
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2111
|
+
Completed 200 OK in 4ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
2112
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2113
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2114
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2115
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2117
|
+
Processing by CarsController#update as HTML
|
2118
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2119
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2120
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2121
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:53:58.415535' WHERE "cars"."id" = 1
|
2122
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2123
|
+
Redirected to http://test.host/cars/1
|
2124
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
2125
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2126
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2127
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2128
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2134
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2135
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2136
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2143
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2144
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2145
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2147
|
+
Processing by DogsController#index as HTML
|
2148
|
+
Completed 500 Internal Server Error in 2ms
|
2149
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2150
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2151
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2152
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2154
|
+
Processing by DogsController#new as HTML
|
2155
|
+
Rendered dogs/_form.html.erb (0.6ms)
|
2156
|
+
Completed 500 Internal Server Error in 2ms
|
2157
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2158
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2159
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2160
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2166
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2167
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2168
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2170
|
+
Processing by DogsController#update as HTML
|
2171
|
+
Parameters: {"dog"=>{"name"=>"Mustang"}, "id"=>"1"}
|
2172
|
+
Completed 500 Internal Server Error in 1ms
|
2173
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2174
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2175
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2176
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2177
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2178
|
+
[1m[36mSQL (20.0ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2180
|
+
Processing by CarsController#create as HTML
|
2181
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2182
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2183
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2185
|
+
Redirected to http://test.host/cars/2
|
2186
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2187
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2188
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2189
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2190
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2192
|
+
Processing by CarsController#edit as HTML
|
2193
|
+
Parameters: {"id"=>"1"}
|
2194
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2195
|
+
Completed 200 OK in 11ms (Views: 8.7ms | ActiveRecord: 0.2ms)
|
2196
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2197
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2198
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2199
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2201
|
+
Processing by CarsController#index as HTML
|
2202
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2203
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2204
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2205
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2206
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2207
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2212
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2213
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2214
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2216
|
+
Processing by CarsController#show as HTML
|
2217
|
+
Parameters: {"id"=>"1"}
|
2218
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2219
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2220
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2221
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2222
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2223
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2225
|
+
Processing by CarsController#update as HTML
|
2226
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2227
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2228
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2229
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:56:19.977226' WHERE "cars"."id" = 1
|
2230
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2231
|
+
Redirected to http://test.host/cars/1
|
2232
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2233
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2234
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2235
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2236
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
2242
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2243
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2244
|
+
[1m[35mSQL (0.6ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2251
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2252
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2253
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2255
|
+
Processing by DogsController#index as HTML
|
2256
|
+
Completed 500 Internal Server Error in 2ms
|
2257
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2258
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2259
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2260
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2262
|
+
Processing by DogsController#new as HTML
|
2263
|
+
Rendered dogs/_form.html.erb (0.5ms)
|
2264
|
+
Completed 500 Internal Server Error in 2ms
|
2265
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2266
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2267
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2268
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2274
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2275
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2276
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2278
|
+
Processing by DogsController#update as HTML
|
2279
|
+
Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
|
2280
|
+
Completed 500 Internal Server Error in 2ms
|
2281
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2282
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2283
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2284
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2285
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2286
|
+
[1m[36mSQL (20.0ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2288
|
+
Processing by CarsController#create as HTML
|
2289
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2290
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2291
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2293
|
+
Redirected to http://test.host/cars/2
|
2294
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2295
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2296
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2297
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2298
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2300
|
+
Processing by CarsController#edit as HTML
|
2301
|
+
Parameters: {"id"=>"1"}
|
2302
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2303
|
+
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
|
2304
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2305
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2306
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2307
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2309
|
+
Processing by CarsController#index as HTML
|
2310
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2311
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2312
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2313
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2314
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2315
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2320
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2321
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2322
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2324
|
+
Processing by CarsController#show as HTML
|
2325
|
+
Parameters: {"id"=>"1"}
|
2326
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2327
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
2328
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2329
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2330
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2331
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2333
|
+
Processing by CarsController#update as HTML
|
2334
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2335
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2336
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2337
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:57:03.253845' WHERE "cars"."id" = 1
|
2338
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2339
|
+
Redirected to http://test.host/cars/1
|
2340
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2341
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2342
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2343
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2344
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2350
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2351
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2352
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2354
|
+
Processing by DogsController#edit as HTML
|
2355
|
+
Parameters: {"id"=>"1"}
|
2356
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2357
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2358
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2359
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2360
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2365
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2366
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2367
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2369
|
+
Processing by DogsController#new as HTML
|
2370
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2371
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2372
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2373
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2374
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2380
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2381
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2382
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2388
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2389
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2390
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2391
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2392
|
+
[1m[36mSQL (19.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2394
|
+
Processing by CarsController#create as HTML
|
2395
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2396
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2397
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2399
|
+
Redirected to http://test.host/cars/2
|
2400
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2401
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2402
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2403
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2404
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2406
|
+
Processing by CarsController#edit as HTML
|
2407
|
+
Parameters: {"id"=>"1"}
|
2408
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2409
|
+
Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
2410
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2412
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2413
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2415
|
+
Processing by CarsController#index as HTML
|
2416
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2417
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
2418
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2420
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2421
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2426
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2427
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2428
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2430
|
+
Processing by CarsController#show as HTML
|
2431
|
+
Parameters: {"id"=>"1"}
|
2432
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2433
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
2434
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2435
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2436
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2437
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2439
|
+
Processing by CarsController#update as HTML
|
2440
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2441
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2442
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2443
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:57:39.406695' WHERE "cars"."id" = 1
|
2444
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2445
|
+
Redirected to http://test.host/cars/1
|
2446
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2447
|
+
[1m[35m (1.3ms)[0m rollback transaction
|
2448
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2449
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2450
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2456
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2457
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2458
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2460
|
+
Processing by DogsController#edit as HTML
|
2461
|
+
Parameters: {"id"=>"1"}
|
2462
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2463
|
+
[1m[35m (1.1ms)[0m rollback transaction
|
2464
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2465
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2466
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2471
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2472
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2473
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2475
|
+
Processing by DogsController#new as HTML
|
2476
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2477
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2478
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2479
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2480
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2486
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2488
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2494
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2495
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2496
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2497
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2498
|
+
[1m[36mSQL (20.8ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2500
|
+
Processing by CarsController#create as HTML
|
2501
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2502
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2503
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2505
|
+
Redirected to http://test.host/cars/2
|
2506
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2507
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2508
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2509
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2510
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2512
|
+
Processing by CarsController#edit as HTML
|
2513
|
+
Parameters: {"id"=>"1"}
|
2514
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2515
|
+
Completed 200 OK in 11ms (Views: 8.6ms | ActiveRecord: 0.2ms)
|
2516
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2517
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2518
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2519
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2521
|
+
Processing by CarsController#index as HTML
|
2522
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2523
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2524
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2525
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2526
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2527
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2532
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2533
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2534
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2536
|
+
Processing by CarsController#show as HTML
|
2537
|
+
Parameters: {"id"=>"1"}
|
2538
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2539
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2540
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2541
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2542
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2543
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2545
|
+
Processing by CarsController#update as HTML
|
2546
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2547
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2548
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2549
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:58:00.066898' WHERE "cars"."id" = 1
|
2550
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2551
|
+
Redirected to http://test.host/cars/1
|
2552
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
2553
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2554
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2555
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2556
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2562
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2563
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2564
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2566
|
+
Processing by DogsController#edit as HTML
|
2567
|
+
Parameters: {"id"=>"1"}
|
2568
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2569
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2571
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2572
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2577
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2578
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2579
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2581
|
+
Processing by DogsController#new as HTML
|
2582
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2583
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2584
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2585
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2586
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2592
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2593
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2594
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2601
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2602
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2603
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2604
|
+
[1m[36mSQL (20.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2606
|
+
Processing by CarsController#create as HTML
|
2607
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2608
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2609
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2611
|
+
Redirected to http://test.host/cars/2
|
2612
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
2613
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2614
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2615
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2616
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2618
|
+
Processing by CarsController#edit as HTML
|
2619
|
+
Parameters: {"id"=>"1"}
|
2620
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2621
|
+
Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 0.2ms)
|
2622
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2623
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2624
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2625
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2627
|
+
Processing by CarsController#index as HTML
|
2628
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2629
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
2630
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2631
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2632
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2633
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2638
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2639
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2640
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2642
|
+
Processing by CarsController#show as HTML
|
2643
|
+
Parameters: {"id"=>"1"}
|
2644
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2645
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2646
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2647
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2648
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2649
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2651
|
+
Processing by CarsController#update as HTML
|
2652
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2653
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2654
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2655
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:58:24.508206' WHERE "cars"."id" = 1
|
2656
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2657
|
+
Redirected to http://test.host/cars/1
|
2658
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2659
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2660
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2661
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2662
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2668
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2669
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2670
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2672
|
+
Processing by DogsController#edit as HTML
|
2673
|
+
Parameters: {"id"=>"1"}
|
2674
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2675
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2676
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2677
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2678
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2683
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2684
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2685
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2687
|
+
Processing by DogsController#new as HTML
|
2688
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2689
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2690
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2691
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2692
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2698
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2699
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2700
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2706
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2707
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2708
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2709
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2710
|
+
[1m[36mSQL (20.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2712
|
+
Processing by CarsController#create as HTML
|
2713
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2714
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2715
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2717
|
+
Redirected to http://test.host/cars/2
|
2718
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2719
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2720
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2721
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2722
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2724
|
+
Processing by CarsController#edit as HTML
|
2725
|
+
Parameters: {"id"=>"1"}
|
2726
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2727
|
+
Completed 200 OK in 10ms (Views: 8.5ms | ActiveRecord: 0.2ms)
|
2728
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2729
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2730
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2731
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2733
|
+
Processing by CarsController#index as HTML
|
2734
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2735
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2736
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2737
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2738
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2739
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2744
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2745
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2746
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2748
|
+
Processing by CarsController#show as HTML
|
2749
|
+
Parameters: {"id"=>"1"}
|
2750
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2751
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2752
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2753
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2754
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2755
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2757
|
+
Processing by CarsController#update as HTML
|
2758
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2759
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2760
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2761
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:58:32.471000' WHERE "cars"."id" = 1
|
2762
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2763
|
+
Redirected to http://test.host/cars/1
|
2764
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2765
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2766
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2767
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2768
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2774
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2775
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2776
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2778
|
+
Processing by DogsController#edit as HTML
|
2779
|
+
Parameters: {"id"=>"1"}
|
2780
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2781
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2782
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2783
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2784
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2789
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2790
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2791
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2793
|
+
Processing by DogsController#new as HTML
|
2794
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2795
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2796
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2797
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2798
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2804
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2805
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2806
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2812
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2813
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2814
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2815
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2816
|
+
[1m[36mSQL (22.7ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2818
|
+
Processing by CarsController#create as HTML
|
2819
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2820
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2821
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2823
|
+
Redirected to http://test.host/cars/2
|
2824
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
2825
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2827
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2828
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2830
|
+
Processing by CarsController#edit as HTML
|
2831
|
+
Parameters: {"id"=>"1"}
|
2832
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2833
|
+
Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 0.2ms)
|
2834
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2835
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2836
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2837
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2839
|
+
Processing by CarsController#index as HTML
|
2840
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2841
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2842
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2843
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2844
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2845
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2850
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2851
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2852
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2854
|
+
Processing by CarsController#show as HTML
|
2855
|
+
Parameters: {"id"=>"1"}
|
2856
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2857
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
2858
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2859
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2860
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2861
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2863
|
+
Processing by CarsController#update as HTML
|
2864
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2865
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2866
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2867
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:59:03.587037' WHERE "cars"."id" = 1
|
2868
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2869
|
+
Redirected to http://test.host/cars/1
|
2870
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
2871
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2872
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2873
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2874
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2880
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2881
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2882
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2884
|
+
Processing by DogsController#edit as HTML
|
2885
|
+
Parameters: {"id"=>"1"}
|
2886
|
+
[1m[35mDog Load (0.1ms)[0m SELECT "dogs".* FROM "dogs" WHERE "dogs"."id" = ? LIMIT 1 [["id", "1"]]
|
2887
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2888
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2889
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2890
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2891
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2893
|
+
Processing by DogsController#index as HTML
|
2894
|
+
[1m[35mDog Load (0.1ms)[0m SELECT "dogs".* FROM "dogs"
|
2895
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
2896
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2897
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2898
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2899
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2901
|
+
Processing by DogsController#new as HTML
|
2902
|
+
Completed 200 OK in 21ms (Views: 20.0ms | ActiveRecord: 0.0ms)
|
2903
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2904
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2905
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2906
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2908
|
+
Processing by DogsController#show as HTML
|
2909
|
+
Parameters: {"id"=>"1"}
|
2910
|
+
[1m[36mDog Load (0.1ms)[0m [1mSELECT "dogs".* FROM "dogs" WHERE "dogs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2911
|
+
Completed 200 OK in 2ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
2912
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2913
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2914
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2915
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2917
|
+
Processing by DogsController#update as HTML
|
2918
|
+
Parameters: {"dog"=>{"name"=>"Goku"}, "id"=>"1"}
|
2919
|
+
[1m[36mDog Load (0.1ms)[0m [1mSELECT "dogs".* FROM "dogs" WHERE "dogs"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2920
|
+
Completed 200 OK in 2ms (Views: 1.3ms | ActiveRecord: 0.1ms)
|
2921
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2922
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2923
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2924
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2925
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2926
|
+
[1m[36mSQL (19.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2928
|
+
Processing by CarsController#create as HTML
|
2929
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
2930
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2931
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2933
|
+
Redirected to http://test.host/cars/2
|
2934
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
2935
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
2936
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2937
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2938
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2940
|
+
Processing by CarsController#edit as HTML
|
2941
|
+
Parameters: {"id"=>"1"}
|
2942
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
2943
|
+
Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.2ms)
|
2944
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2945
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2946
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2947
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2949
|
+
Processing by CarsController#index as HTML
|
2950
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
2951
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
2952
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2953
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2954
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2955
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
2960
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2961
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2962
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2964
|
+
Processing by CarsController#show as HTML
|
2965
|
+
Parameters: {"id"=>"1"}
|
2966
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2967
|
+
Completed 200 OK in 4ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
2968
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2969
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2970
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2971
|
+
[1m[35mSQL (0.5ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2973
|
+
Processing by CarsController#update as HTML
|
2974
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
2975
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
2976
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2977
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 04:59:31.152030' WHERE "cars"."id" = 1
|
2978
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2979
|
+
Redirected to http://test.host/cars/1
|
2980
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.4ms)
|
2981
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
2982
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2983
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2984
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2990
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2991
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2992
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2994
|
+
Processing by DogsController#edit as HTML
|
2995
|
+
Parameters: {"id"=>"1"}
|
2996
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2997
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2998
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2999
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3000
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3005
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3006
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3007
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3009
|
+
Processing by DogsController#new as HTML
|
3010
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
3011
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3012
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3013
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3014
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3020
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3021
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3022
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3028
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3029
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3030
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
3031
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3032
|
+
[1m[36mSQL (19.9ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3034
|
+
Processing by CarsController#create as HTML
|
3035
|
+
Parameters: {"car"=>{"model"=>"Mustang"}}
|
3036
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3037
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3039
|
+
Redirected to http://test.host/cars/2
|
3040
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
3041
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3042
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3043
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3044
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3046
|
+
Processing by CarsController#edit as HTML
|
3047
|
+
Parameters: {"id"=>"1"}
|
3048
|
+
[1m[36mCar Load (0.2ms)[0m [1mSELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1[0m [["id", "1"]]
|
3049
|
+
Completed 200 OK in 15ms (Views: 12.6ms | ActiveRecord: 0.2ms)
|
3050
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3051
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3052
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3053
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3055
|
+
Processing by CarsController#index as HTML
|
3056
|
+
[1m[36mCar Load (0.1ms)[0m [1mSELECT "cars".* FROM "cars" [0m
|
3057
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
3058
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3059
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3060
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3061
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "cars" ("created_at", "model", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.1ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3066
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3067
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3068
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3070
|
+
Processing by CarsController#show as HTML
|
3071
|
+
Parameters: {"id"=>"1"}
|
3072
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
3073
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.1ms)
|
3074
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3075
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3076
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3077
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3079
|
+
Processing by CarsController#update as HTML
|
3080
|
+
Parameters: {"car"=>{"model"=>"Mustang"}, "id"=>"1"}
|
3081
|
+
[1m[35mCar Load (0.1ms)[0m SELECT "cars".* FROM "cars" WHERE "cars"."id" = ? LIMIT 1 [["id", "1"]]
|
3082
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3083
|
+
[1m[35m (0.3ms)[0m UPDATE "cars" SET "model" = 'Mustang', "updated_at" = '2012-05-17 05:09:46.640037' WHERE "cars"."id" = 1
|
3084
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3085
|
+
Redirected to http://test.host/cars/1
|
3086
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
3087
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3088
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3089
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3090
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3096
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3097
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3098
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3100
|
+
Processing by DogsController#edit as HTML
|
3101
|
+
Parameters: {"id"=>"1"}
|
3102
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
3103
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3104
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3105
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3106
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3111
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3112
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3113
|
+
[1m[35mSQL (0.4ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3115
|
+
Processing by DogsController#new as HTML
|
3116
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
3117
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3118
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3119
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3120
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "dogs" ("created_at", "name", "updated_at") VALUES (?, ?, ?)[0m [["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
|
+
[1m[35m (0.0ms)[0m 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
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3126
|
+
[1m[35m (0.0ms)[0m begin transaction
|
3127
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3128
|
+
[1m[35mSQL (0.3ms)[0m 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
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
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
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3134
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3135
|
+
[1m[35m (0.0ms)[0m rollback transaction
|