hermes 0.5.0 → 0.5.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/lib/hermes/builders.rb +2 -0
- data/lib/hermes/version.rb +1 -1
- data/test/hermes/builders_test.rb +10 -0
- data/test/rails_app/log/test.log +1430 -0
- metadata +2 -2
data/lib/hermes/builders.rb
CHANGED
@@ -137,12 +137,14 @@ module Hermes
|
|
137
137
|
def method_missing(method, *args, &block)
|
138
138
|
case method.to_s
|
139
139
|
when BUILDER_REGEX
|
140
|
+
return super unless Builders.has_builder?($2)
|
140
141
|
klass, hash = Builders.retrieve(self, $2, method, args.first)
|
141
142
|
object = klass.new
|
142
143
|
object.assign_attributes hash, :without_protection => true
|
143
144
|
object.send("save#{$3}") if $1 == "create"
|
144
145
|
object
|
145
146
|
when ATTRIBUTES_REGEX
|
147
|
+
return super unless Builders.has_builder?($1)
|
146
148
|
Builders.retrieve(self, $1, method, args.first)[1]
|
147
149
|
else
|
148
150
|
super
|
data/lib/hermes/version.rb
CHANGED
@@ -104,6 +104,16 @@ class BuildersTest < Hermes::IntegrationCase
|
|
104
104
|
test 'respond_to is valid for builder with new' do
|
105
105
|
assert respond_to?(:new_another_user)
|
106
106
|
end
|
107
|
+
|
108
|
+
test 'respond_to is not valid for unexistent builder' do
|
109
|
+
assert !respond_to?(:new_invalid_builder_user)
|
110
|
+
end
|
111
|
+
|
112
|
+
test 'method missing is triggered for inexistent builders' do
|
113
|
+
assert_raise NameError do
|
114
|
+
new_invalid_builder_user
|
115
|
+
end
|
116
|
+
end
|
107
117
|
end
|
108
118
|
|
109
119
|
test 'build models without blocks' do
|
data/test/rails_app/log/test.log
CHANGED
@@ -12358,5 +12358,1435 @@ Started GET "/users" for 127.0.0.1 at 2012-01-26 08:54:17 +0100
|
|
12358
12358
|
Processing by UsersController#index as HTML
|
12359
12359
|
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12360
12360
|
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12361
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12362
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12363
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
12364
|
+
[1m[35m (0.3ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
12365
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
12366
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
12367
|
+
[1m[36m (0.0ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
12368
|
+
Migrating to CreateUsers (20110228170406)
|
12369
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12370
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
12371
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
|
12372
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
12373
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12374
|
+
|
12375
|
+
|
12376
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12377
|
+
Processing by UsersController#new as HTML
|
12378
|
+
Rendered users/new.html.erb within layouts/application (120.6ms)
|
12379
|
+
Completed 200 OK in 155ms (Views: 154.8ms | ActiveRecord: 0.1ms)
|
12380
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12381
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12382
|
+
|
12383
|
+
|
12384
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12385
|
+
Processing by UsersController#new as HTML
|
12386
|
+
Rendered users/new.html.erb within layouts/application (27.3ms)
|
12387
|
+
Completed 200 OK in 29ms (Views: 28.9ms | ActiveRecord: 0.0ms)
|
12388
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12389
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12390
|
+
|
12391
|
+
|
12392
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12393
|
+
Processing by UsersController#new as HTML
|
12394
|
+
Rendered users/new.html.erb within layouts/application (5.6ms)
|
12395
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
12396
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12397
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12398
|
+
|
12399
|
+
|
12400
|
+
Started GET "/users/new?datetime=true" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12401
|
+
Processing by UsersController#new as HTML
|
12402
|
+
Parameters: {"datetime"=>"true"}
|
12403
|
+
Rendered users/new.html.erb within layouts/application (25.3ms)
|
12404
|
+
Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
12405
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12406
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12407
|
+
|
12408
|
+
|
12409
|
+
Started GET "/users/new?datetime=true" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12410
|
+
Processing by UsersController#new as HTML
|
12411
|
+
Parameters: {"datetime"=>"true"}
|
12412
|
+
Rendered users/new.html.erb within layouts/application (25.0ms)
|
12413
|
+
Completed 200 OK in 27ms (Views: 26.5ms | ActiveRecord: 0.0ms)
|
12414
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12415
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12416
|
+
|
12417
|
+
|
12418
|
+
Started GET "/users/new?date=true" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12419
|
+
Processing by UsersController#new as HTML
|
12420
|
+
Parameters: {"date"=>"true"}
|
12421
|
+
Rendered users/new.html.erb within layouts/application (3.2ms)
|
12422
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
12423
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12424
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12425
|
+
|
12426
|
+
|
12427
|
+
Started GET "/users/new?date=true" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12428
|
+
Processing by UsersController#new as HTML
|
12429
|
+
Parameters: {"date"=>"true"}
|
12430
|
+
Rendered users/new.html.erb within layouts/application (3.1ms)
|
12431
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
12432
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12433
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12434
|
+
|
12435
|
+
|
12436
|
+
Started GET "/users/new?time=true" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12437
|
+
Processing by UsersController#new as HTML
|
12438
|
+
Parameters: {"time"=>"true"}
|
12439
|
+
Rendered users/new.html.erb within layouts/application (24.2ms)
|
12440
|
+
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
|
12441
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12442
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12443
|
+
|
12444
|
+
|
12445
|
+
Started GET "/users/new?time=true" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12446
|
+
Processing by UsersController#new as HTML
|
12447
|
+
Parameters: {"time"=>"true"}
|
12448
|
+
Rendered users/new.html.erb within layouts/application (4.1ms)
|
12449
|
+
Completed 200 OK in 5ms (Views: 5.3ms | ActiveRecord: 0.0ms)
|
12450
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12451
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12452
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "users"[0m
|
12453
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "users" ("name", "active_at", "created_at", "updated_at", "id") VALUES ('The User', 'Thu, 03 Mar 2011 18:11:26 UTC +00:00', '2012-01-27 13:34:56', '2012-01-27 13:34:56', 1003261225)
|
12454
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
12455
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12456
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12457
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
12458
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12459
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12460
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12461
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 1], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "User A"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12463
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12464
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12465
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 2], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "User B"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12466
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
12467
|
+
|
12468
|
+
|
12469
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12470
|
+
Processing by UsersController#index as HTML
|
12471
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12472
|
+
Rendered users/index.html.erb within layouts/application (2.7ms)
|
12473
|
+
Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.1ms)
|
12474
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12475
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12476
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12477
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12478
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 3], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "User A"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12479
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12480
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12481
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 4], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "User B"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12482
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
12483
|
+
|
12484
|
+
|
12485
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12486
|
+
Processing by UsersController#index as HTML
|
12487
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12488
|
+
Rendered users/index.html.erb within layouts/application (1.9ms)
|
12489
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.1ms)
|
12490
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12492
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12493
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12494
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 5], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "User A"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12495
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12496
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12497
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 6], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "User B"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12498
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
12499
|
+
|
12500
|
+
|
12501
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12502
|
+
Processing by UsersController#index as HTML
|
12503
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12504
|
+
Rendered users/index.html.erb within layouts/application (2.1ms)
|
12505
|
+
Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.1ms)
|
12506
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12507
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12508
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12509
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
12510
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12511
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12512
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12513
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12514
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12515
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
|
12516
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12517
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12518
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12519
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12520
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 10], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12521
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12522
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12523
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12524
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12525
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12526
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 11], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12527
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12528
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12529
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12530
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12531
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12532
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12533
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
|
12534
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12535
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
12536
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12537
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12538
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12539
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12540
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12541
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12542
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12543
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12544
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12545
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12546
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
12547
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12548
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12549
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12550
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", nil], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "Another user"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12551
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12552
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12553
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12554
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12555
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12556
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
12557
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", nil], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "Another user"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12558
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
12559
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12560
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12561
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12562
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12563
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12564
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12565
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12566
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12567
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12568
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12569
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12570
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12571
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12572
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12573
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12574
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
12575
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12576
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12577
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12578
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12579
|
+
|
12580
|
+
|
12581
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12582
|
+
Processing by UsersController#new as HTML
|
12583
|
+
Rendered users/new.html.erb within layouts/application (6.4ms)
|
12584
|
+
Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
|
12585
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12586
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12587
|
+
|
12588
|
+
|
12589
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12590
|
+
Processing by UsersController#new as HTML
|
12591
|
+
Rendered users/new.html.erb within layouts/application (27.1ms)
|
12592
|
+
Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
|
12593
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12594
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12595
|
+
|
12596
|
+
|
12597
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:56 +0100
|
12598
|
+
Processing by UsersController#new as HTML
|
12599
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
12600
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
12601
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12602
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12603
|
+
|
12604
|
+
|
12605
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12606
|
+
Processing by UsersController#new as HTML
|
12607
|
+
Rendered users/new.html.erb within layouts/application (6.2ms)
|
12608
|
+
Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
|
12609
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12610
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12611
|
+
|
12612
|
+
|
12613
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12614
|
+
Processing by UsersController#index as HTML
|
12615
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12616
|
+
Rendered users/index.html.erb within layouts/application (2.3ms)
|
12617
|
+
Completed 200 OK in 4ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
12618
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12619
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12620
|
+
|
12621
|
+
|
12622
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12623
|
+
Processing by UsersController#index as HTML
|
12624
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12625
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12626
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12627
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12628
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12629
|
+
|
12630
|
+
|
12631
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12632
|
+
Processing by UsersController#index as HTML
|
12633
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12634
|
+
Rendered users/index.html.erb within layouts/application (1.3ms)
|
12635
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
12636
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12637
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12638
|
+
|
12639
|
+
|
12640
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12641
|
+
Processing by UsersController#index as HTML
|
12642
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12643
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12644
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
12645
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12646
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12647
|
+
|
12648
|
+
|
12649
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12650
|
+
Processing by UsersController#index as HTML
|
12651
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12652
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12653
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12654
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12655
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12656
|
+
|
12657
|
+
|
12658
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12659
|
+
Processing by UsersController#index as HTML
|
12660
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12661
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12662
|
+
Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.1ms)
|
12663
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12664
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12665
|
+
|
12666
|
+
|
12667
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12668
|
+
Processing by UsersController#new as HTML
|
12669
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
12670
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
12671
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
12672
|
+
|
12673
|
+
|
12674
|
+
Started POST "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12675
|
+
Processing by UsersController#create as HTML
|
12676
|
+
Parameters: {"utf8"=>"✓", "user"=>{"name"=>"User", "active_at(1i)"=>"2012", "active_at(2i)"=>"1", "active_at(3i)"=>"27", "active_at(4i)"=>"13", "active_at(5i)"=>"34"}, "123"=>"value1"}
|
12677
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
12678
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Fri, 27 Jan 2012 13:34:00 UTC +00:00], ["counter", nil], ["created_at", Fri, 27 Jan 2012 13:34:57 UTC +00:00], ["name", "User"], ["updated_at", Fri, 27 Jan 2012 13:34:57 UTC +00:00]]
|
12679
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
12680
|
+
Redirected to http://www.example.com/users
|
12681
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
12682
|
+
|
12683
|
+
|
12684
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12685
|
+
Processing by UsersController#index as HTML
|
12686
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12687
|
+
Rendered users/index.html.erb within layouts/application (1.5ms)
|
12688
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
12689
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
12690
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12691
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12692
|
+
|
12693
|
+
|
12694
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12695
|
+
Processing by UsersController#new as HTML
|
12696
|
+
Rendered users/new.html.erb within layouts/application (25.8ms)
|
12697
|
+
Completed 200 OK in 27ms (Views: 27.3ms | ActiveRecord: 0.0ms)
|
12698
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
12699
|
+
|
12700
|
+
|
12701
|
+
Started POST "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12702
|
+
Processing by UsersController#create as HTML
|
12703
|
+
Parameters: {"utf8"=>"✓", "user"=>{"name"=>"", "active_at(1i)"=>"2012", "active_at(2i)"=>"1", "active_at(3i)"=>"27", "active_at(4i)"=>"13", "active_at(5i)"=>"34"}, "123"=>"value1"}
|
12704
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
12705
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
12706
|
+
Redirected to http://www.example.com/users
|
12707
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
12708
|
+
|
12709
|
+
|
12710
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12711
|
+
Processing by UsersController#index as HTML
|
12712
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12713
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12714
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12715
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
12716
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12717
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12718
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12719
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12720
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 15], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12721
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12722
|
+
|
12723
|
+
|
12724
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12725
|
+
Processing by UsersController#index as HTML
|
12726
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12727
|
+
Rendered users/index.html.erb within layouts/application (1.7ms)
|
12728
|
+
Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
|
12729
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
|
12730
|
+
|
12731
|
+
|
12732
|
+
Started GET "/users/1003261225/block" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12733
|
+
Processing by UsersController#block as HTML
|
12734
|
+
Parameters: {"id"=>"1003261225"}
|
12735
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1003261225"]]
|
12736
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12737
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "users" SET "active_at" = NULL, "updated_at" = '2012-01-27 13:34:57.211081' WHERE "users"."id" = 1003261225[0m
|
12738
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12739
|
+
Redirected to http://www.example.com/users
|
12740
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.2ms)
|
12741
|
+
|
12742
|
+
|
12743
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12744
|
+
Processing by UsersController#index as HTML
|
12745
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12746
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12747
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12748
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
|
12749
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12750
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12751
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
12752
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
12753
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 16], ["created_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:34:56 UTC +00:00]]
|
12754
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
12755
|
+
|
12756
|
+
|
12757
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12758
|
+
Processing by UsersController#index as HTML
|
12759
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12760
|
+
Rendered users/index.html.erb within layouts/application (1.5ms)
|
12761
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms)
|
12762
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
|
12763
|
+
|
12764
|
+
|
12765
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12766
|
+
Processing by UsersController#new as HTML
|
12767
|
+
Rendered users/new.html.erb within layouts/application (27.0ms)
|
12768
|
+
Completed 200 OK in 29ms (Views: 28.5ms | ActiveRecord: 0.0ms)
|
12769
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL[0m
|
12770
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12771
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12772
|
+
|
12773
|
+
|
12774
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12775
|
+
Processing by UsersController#new as HTML
|
12776
|
+
Rendered users/new.html.erb within layouts/application (6.1ms)
|
12777
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
12778
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12779
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12780
|
+
|
12781
|
+
|
12782
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12783
|
+
Processing by UsersController#new as HTML
|
12784
|
+
Rendered users/new.html.erb within layouts/application (25.8ms)
|
12785
|
+
Completed 200 OK in 28ms (Views: 27.3ms | ActiveRecord: 0.0ms)
|
12786
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12787
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12788
|
+
|
12789
|
+
|
12790
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12791
|
+
Processing by UsersController#index as HTML
|
12792
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12793
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12794
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
12795
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12796
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12797
|
+
|
12798
|
+
|
12799
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12800
|
+
Processing by UsersController#index as HTML
|
12801
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12802
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12803
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
12804
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12805
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12806
|
+
|
12807
|
+
|
12808
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12809
|
+
Processing by UsersController#index as HTML
|
12810
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12811
|
+
Rendered users/index.html.erb within layouts/application (1.4ms)
|
12812
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
12813
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12814
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12815
|
+
|
12816
|
+
|
12817
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12818
|
+
Processing by UsersController#index as HTML
|
12819
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12820
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12821
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
12822
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
12823
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12824
|
+
|
12825
|
+
|
12826
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12827
|
+
Processing by UsersController#index as HTML
|
12828
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12829
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
12830
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
12831
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12832
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12833
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12834
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12835
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12836
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12837
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12838
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12839
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12840
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12841
|
+
|
12842
|
+
|
12843
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12844
|
+
Processing by UsersController#new as HTML
|
12845
|
+
Rendered users/new.html.erb within layouts/application (26.3ms)
|
12846
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
12847
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12848
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12849
|
+
|
12850
|
+
|
12851
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12852
|
+
Processing by UsersController#new as HTML
|
12853
|
+
Rendered users/new.html.erb within layouts/application (6.1ms)
|
12854
|
+
Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.0ms)
|
12855
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12856
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12857
|
+
|
12858
|
+
|
12859
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12860
|
+
Processing by UsersController#index as HTML
|
12861
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12862
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12863
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12864
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12865
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12866
|
+
|
12867
|
+
|
12868
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12869
|
+
Processing by UsersController#index as HTML
|
12870
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12871
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12872
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
12873
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12874
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12875
|
+
|
12876
|
+
|
12877
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12878
|
+
Processing by UsersController#index as HTML
|
12879
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12880
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12881
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
12882
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12883
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12884
|
+
|
12885
|
+
|
12886
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12887
|
+
Processing by UsersController#index as HTML
|
12888
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12889
|
+
Rendered users/index.html.erb within layouts/application (24.0ms)
|
12890
|
+
Completed 200 OK in 27ms (Views: 25.9ms | ActiveRecord: 0.1ms)
|
12891
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12892
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12893
|
+
|
12894
|
+
|
12895
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12896
|
+
Processing by UsersController#new as HTML
|
12897
|
+
Rendered users/new.html.erb within layouts/application (8.8ms)
|
12898
|
+
Completed 200 OK in 10ms (Views: 10.3ms | ActiveRecord: 0.0ms)
|
12899
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12900
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12901
|
+
|
12902
|
+
|
12903
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12904
|
+
Processing by UsersController#new as HTML
|
12905
|
+
Rendered users/new.html.erb within layouts/application (26.3ms)
|
12906
|
+
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
12907
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12908
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12909
|
+
|
12910
|
+
|
12911
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12912
|
+
Processing by UsersController#index as HTML
|
12913
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12914
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12915
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
12916
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12917
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12918
|
+
|
12919
|
+
|
12920
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12921
|
+
Processing by UsersController#index as HTML
|
12922
|
+
[1m[35mUser Load (0.2ms)[0m SELECT "users".* FROM "users"
|
12923
|
+
Rendered users/index.html.erb within layouts/application (1.8ms)
|
12924
|
+
Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.2ms)
|
12925
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12926
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12927
|
+
|
12928
|
+
|
12929
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:57 +0100
|
12930
|
+
Processing by UsersController#new as HTML
|
12931
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
12932
|
+
Completed 200 OK in 7ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
12933
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12934
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12935
|
+
|
12936
|
+
|
12937
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12938
|
+
Processing by UsersController#new as HTML
|
12939
|
+
Rendered users/new.html.erb within layouts/application (26.7ms)
|
12940
|
+
Completed 200 OK in 28ms (Views: 28.2ms | ActiveRecord: 0.0ms)
|
12941
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12942
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12943
|
+
|
12944
|
+
|
12945
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12946
|
+
Processing by UsersController#index as HTML
|
12947
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12948
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12949
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
12950
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12951
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12952
|
+
|
12953
|
+
|
12954
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12955
|
+
Processing by UsersController#index as HTML
|
12956
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12957
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
12958
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
12959
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12960
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12961
|
+
|
12962
|
+
|
12963
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12964
|
+
Processing by UsersController#new as HTML
|
12965
|
+
Rendered users/new.html.erb within layouts/application (27.0ms)
|
12966
|
+
Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
|
12967
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
12968
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12969
|
+
|
12970
|
+
|
12971
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12972
|
+
Processing by UsersController#new as HTML
|
12973
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
12974
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
12975
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12976
|
+
[1m[35m (0.1ms)[0m begin transaction
|
12977
|
+
|
12978
|
+
|
12979
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12980
|
+
Processing by UsersController#index as HTML
|
12981
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
12982
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12983
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
12984
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
12985
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
12986
|
+
|
12987
|
+
|
12988
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12989
|
+
Processing by UsersController#index as HTML
|
12990
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
12991
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
12992
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
12993
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
12994
|
+
[1m[35m (0.0ms)[0m begin transaction
|
12995
|
+
|
12996
|
+
|
12997
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
12998
|
+
Processing by UsersController#new as HTML
|
12999
|
+
Rendered users/new.html.erb within layouts/application (27.3ms)
|
13000
|
+
Completed 200 OK in 29ms (Views: 28.6ms | ActiveRecord: 0.0ms)
|
13001
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13002
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13003
|
+
|
13004
|
+
|
13005
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13006
|
+
Processing by UsersController#new as HTML
|
13007
|
+
Rendered users/new.html.erb within layouts/application (5.6ms)
|
13008
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
13009
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13010
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13011
|
+
|
13012
|
+
|
13013
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13014
|
+
Processing by UsersController#index as HTML
|
13015
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13016
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13017
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
13018
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13019
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13020
|
+
|
13021
|
+
|
13022
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13023
|
+
Processing by UsersController#index as HTML
|
13024
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13025
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13026
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13027
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13028
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13029
|
+
|
13030
|
+
|
13031
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13032
|
+
Processing by UsersController#new as HTML
|
13033
|
+
Rendered users/new.html.erb within layouts/application (25.7ms)
|
13034
|
+
Completed 200 OK in 27ms (Views: 27.1ms | ActiveRecord: 0.0ms)
|
13035
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13036
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13037
|
+
|
13038
|
+
|
13039
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13040
|
+
Processing by UsersController#new as HTML
|
13041
|
+
Rendered users/new.html.erb within layouts/application (5.6ms)
|
13042
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
13043
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13044
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13045
|
+
|
13046
|
+
|
13047
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13048
|
+
Processing by UsersController#new as HTML
|
13049
|
+
Rendered users/new.html.erb within layouts/application (27.4ms)
|
13050
|
+
Completed 200 OK in 29ms (Views: 28.8ms | ActiveRecord: 0.0ms)
|
13051
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13052
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13053
|
+
|
13054
|
+
|
13055
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13056
|
+
Processing by UsersController#new as HTML
|
13057
|
+
Rendered users/new.html.erb within layouts/application (5.6ms)
|
13058
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
13059
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13060
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13061
|
+
|
13062
|
+
|
13063
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13064
|
+
Processing by UsersController#index as HTML
|
13065
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13066
|
+
Rendered users/index.html.erb within layouts/application (1.3ms)
|
13067
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
13068
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13069
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13070
|
+
|
13071
|
+
|
13072
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:34:58 +0100
|
13073
|
+
Processing by UsersController#index as HTML
|
13074
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13075
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13076
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13077
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13078
|
+
[1m[36m (0.1ms)[0m [1mselect sqlite_version(*)[0m
|
13079
|
+
[1m[35m (0.2ms)[0m CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
|
13080
|
+
[1m[36m (0.0ms)[0m [1mPRAGMA index_list("schema_migrations")[0m
|
13081
|
+
[1m[35m (0.1ms)[0m CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
|
13082
|
+
[1m[36m (0.1ms)[0m [1mSELECT "schema_migrations"."version" FROM "schema_migrations" [0m
|
13083
|
+
Migrating to CreateUsers (20110228170406)
|
13084
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13085
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime NOT NULL, "updated_at" datetime NOT NULL) [0m
|
13086
|
+
[1m[35m (0.1ms)[0m INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
|
13087
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
13088
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13089
|
+
|
13090
|
+
|
13091
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13092
|
+
Processing by UsersController#new as HTML
|
13093
|
+
Rendered users/new.html.erb within layouts/application (40.5ms)
|
13094
|
+
Completed 200 OK in 48ms (Views: 47.9ms | ActiveRecord: 0.1ms)
|
13095
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13096
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13097
|
+
|
13098
|
+
|
13099
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13100
|
+
Processing by UsersController#new as HTML
|
13101
|
+
Rendered users/new.html.erb within layouts/application (24.1ms)
|
13102
|
+
Completed 200 OK in 26ms (Views: 25.5ms | ActiveRecord: 0.0ms)
|
13103
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13104
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13105
|
+
|
13106
|
+
|
13107
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13108
|
+
Processing by UsersController#new as HTML
|
13109
|
+
Rendered users/new.html.erb within layouts/application (5.9ms)
|
13110
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
13111
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13112
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13113
|
+
|
13114
|
+
|
13115
|
+
Started GET "/users/new?datetime=true" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13116
|
+
Processing by UsersController#new as HTML
|
13117
|
+
Parameters: {"datetime"=>"true"}
|
13118
|
+
Rendered users/new.html.erb within layouts/application (23.2ms)
|
13119
|
+
Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 0.0ms)
|
13120
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13121
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13122
|
+
|
13123
|
+
|
13124
|
+
Started GET "/users/new?datetime=true" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13125
|
+
Processing by UsersController#new as HTML
|
13126
|
+
Parameters: {"datetime"=>"true"}
|
13127
|
+
Rendered users/new.html.erb within layouts/application (24.0ms)
|
13128
|
+
Completed 200 OK in 26ms (Views: 25.4ms | ActiveRecord: 0.0ms)
|
13129
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13130
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13131
|
+
|
13132
|
+
|
13133
|
+
Started GET "/users/new?date=true" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13134
|
+
Processing by UsersController#new as HTML
|
13135
|
+
Parameters: {"date"=>"true"}
|
13136
|
+
Rendered users/new.html.erb within layouts/application (3.1ms)
|
13137
|
+
Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.0ms)
|
13138
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13139
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13140
|
+
|
13141
|
+
|
13142
|
+
Started GET "/users/new?date=true" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13143
|
+
Processing by UsersController#new as HTML
|
13144
|
+
Parameters: {"date"=>"true"}
|
13145
|
+
Rendered users/new.html.erb within layouts/application (2.9ms)
|
13146
|
+
Completed 200 OK in 4ms (Views: 4.0ms | ActiveRecord: 0.0ms)
|
13147
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13148
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13149
|
+
|
13150
|
+
|
13151
|
+
Started GET "/users/new?time=true" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13152
|
+
Processing by UsersController#new as HTML
|
13153
|
+
Parameters: {"time"=>"true"}
|
13154
|
+
Rendered users/new.html.erb within layouts/application (22.6ms)
|
13155
|
+
Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 0.0ms)
|
13156
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13157
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13158
|
+
|
13159
|
+
|
13160
|
+
Started GET "/users/new?time=true" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13161
|
+
Processing by UsersController#new as HTML
|
13162
|
+
Parameters: {"time"=>"true"}
|
13163
|
+
Rendered users/new.html.erb within layouts/application (3.7ms)
|
13164
|
+
Completed 200 OK in 5ms (Views: 4.9ms | ActiveRecord: 0.0ms)
|
13165
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13166
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13167
|
+
[1m[36mFixture Delete (0.0ms)[0m [1mDELETE FROM "users"[0m
|
13168
|
+
[1m[35mFixture Insert (0.1ms)[0m INSERT INTO "users" ("name", "active_at", "created_at", "updated_at", "id") VALUES ('The User', 'Thu, 03 Mar 2011 18:11:26 UTC +00:00', '2012-01-27 13:35:18', '2012-01-27 13:35:18', 1003261225)
|
13169
|
+
[1m[36m (0.0ms)[0m [1mcommit transaction[0m
|
13170
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13171
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13172
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13173
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13174
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13175
|
+
[1m[36mUser Load (0.2ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13176
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13177
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 1], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User A"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13178
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13179
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13180
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 2], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User B"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13181
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13182
|
+
|
13183
|
+
|
13184
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13185
|
+
Processing by UsersController#index as HTML
|
13186
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13187
|
+
Rendered users/index.html.erb within layouts/application (2.5ms)
|
13188
|
+
Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.1ms)
|
13189
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13190
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13191
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13192
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13193
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 3], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User A"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13194
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13195
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13196
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 4], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User B"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13197
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13198
|
+
|
13199
|
+
|
13200
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13201
|
+
Processing by UsersController#index as HTML
|
13202
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13203
|
+
Rendered users/index.html.erb within layouts/application (2.4ms)
|
13204
|
+
Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.1ms)
|
13205
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13206
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13207
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13208
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13209
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 5], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User A"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13210
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13212
|
+
[1m[35mSQL (0.1ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 6], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User B"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13213
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13214
|
+
|
13215
|
+
|
13216
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13217
|
+
Processing by UsersController#index as HTML
|
13218
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13219
|
+
Rendered users/index.html.erb within layouts/application (2.0ms)
|
13220
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
13221
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13222
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13223
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13224
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13225
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13226
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13227
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13228
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13229
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13230
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
|
13231
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13232
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13233
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13235
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 10], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13236
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13237
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13238
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13239
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13241
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 11], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13242
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13243
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13244
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13245
|
+
[1m[36mUser Load (0.0ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13246
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13247
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13248
|
+
[1m[35mUser Load (0.0ms)[0m SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
|
13249
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13250
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13251
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13252
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13253
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13254
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13255
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13256
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13257
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13258
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13259
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13260
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13261
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
13262
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13263
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13264
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13265
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", nil], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "Another user"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13266
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13267
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13268
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13269
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13270
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13271
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13272
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", nil], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "Another user"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13273
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13274
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13275
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13276
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13277
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13278
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13279
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13280
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13281
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13282
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13283
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13284
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13285
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13286
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13287
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13288
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13289
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
13290
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13291
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13292
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13293
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13294
|
+
|
13295
|
+
|
13296
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13297
|
+
Processing by UsersController#new as HTML
|
13298
|
+
Rendered users/new.html.erb within layouts/application (5.6ms)
|
13299
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
13300
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13301
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13302
|
+
|
13303
|
+
|
13304
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13305
|
+
Processing by UsersController#new as HTML
|
13306
|
+
Rendered users/new.html.erb within layouts/application (26.3ms)
|
13307
|
+
Completed 200 OK in 28ms (Views: 27.8ms | ActiveRecord: 0.0ms)
|
13308
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13309
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13310
|
+
|
13311
|
+
|
13312
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13313
|
+
Processing by UsersController#new as HTML
|
13314
|
+
Rendered users/new.html.erb within layouts/application (5.7ms)
|
13315
|
+
Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
|
13316
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13317
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13318
|
+
|
13319
|
+
|
13320
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13321
|
+
Processing by UsersController#new as HTML
|
13322
|
+
Rendered users/new.html.erb within layouts/application (6.1ms)
|
13323
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
13324
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13325
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13326
|
+
|
13327
|
+
|
13328
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13329
|
+
Processing by UsersController#index as HTML
|
13330
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13331
|
+
Rendered users/index.html.erb within layouts/application (2.1ms)
|
13332
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
13333
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13334
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13335
|
+
|
13336
|
+
|
13337
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13338
|
+
Processing by UsersController#index as HTML
|
13339
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13340
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13341
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
13342
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13343
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13344
|
+
|
13345
|
+
|
13346
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13347
|
+
Processing by UsersController#index as HTML
|
13348
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13349
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13350
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
13351
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13352
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13353
|
+
|
13354
|
+
|
13355
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13356
|
+
Processing by UsersController#index as HTML
|
13357
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13358
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13359
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
13360
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13361
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13362
|
+
|
13363
|
+
|
13364
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13365
|
+
Processing by UsersController#index as HTML
|
13366
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13367
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13368
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13369
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13371
|
+
|
13372
|
+
|
13373
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13374
|
+
Processing by UsersController#index as HTML
|
13375
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13376
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
13377
|
+
Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms)
|
13378
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13379
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13380
|
+
|
13381
|
+
|
13382
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13383
|
+
Processing by UsersController#new as HTML
|
13384
|
+
Rendered users/new.html.erb within layouts/application (6.0ms)
|
13385
|
+
Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
|
13386
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
13387
|
+
|
13388
|
+
|
13389
|
+
Started POST "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13390
|
+
Processing by UsersController#create as HTML
|
13391
|
+
Parameters: {"utf8"=>"✓", "user"=>{"name"=>"User", "active_at(1i)"=>"2012", "active_at(2i)"=>"1", "active_at(3i)"=>"27", "active_at(4i)"=>"13", "active_at(5i)"=>"35"}, "123"=>"value1"}
|
13392
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
13393
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?) [["active_at", Fri, 27 Jan 2012 13:35:00 UTC +00:00], ["counter", nil], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "User"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13394
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
13395
|
+
Redirected to http://www.example.com/users
|
13396
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
13397
|
+
|
13398
|
+
|
13399
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13400
|
+
Processing by UsersController#index as HTML
|
13401
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13402
|
+
Rendered users/index.html.erb within layouts/application (1.4ms)
|
13403
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
13404
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" [0m
|
13405
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13406
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13407
|
+
|
13408
|
+
|
13409
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13410
|
+
Processing by UsersController#new as HTML
|
13411
|
+
Rendered users/new.html.erb within layouts/application (25.5ms)
|
13412
|
+
Completed 200 OK in 27ms (Views: 27.0ms | ActiveRecord: 0.0ms)
|
13413
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
13414
|
+
|
13415
|
+
|
13416
|
+
Started POST "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13417
|
+
Processing by UsersController#create as HTML
|
13418
|
+
Parameters: {"utf8"=>"✓", "user"=>{"name"=>"", "active_at(1i)"=>"2012", "active_at(2i)"=>"1", "active_at(3i)"=>"27", "active_at(4i)"=>"13", "active_at(5i)"=>"35"}, "123"=>"value1"}
|
13419
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
13420
|
+
[1m[35m (0.0ms)[0m ROLLBACK TO SAVEPOINT active_record_1
|
13421
|
+
Redirected to http://www.example.com/users
|
13422
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
13423
|
+
|
13424
|
+
|
13425
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13426
|
+
Processing by UsersController#index as HTML
|
13427
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13428
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13429
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
13430
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users"
|
13431
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13432
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13433
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13434
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13435
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 15], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13436
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13437
|
+
|
13438
|
+
|
13439
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13440
|
+
Processing by UsersController#index as HTML
|
13441
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13442
|
+
Rendered users/index.html.erb within layouts/application (1.4ms)
|
13443
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
13444
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
|
13445
|
+
|
13446
|
+
|
13447
|
+
Started GET "/users/1003261225/block" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13448
|
+
Processing by UsersController#block as HTML
|
13449
|
+
Parameters: {"id"=>"1003261225"}
|
13450
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", "1003261225"]]
|
13451
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13452
|
+
[1m[36m (0.1ms)[0m [1mUPDATE "users" SET "active_at" = NULL, "updated_at" = '2012-01-27 13:35:18.986876' WHERE "users"."id" = 1003261225[0m
|
13453
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13454
|
+
Redirected to http://www.example.com/users
|
13455
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.2ms)
|
13456
|
+
|
13457
|
+
|
13458
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13459
|
+
Processing by UsersController#index as HTML
|
13460
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13461
|
+
Rendered users/index.html.erb within layouts/application (1.3ms)
|
13462
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
13463
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
|
13464
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13465
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13466
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1[0m [["id", 1003261225]]
|
13467
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
13468
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "users" ("active_at", "counter", "created_at", "name", "updated_at") VALUES (?, ?, ?, ?, ?)[0m [["active_at", Thu, 03 Mar 2011 18:11:26 UTC +00:00], ["counter", 16], ["created_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00], ["name", "The Super User"], ["updated_at", Fri, 27 Jan 2012 13:35:18 UTC +00:00]]
|
13469
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
13470
|
+
|
13471
|
+
|
13472
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:18 +0100
|
13473
|
+
Processing by UsersController#index as HTML
|
13474
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13475
|
+
Rendered users/index.html.erb within layouts/application (1.5ms)
|
13476
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
13477
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
|
13478
|
+
|
13479
|
+
|
13480
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13481
|
+
Processing by UsersController#new as HTML
|
13482
|
+
Rendered users/new.html.erb within layouts/application (26.3ms)
|
13483
|
+
Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
|
13484
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL[0m
|
13485
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13487
|
+
|
13488
|
+
|
13489
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13490
|
+
Processing by UsersController#new as HTML
|
13491
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
13492
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
13493
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13494
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13495
|
+
|
13496
|
+
|
13497
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13498
|
+
Processing by UsersController#new as HTML
|
13499
|
+
Rendered users/new.html.erb within layouts/application (24.9ms)
|
13500
|
+
Completed 200 OK in 26ms (Views: 26.3ms | ActiveRecord: 0.0ms)
|
13501
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13502
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13503
|
+
|
13504
|
+
|
13505
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13506
|
+
Processing by UsersController#index as HTML
|
13507
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13508
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
13509
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
13510
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13511
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13512
|
+
|
13513
|
+
|
13514
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13515
|
+
Processing by UsersController#index as HTML
|
13516
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13517
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13518
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13519
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13520
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
13521
|
+
|
13522
|
+
|
13523
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13524
|
+
Processing by UsersController#index as HTML
|
13525
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13526
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13527
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13528
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13529
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13530
|
+
|
13531
|
+
|
13532
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13533
|
+
Processing by UsersController#index as HTML
|
13534
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13535
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13536
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13537
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
13538
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13539
|
+
|
13540
|
+
|
13541
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13542
|
+
Processing by UsersController#index as HTML
|
13543
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13544
|
+
Rendered users/index.html.erb within layouts/application (0.9ms)
|
13545
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
13546
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13547
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13548
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13549
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13550
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13551
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13552
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13553
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13554
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13555
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13556
|
+
|
13557
|
+
|
13558
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13559
|
+
Processing by UsersController#new as HTML
|
13560
|
+
Rendered users/new.html.erb within layouts/application (24.9ms)
|
13561
|
+
Completed 200 OK in 26ms (Views: 26.3ms | ActiveRecord: 0.0ms)
|
13562
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13563
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13564
|
+
|
13565
|
+
|
13566
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13567
|
+
Processing by UsersController#new as HTML
|
13568
|
+
Rendered users/new.html.erb within layouts/application (6.0ms)
|
13569
|
+
Completed 200 OK in 8ms (Views: 7.5ms | ActiveRecord: 0.0ms)
|
13570
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13571
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13572
|
+
|
13573
|
+
|
13574
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13575
|
+
Processing by UsersController#index as HTML
|
13576
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13577
|
+
Rendered users/index.html.erb within layouts/application (1.3ms)
|
13578
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
13579
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13580
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13581
|
+
|
13582
|
+
|
13583
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13584
|
+
Processing by UsersController#index as HTML
|
13585
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13586
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13587
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13588
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13589
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13590
|
+
|
13591
|
+
|
13592
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13593
|
+
Processing by UsersController#index as HTML
|
13594
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13595
|
+
Rendered users/index.html.erb within layouts/application (1.3ms)
|
13596
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
|
13597
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13598
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13599
|
+
|
13600
|
+
|
13601
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13602
|
+
Processing by UsersController#index as HTML
|
13603
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13604
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13605
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
13606
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13607
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13608
|
+
|
13609
|
+
|
13610
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13611
|
+
Processing by UsersController#new as HTML
|
13612
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
13613
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
13614
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13615
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13616
|
+
|
13617
|
+
|
13618
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13619
|
+
Processing by UsersController#new as HTML
|
13620
|
+
Rendered users/new.html.erb within layouts/application (25.6ms)
|
13621
|
+
Completed 200 OK in 27ms (Views: 27.1ms | ActiveRecord: 0.0ms)
|
13622
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13623
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13624
|
+
|
13625
|
+
|
13626
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13627
|
+
Processing by UsersController#index as HTML
|
13628
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13629
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13630
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
13631
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13632
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13633
|
+
|
13634
|
+
|
13635
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13636
|
+
Processing by UsersController#index as HTML
|
13637
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13638
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
13639
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13640
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13641
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13642
|
+
|
13643
|
+
|
13644
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13645
|
+
Processing by UsersController#new as HTML
|
13646
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
13647
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
13648
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13649
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13650
|
+
|
13651
|
+
|
13652
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13653
|
+
Processing by UsersController#new as HTML
|
13654
|
+
Rendered users/new.html.erb within layouts/application (26.5ms)
|
13655
|
+
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
13656
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13657
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13658
|
+
|
13659
|
+
|
13660
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13661
|
+
Processing by UsersController#index as HTML
|
13662
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13663
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13664
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13665
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13666
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13667
|
+
|
13668
|
+
|
13669
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13670
|
+
Processing by UsersController#index as HTML
|
13671
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13672
|
+
Rendered users/index.html.erb within layouts/application (1.0ms)
|
13673
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
13674
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13675
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13676
|
+
|
13677
|
+
|
13678
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13679
|
+
Processing by UsersController#new as HTML
|
13680
|
+
Rendered users/new.html.erb within layouts/application (26.0ms)
|
13681
|
+
Completed 200 OK in 28ms (Views: 27.4ms | ActiveRecord: 0.0ms)
|
13682
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13683
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13684
|
+
|
13685
|
+
|
13686
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13687
|
+
Processing by UsersController#new as HTML
|
13688
|
+
Rendered users/new.html.erb within layouts/application (5.9ms)
|
13689
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
13690
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13691
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13692
|
+
|
13693
|
+
|
13694
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13695
|
+
Processing by UsersController#index as HTML
|
13696
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13697
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13698
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
|
13699
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13700
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13701
|
+
|
13702
|
+
|
13703
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13704
|
+
Processing by UsersController#index as HTML
|
13705
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13706
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13707
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13708
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13709
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13710
|
+
|
13711
|
+
|
13712
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13713
|
+
Processing by UsersController#new as HTML
|
13714
|
+
Rendered users/new.html.erb within layouts/application (26.6ms)
|
13715
|
+
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
13716
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13717
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13718
|
+
|
13719
|
+
|
13720
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13721
|
+
Processing by UsersController#new as HTML
|
13722
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
13723
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
13724
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13725
|
+
[1m[35m (0.1ms)[0m begin transaction
|
13726
|
+
|
13727
|
+
|
13728
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13729
|
+
Processing by UsersController#index as HTML
|
13730
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13731
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13732
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13733
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13734
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13735
|
+
|
13736
|
+
|
13737
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13738
|
+
Processing by UsersController#index as HTML
|
13739
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13740
|
+
Rendered users/index.html.erb within layouts/application (1.1ms)
|
13741
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
13742
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13743
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13744
|
+
|
13745
|
+
|
13746
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13747
|
+
Processing by UsersController#new as HTML
|
13748
|
+
Rendered users/new.html.erb within layouts/application (26.5ms)
|
13749
|
+
Completed 200 OK in 28ms (Views: 27.9ms | ActiveRecord: 0.0ms)
|
13750
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13751
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13752
|
+
|
13753
|
+
|
13754
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13755
|
+
Processing by UsersController#new as HTML
|
13756
|
+
Rendered users/new.html.erb within layouts/application (5.6ms)
|
13757
|
+
Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
13758
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13759
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13760
|
+
|
13761
|
+
|
13762
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13763
|
+
Processing by UsersController#new as HTML
|
13764
|
+
Rendered users/new.html.erb within layouts/application (26.3ms)
|
13765
|
+
Completed 200 OK in 28ms (Views: 27.6ms | ActiveRecord: 0.0ms)
|
13766
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
13767
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13768
|
+
|
13769
|
+
|
13770
|
+
Started GET "/users/new" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13771
|
+
Processing by UsersController#new as HTML
|
13772
|
+
Rendered users/new.html.erb within layouts/application (5.8ms)
|
13773
|
+
Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
|
13774
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
13775
|
+
[1m[35m (0.0ms)[0m begin transaction
|
13776
|
+
|
13777
|
+
|
13778
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13779
|
+
Processing by UsersController#index as HTML
|
13780
|
+
[1m[36mUser Load (0.1ms)[0m [1mSELECT "users".* FROM "users" [0m
|
13781
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
13782
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
13783
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
13784
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
13785
|
+
|
13786
|
+
|
13787
|
+
Started GET "/users" for 127.0.0.1 at 2012-01-27 14:35:19 +0100
|
13788
|
+
Processing by UsersController#index as HTML
|
13789
|
+
[1m[35mUser Load (0.1ms)[0m SELECT "users".* FROM "users"
|
13790
|
+
Rendered users/index.html.erb within layouts/application (1.2ms)
|
12361
13791
|
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
|
12362
13792
|
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|