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.
@@ -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
@@ -1,3 +1,3 @@
1
1
  module Hermes
2
- VERSION = "0.5.0".freeze
2
+ VERSION = "0.5.1".freeze
3
3
  end
@@ -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
@@ -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
  User Load (0.1ms) 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
+  (0.0ms) rollback transaction
12363
+  (0.1ms) select sqlite_version(*)
12364
+  (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
12365
+  (0.0ms) PRAGMA index_list("schema_migrations")
12366
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
12367
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
12368
+ Migrating to CreateUsers (20110228170406)
12369
+  (0.0ms) begin transaction
12370
+  (0.3ms) CREATE 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) 
12371
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
12372
+  (0.0ms) commit transaction
12373
+  (0.1ms) 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
+  (0.1ms) rollback transaction
12381
+  (0.1ms) 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
+  (0.1ms) rollback transaction
12389
+  (0.0ms) 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
+  (0.1ms) rollback transaction
12397
+  (0.0ms) 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
+  (0.1ms) rollback transaction
12406
+  (0.0ms) 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
+  (0.0ms) rollback transaction
12415
+  (0.0ms) 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
+  (0.0ms) rollback transaction
12424
+  (0.0ms) 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
+  (0.0ms) rollback transaction
12433
+  (0.0ms) 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
+  (0.0ms) rollback transaction
12442
+  (0.0ms) 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
+  (0.0ms) rollback transaction
12451
+  (0.1ms) begin transaction
12452
+ Fixture Delete (0.0ms) DELETE FROM "users"
12453
+ Fixture Insert (0.1ms) 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
+  (0.0ms) commit transaction
12455
+  (0.0ms) begin transaction
12456
+  (0.0ms) SAVEPOINT active_record_1
12457
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
12458
+  (0.0ms) rollback transaction
12459
+  (0.0ms) begin transaction
12460
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12461
+  (0.0ms) SAVEPOINT active_record_1
12462
+ SQL (0.3ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12464
+  (0.0ms) SAVEPOINT active_record_1
12465
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12475
+  (0.0ms) begin transaction
12476
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12477
+  (0.0ms) SAVEPOINT active_record_1
12478
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12480
+  (0.0ms) SAVEPOINT active_record_1
12481
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12491
+  (0.0ms) begin transaction
12492
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12493
+  (0.0ms) SAVEPOINT active_record_1
12494
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12496
+  (0.0ms) SAVEPOINT active_record_1
12497
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12507
+  (0.0ms) begin transaction
12508
+  (0.0ms) SAVEPOINT active_record_1
12509
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
12510
+  (0.0ms) rollback transaction
12511
+  (0.0ms) begin transaction
12512
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12513
+  (0.0ms) rollback transaction
12514
+  (0.0ms) begin transaction
12515
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12516
+  (0.0ms) rollback transaction
12517
+  (0.0ms) begin transaction
12518
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12519
+  (0.0ms) SAVEPOINT active_record_1
12520
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12522
+  (0.0ms) rollback transaction
12523
+  (0.0ms) begin transaction
12524
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12525
+  (0.0ms) SAVEPOINT active_record_1
12526
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12528
+  (0.0ms) rollback transaction
12529
+  (0.0ms) begin transaction
12530
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12531
+  (0.0ms) rollback transaction
12532
+  (0.0ms) begin transaction
12533
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12534
+  (0.0ms) SAVEPOINT active_record_1
12535
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
12536
+  (0.0ms) rollback transaction
12537
+  (0.0ms) begin transaction
12538
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12539
+  (0.0ms) rollback transaction
12540
+  (0.0ms) begin transaction
12541
+  (0.0ms) rollback transaction
12542
+  (0.0ms) begin transaction
12543
+  (0.0ms) rollback transaction
12544
+  (0.0ms) begin transaction
12545
+  (0.0ms) SAVEPOINT active_record_1
12546
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
12547
+  (0.0ms) rollback transaction
12548
+  (0.0ms) begin transaction
12549
+  (0.0ms) SAVEPOINT active_record_1
12550
+ SQL (0.3ms) 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]]
12551
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12552
+  (0.0ms) rollback transaction
12553
+  (0.0ms) begin transaction
12554
+  (0.0ms) rollback transaction
12555
+  (0.0ms) begin transaction
12556
+  (0.1ms) SAVEPOINT active_record_1
12557
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
12559
+  (0.0ms) rollback transaction
12560
+  (0.0ms) begin transaction
12561
+  (0.0ms) rollback transaction
12562
+  (0.0ms) begin transaction
12563
+  (0.0ms) rollback transaction
12564
+  (0.0ms) begin transaction
12565
+  (0.0ms) rollback transaction
12566
+  (0.0ms) begin transaction
12567
+  (0.0ms) rollback transaction
12568
+  (0.0ms) begin transaction
12569
+  (0.0ms) rollback transaction
12570
+  (0.0ms) begin transaction
12571
+  (0.0ms) rollback transaction
12572
+  (0.0ms) begin transaction
12573
+  (0.0ms) SAVEPOINT active_record_1
12574
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
12575
+  (0.0ms) rollback transaction
12576
+  (0.0ms) begin transaction
12577
+  (0.0ms) rollback transaction
12578
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12586
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12594
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12602
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12610
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12619
+  (0.1ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12625
+ Rendered users/index.html.erb within layouts/application (1.2ms)
12626
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
12627
+  (0.0ms) rollback transaction
12628
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12637
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12643
+ Rendered users/index.html.erb within layouts/application (1.1ms)
12644
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
12645
+  (0.0ms) rollback transaction
12646
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12655
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12661
+ Rendered users/index.html.erb within layouts/application (1.1ms)
12662
+ Completed 200 OK in 23ms (Views: 22.4ms | ActiveRecord: 0.1ms)
12663
+  (0.1ms) rollback transaction
12664
+  (0.0ms) begin transaction
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
+  (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
12678
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) SELECT COUNT(*) FROM "users" 
12690
+  (0.1ms) rollback transaction
12691
+  (0.0ms) begin transaction
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
+  (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
12705
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12713
+ Rendered users/index.html.erb within layouts/application (1.2ms)
12714
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
12715
+  (0.1ms) SELECT COUNT(*) FROM "users"
12716
+  (0.0ms) rollback transaction
12717
+  (0.0ms) begin transaction
12718
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12719
+  (0.0ms) SAVEPOINT active_record_1
12720
+ SQL (0.2ms) 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", 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
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12727
+ Rendered users/index.html.erb within layouts/application (1.7ms)
12728
+ Completed 200 OK in 4ms (Views: 3.1ms | ActiveRecord: 0.1ms)
12729
+  (0.1ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1003261225"]]
12736
+  (0.0ms) SAVEPOINT active_record_1
12737
+  (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2012-01-27 13:34:57.211081' WHERE "users"."id" = 1003261225
12738
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12746
+ Rendered users/index.html.erb within layouts/application (1.2ms)
12747
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
12748
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
12749
+  (0.0ms) rollback transaction
12750
+  (0.0ms) begin transaction
12751
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
12752
+  (0.0ms) SAVEPOINT active_record_1
12753
+ SQL (0.2ms) 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", 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
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12760
+ Rendered users/index.html.erb within layouts/application (1.5ms)
12761
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.1ms)
12762
+  (0.1ms) 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
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
12770
+  (0.0ms) rollback transaction
12771
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
12779
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
12787
+  (0.1ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12796
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12802
+ Rendered users/index.html.erb within layouts/application (1.1ms)
12803
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
12804
+  (0.0ms) rollback transaction
12805
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12814
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12820
+ Rendered users/index.html.erb within layouts/application (1.2ms)
12821
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
12822
+  (0.0ms) rollback transaction
12823
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
12832
+  (0.0ms) begin transaction
12833
+  (0.1ms) rollback transaction
12834
+  (0.0ms) begin transaction
12835
+  (0.0ms) rollback transaction
12836
+  (0.0ms) begin transaction
12837
+  (0.0ms) rollback transaction
12838
+  (0.0ms) begin transaction
12839
+  (0.0ms) rollback transaction
12840
+  (0.0ms) 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
+  (0.1ms) rollback transaction
12848
+  (0.1ms) 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
+  (0.0ms) rollback transaction
12856
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12862
+ Rendered users/index.html.erb within layouts/application (1.1ms)
12863
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
12864
+  (0.1ms) rollback transaction
12865
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12874
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12880
+ Rendered users/index.html.erb within layouts/application (1.2ms)
12881
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
12882
+  (0.1ms) rollback transaction
12883
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
12892
+  (0.1ms) 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
+  (0.1ms) rollback transaction
12900
+  (0.0ms) 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
+  (0.1ms) rollback transaction
12908
+  (0.1ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12914
+ Rendered users/index.html.erb within layouts/application (1.2ms)
12915
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
12916
+  (0.1ms) rollback transaction
12917
+  (0.0ms) begin transaction
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
+ User Load (0.2ms) 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
+  (0.0ms) rollback transaction
12926
+  (0.0ms) 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
+  (0.1ms) rollback transaction
12934
+  (0.1ms) 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
+  (0.0ms) rollback transaction
12942
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12948
+ Rendered users/index.html.erb within layouts/application (1.1ms)
12949
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
12950
+  (0.1ms) rollback transaction
12951
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
12960
+  (0.0ms) 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
+  (0.1ms) rollback transaction
12968
+  (0.0ms) 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
+  (0.0ms) rollback transaction
12976
+  (0.1ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
12982
+ Rendered users/index.html.erb within layouts/application (1.1ms)
12983
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
12984
+  (0.1ms) rollback transaction
12985
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
12994
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13002
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13010
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13016
+ Rendered users/index.html.erb within layouts/application (1.0ms)
13017
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
13018
+  (0.1ms) rollback transaction
13019
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13028
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13036
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13044
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13052
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13060
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13066
+ Rendered users/index.html.erb within layouts/application (1.3ms)
13067
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
13068
+  (0.1ms) rollback transaction
13069
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13078
+  (0.1ms) select sqlite_version(*)
13079
+  (0.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
13080
+  (0.0ms) PRAGMA index_list("schema_migrations")
13081
+  (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
13082
+  (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13083
+ Migrating to CreateUsers (20110228170406)
13084
+  (0.0ms) begin transaction
13085
+  (0.2ms) CREATE 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) 
13086
+  (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
13087
+  (0.0ms) commit transaction
13088
+  (0.1ms) 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
+  (0.1ms) rollback transaction
13096
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13104
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13112
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13121
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13130
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13139
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13148
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13157
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13166
+  (0.0ms) begin transaction
13167
+ Fixture Delete (0.0ms) DELETE FROM "users"
13168
+ Fixture Insert (0.1ms) 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
+  (0.0ms) commit transaction
13170
+  (0.0ms) begin transaction
13171
+  (0.0ms) SAVEPOINT active_record_1
13172
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13173
+  (0.0ms) rollback transaction
13174
+  (0.0ms) begin transaction
13175
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13176
+  (0.0ms) SAVEPOINT active_record_1
13177
+ SQL (0.3ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13179
+  (0.0ms) SAVEPOINT active_record_1
13180
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13190
+  (0.0ms) begin transaction
13191
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13192
+  (0.0ms) SAVEPOINT active_record_1
13193
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13195
+  (0.0ms) SAVEPOINT active_record_1
13196
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13206
+  (0.0ms) begin transaction
13207
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13208
+  (0.0ms) SAVEPOINT active_record_1
13209
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13211
+  (0.0ms) SAVEPOINT active_record_1
13212
+ SQL (0.1ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13222
+  (0.0ms) begin transaction
13223
+  (0.0ms) SAVEPOINT active_record_1
13224
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13225
+  (0.0ms) rollback transaction
13226
+  (0.0ms) begin transaction
13227
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13228
+  (0.0ms) rollback transaction
13229
+  (0.0ms) begin transaction
13230
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13231
+  (0.0ms) rollback transaction
13232
+  (0.0ms) begin transaction
13233
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13234
+  (0.0ms) SAVEPOINT active_record_1
13235
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13237
+  (0.0ms) rollback transaction
13238
+  (0.0ms) begin transaction
13239
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13240
+  (0.0ms) SAVEPOINT active_record_1
13241
+ SQL (0.2ms) 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", 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13243
+  (0.0ms) rollback transaction
13244
+  (0.0ms) begin transaction
13245
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13246
+  (0.0ms) rollback transaction
13247
+  (0.0ms) begin transaction
13248
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13249
+  (0.0ms) SAVEPOINT active_record_1
13250
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13251
+  (0.0ms) rollback transaction
13252
+  (0.0ms) begin transaction
13253
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13254
+  (0.0ms) rollback transaction
13255
+  (0.1ms) begin transaction
13256
+  (0.0ms) rollback transaction
13257
+  (0.1ms) begin transaction
13258
+  (0.0ms) rollback transaction
13259
+  (0.0ms) begin transaction
13260
+  (0.0ms) SAVEPOINT active_record_1
13261
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13262
+  (0.0ms) rollback transaction
13263
+  (0.0ms) begin transaction
13264
+  (0.0ms) SAVEPOINT active_record_1
13265
+ SQL (0.3ms) 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]]
13266
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13267
+  (0.0ms) rollback transaction
13268
+  (0.0ms) begin transaction
13269
+  (0.0ms) rollback transaction
13270
+  (0.0ms) begin transaction
13271
+  (0.0ms) SAVEPOINT active_record_1
13272
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
13274
+  (0.0ms) rollback transaction
13275
+  (0.0ms) begin transaction
13276
+  (0.0ms) rollback transaction
13277
+  (0.0ms) begin transaction
13278
+  (0.0ms) rollback transaction
13279
+  (0.0ms) begin transaction
13280
+  (0.0ms) rollback transaction
13281
+  (0.0ms) begin transaction
13282
+  (0.0ms) rollback transaction
13283
+  (0.0ms) begin transaction
13284
+  (0.0ms) rollback transaction
13285
+  (0.0ms) begin transaction
13286
+  (0.0ms) rollback transaction
13287
+  (0.0ms) begin transaction
13288
+  (0.0ms) SAVEPOINT active_record_1
13289
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
13290
+  (0.0ms) rollback transaction
13291
+  (0.0ms) begin transaction
13292
+  (0.0ms) rollback transaction
13293
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
13301
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
13309
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
13317
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
13325
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13334
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13340
+ Rendered users/index.html.erb within layouts/application (1.0ms)
13341
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
13342
+  (0.0ms) rollback transaction
13343
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13352
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13358
+ Rendered users/index.html.erb within layouts/application (1.0ms)
13359
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
13360
+  (0.0ms) rollback transaction
13361
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13370
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13376
+ Rendered users/index.html.erb within layouts/application (1.2ms)
13377
+ Completed 200 OK in 23ms (Views: 22.0ms | ActiveRecord: 0.1ms)
13378
+  (0.0ms) rollback transaction
13379
+  (0.1ms) begin transaction
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
+  (0.1ms) 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
+  (0.1ms) SAVEPOINT active_record_1
13393
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+ User Load (0.1ms) 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
+  (0.1ms) SELECT COUNT(*) FROM "users" 
13405
+  (0.1ms) rollback transaction
13406
+  (0.0ms) begin transaction
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
+  (0.1ms) 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
+  (0.0ms) SAVEPOINT active_record_1
13420
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13428
+ Rendered users/index.html.erb within layouts/application (1.0ms)
13429
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
13430
+  (0.1ms) SELECT COUNT(*) FROM "users"
13431
+  (0.0ms) rollback transaction
13432
+  (0.1ms) begin transaction
13433
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13434
+  (0.0ms) SAVEPOINT active_record_1
13435
+ SQL (0.2ms) 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", 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
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13442
+ Rendered users/index.html.erb within layouts/application (1.4ms)
13443
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
13444
+  (0.1ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "1003261225"]]
13451
+  (0.0ms) SAVEPOINT active_record_1
13452
+  (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2012-01-27 13:35:18.986876' WHERE "users"."id" = 1003261225
13453
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13461
+ Rendered users/index.html.erb within layouts/application (1.3ms)
13462
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
13463
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
13464
+  (0.0ms) rollback transaction
13465
+  (0.0ms) begin transaction
13466
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 1003261225]]
13467
+  (0.0ms) SAVEPOINT active_record_1
13468
+ SQL (0.2ms) 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", 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
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13475
+ Rendered users/index.html.erb within layouts/application (1.5ms)
13476
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
13477
+  (0.1ms) 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
+  (0.1ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
13485
+  (0.0ms) rollback transaction
13486
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
13494
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
13502
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13511
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13517
+ Rendered users/index.html.erb within layouts/application (1.1ms)
13518
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
13519
+  (0.0ms) rollback transaction
13520
+  (0.1ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13529
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13535
+ Rendered users/index.html.erb within layouts/application (1.1ms)
13536
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
13537
+  (0.0ms) rollback transaction
13538
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13547
+  (0.0ms) begin transaction
13548
+  (0.1ms) rollback transaction
13549
+  (0.0ms) begin transaction
13550
+  (0.0ms) rollback transaction
13551
+  (0.0ms) begin transaction
13552
+  (0.0ms) rollback transaction
13553
+  (0.0ms) begin transaction
13554
+  (0.0ms) rollback transaction
13555
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13563
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13571
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13577
+ Rendered users/index.html.erb within layouts/application (1.3ms)
13578
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
13579
+  (0.1ms) rollback transaction
13580
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13589
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13595
+ Rendered users/index.html.erb within layouts/application (1.3ms)
13596
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.1ms)
13597
+  (0.1ms) rollback transaction
13598
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13607
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13615
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13623
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13629
+ Rendered users/index.html.erb within layouts/application (1.0ms)
13630
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.1ms)
13631
+  (0.1ms) rollback transaction
13632
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.1ms) rollback transaction
13641
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13649
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13657
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13663
+ Rendered users/index.html.erb within layouts/application (1.0ms)
13664
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
13665
+  (0.1ms) rollback transaction
13666
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13675
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13683
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13691
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13697
+ Rendered users/index.html.erb within layouts/application (1.1ms)
13698
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.1ms)
13699
+  (0.1ms) rollback transaction
13700
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13709
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13717
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13725
+  (0.1ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13731
+ Rendered users/index.html.erb within layouts/application (1.1ms)
13732
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
13733
+  (0.1ms) rollback transaction
13734
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
+  (0.0ms) rollback transaction
13743
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13751
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13759
+  (0.0ms) 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
+  (0.1ms) rollback transaction
13767
+  (0.0ms) 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
+  (0.0ms) rollback transaction
13775
+  (0.0ms) 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
+ User Load (0.1ms) SELECT "users".* FROM "users" 
13781
+ Rendered users/index.html.erb within layouts/application (1.2ms)
13782
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.1ms)
13783
+  (0.1ms) rollback transaction
13784
+  (0.0ms) begin transaction
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
+ User Load (0.1ms) 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
   (0.0ms) rollback transaction