hermes 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -18,4 +18,4 @@ http://github.com/plataformatec/hermes/issues
18
18
 
19
19
  == License
20
20
 
21
- MIT License. Copyright 2010 Plataforma Tecnologia. http://blog.plataformatec.com.br
21
+ MIT License. Copyright 2011 Plataforma Tecnologia. http://blog.plataformatec.com.br
@@ -31,27 +31,19 @@ module Hermes
31
31
 
32
32
  def select_date(date, options={})
33
33
  select_prefix = select_prefix_from_options(options)
34
-
35
- find_and_select_option(select_prefix,
36
- POSTFIXES[:year],
37
- date.year)
38
-
39
- find_and_select_option(select_prefix,
40
- POSTFIXES[:month],
41
- date.month)
42
-
43
- find_and_select_option(select_prefix,
44
- POSTFIXES[:day],
45
- string_with_double_digits(date.day))
34
+ find_and_select_option(select_prefix, POSTFIXES[:year], date.year)
35
+ find_and_select_option(select_prefix, POSTFIXES[:month], date.month)
36
+ find_and_select_option(select_prefix, POSTFIXES[:day], date.day)
46
37
  end
47
38
 
48
39
  private
49
40
 
50
41
  def find_and_select_option(select_prefix, postfix, value)
51
- no_select_msg = "cannot select option, no select box with id prefix '#{select_prefix}' found"
52
- no_option_msg = "cannot select option, no option with text '#{value}' in select box '#{select_prefix}'"
42
+ full = "#{select_prefix}_#{postfix}"
43
+ no_select_msg = "cannot select option, no select box with id '#{full}' found"
44
+ no_option_msg = "cannot select option, no option with text '#{value}' in select box '#{full}'"
53
45
 
54
- select = find(:css, "##{select_prefix}_#{postfix}", :message => no_select_msg)
46
+ select = find(:css, "##{full}", :message => no_select_msg)
55
47
  select.find(:xpath, ".//option[contains(./@value, '#{value}')]", :message => no_option_msg).select_option
56
48
  end
57
49
 
@@ -75,7 +67,7 @@ module Hermes
75
67
  find(:xpath,
76
68
  "//label[contains(normalize-space(string(.)), '#{label}')]/@for",
77
69
  :message => message
78
- ).text
70
+ ).text.sub(/_\di$/, '')
79
71
  end
80
72
  end
81
73
  end
@@ -1,3 +1,3 @@
1
1
  module Hermes
2
- VERSION = "0.4.0".freeze
2
+ VERSION = "0.4.1".freeze
3
3
  end
@@ -25,7 +25,8 @@ class ActionsTest < Hermes::IntegrationCase
25
25
  end
26
26
 
27
27
  test "select date and time using from as label" do
28
- date = DateTime.new(2011, 2, 28, 16, 0)
28
+ # Also test day with only one digit
29
+ date = DateTime.new(2011, 2, 2, 16, 0)
29
30
  visit '/users/new?datetime=true'
30
31
 
31
32
  within '#datetime' do
@@ -33,7 +34,7 @@ class ActionsTest < Hermes::IntegrationCase
33
34
 
34
35
  assert find_selected_option('user[active_at(1i)]', '2011')
35
36
  assert find_selected_option('user[active_at(2i)]', '2')
36
- assert find_selected_option('user[active_at(3i)]', '28')
37
+ assert find_selected_option('user[active_at(3i)]', '2')
37
38
  assert find_selected_option('user[active_at(4i)]', '16')
38
39
  assert find_selected_option('user[active_at(5i)]', '00')
39
40
  end
@@ -93,7 +94,6 @@ class ActionsTest < Hermes::IntegrationCase
93
94
  end
94
95
  end
95
96
 
96
-
97
97
  test "select date and time didn't find the label" do
98
98
  msg = "cannot select option, select with label 'Unexistant' not found"
99
99
  visit '/users/new'
@@ -103,7 +103,7 @@ class ActionsTest < Hermes::IntegrationCase
103
103
  end
104
104
 
105
105
  test "select date and time didn't find the id prefix" do
106
- msg = "cannot select option, no select box with id prefix 'unexistant' found"
106
+ msg = "cannot select option, no select box with id 'unexistant_4i' found"
107
107
  visit '/users/new'
108
108
  assert_raise_with_message Capybara::ElementNotFound, msg do
109
109
  select_datetime(Time.current, :id_prefix => 'unexistant')
@@ -21,7 +21,7 @@
21
21
 
22
22
  <% if @date %>
23
23
  <li id="date">
24
- <%= f.label :active_at, 'Active at' %>
24
+ <%= f.label :active_at_1i, 'Active at' %>
25
25
  <%= f.date_select :active_at %>
26
26
  </li>
27
27
  <% end %>
@@ -1517,3 +1517,3552 @@ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1517
1517
  User Load (0.2ms) SELECT "users".* FROM "users"
1518
1518
  Rendered users/index.html.erb within layouts/application (126.1ms)
1519
1519
  Completed 200 OK in 128ms (Views: 126.9ms | ActiveRecord: 0.2ms)
1520
+ SQL (0.5ms)  SELECT name
1521
+ FROM sqlite_master
1522
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1523
+ 
1524
+ SQL (0.3ms) select sqlite_version(*)
1525
+ SQL (0.5ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1526
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
1527
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1528
+ SQL (0.1ms) SELECT name
1529
+ FROM sqlite_master
1530
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1531
+ SQL (0.1ms)  SELECT name
1532
+ FROM sqlite_master
1533
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1534
+ 
1535
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1536
+ Migrating to CreateUsers (20110228170406)
1537
+ SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
1538
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
1539
+
1540
+
1541
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1542
+ Processing by UsersController#new as HTML
1543
+ Rendered users/new.html.erb within layouts/application (44.6ms)
1544
+ Completed 200 OK in 66ms (Views: 65.6ms | ActiveRecord: 2.1ms)
1545
+
1546
+
1547
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1548
+ Processing by UsersController#new as HTML
1549
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1550
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1551
+
1552
+
1553
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1554
+ Processing by UsersController#new as HTML
1555
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1556
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1557
+
1558
+
1559
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1560
+ Processing by UsersController#new as HTML
1561
+ Parameters: {"datetime"=>"true"}
1562
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1563
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1564
+
1565
+
1566
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1567
+ Processing by UsersController#new as HTML
1568
+ Parameters: {"datetime"=>"true"}
1569
+ Rendered users/new.html.erb within layouts/application (8.1ms)
1570
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1571
+
1572
+
1573
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1574
+ Processing by UsersController#new as HTML
1575
+ Parameters: {"date"=>"true"}
1576
+ Rendered users/new.html.erb within layouts/application (5.1ms)
1577
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
1578
+
1579
+
1580
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1581
+ Processing by UsersController#new as HTML
1582
+ Parameters: {"date"=>"true"}
1583
+ Rendered users/new.html.erb within layouts/application (5.1ms)
1584
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
1585
+
1586
+
1587
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1588
+ Processing by UsersController#new as HTML
1589
+ Parameters: {"time"=>"true"}
1590
+ Rendered users/new.html.erb within layouts/application (6.0ms)
1591
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
1592
+
1593
+
1594
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1595
+ Processing by UsersController#new as HTML
1596
+ Parameters: {"time"=>"true"}
1597
+ Rendered users/new.html.erb within layouts/application (6.2ms)
1598
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1599
+ SQL (0.2ms)  SELECT name
1600
+ FROM sqlite_master
1601
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1602
+ 
1603
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1604
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 1, '2011-04-29 10:28:46.000000', 'User A')
1605
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 2, '2011-04-29 10:28:46.000000', 'User B')
1606
+
1607
+
1608
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1609
+ Processing by UsersController#index as HTML
1610
+ User Load (0.3ms) SELECT "users".* FROM "users"
1611
+ Rendered users/index.html.erb within layouts/application (5.9ms)
1612
+ Completed 200 OK in 10ms (Views: 8.3ms | ActiveRecord: 1.1ms)
1613
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1614
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 3, '2011-04-29 10:28:46.000000', 'User A')
1615
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 4, '2011-04-29 10:28:46.000000', 'User B')
1616
+
1617
+
1618
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1619
+ Processing by UsersController#index as HTML
1620
+ User Load (0.2ms) SELECT "users".* FROM "users"
1621
+ Rendered users/index.html.erb within layouts/application (5.5ms)
1622
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.6ms)
1623
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1624
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 5, '2011-04-29 10:28:46.000000', 'User A')
1625
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 6, '2011-04-29 10:28:46.000000', 'User B')
1626
+
1627
+
1628
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1629
+ Processing by UsersController#index as HTML
1630
+ User Load (0.2ms) SELECT "users".* FROM "users"
1631
+ Rendered users/index.html.erb within layouts/application (5.4ms)
1632
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.6ms)
1633
+ User Load (1.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1634
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1635
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1636
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 10, '2011-04-29 10:28:46.000000', 'The Super User')
1637
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1638
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 11, '2011-04-29 10:28:46.000000', 'The Super User')
1639
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1640
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1641
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1642
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.907063', NULL, '2011-04-29 10:28:46.907063', 'Another user')
1643
+
1644
+
1645
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1646
+ Processing by UsersController#new as HTML
1647
+ Rendered users/new.html.erb within layouts/application (8.3ms)
1648
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 2.5ms)
1649
+
1650
+
1651
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1652
+ Processing by UsersController#new as HTML
1653
+ Rendered users/new.html.erb within layouts/application (8.3ms)
1654
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1655
+
1656
+
1657
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1658
+ Processing by UsersController#new as HTML
1659
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1660
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1661
+
1662
+
1663
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1664
+ Processing by UsersController#new as HTML
1665
+ Rendered users/new.html.erb within layouts/application (8.3ms)
1666
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1667
+
1668
+
1669
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1670
+ Processing by UsersController#index as HTML
1671
+ User Load (0.2ms) SELECT "users".* FROM "users"
1672
+ Rendered users/index.html.erb within layouts/application (3.4ms)
1673
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
1674
+
1675
+
1676
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1677
+ Processing by UsersController#index as HTML
1678
+ User Load (0.2ms) SELECT "users".* FROM "users"
1679
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1680
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1681
+
1682
+
1683
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:46 +0200 2011
1684
+ Processing by UsersController#index as HTML
1685
+ User Load (0.2ms) SELECT "users".* FROM "users"
1686
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1687
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1688
+
1689
+
1690
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1691
+ Processing by UsersController#index as HTML
1692
+ User Load (0.2ms) SELECT "users".* FROM "users"
1693
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1694
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
1695
+
1696
+
1697
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1698
+ Processing by UsersController#index as HTML
1699
+ User Load (0.2ms) SELECT "users".* FROM "users"
1700
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1701
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1702
+
1703
+
1704
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1705
+ Processing by UsersController#index as HTML
1706
+ User Load (0.2ms) SELECT "users".* FROM "users"
1707
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1708
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
1709
+
1710
+
1711
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1712
+ Processing by UsersController#new as HTML
1713
+ Rendered users/new.html.erb within layouts/application (8.3ms)
1714
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1715
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
1716
+
1717
+
1718
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1719
+ Processing by UsersController#create as HTML
1720
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"28"}}
1721
+ AREL (0.2ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-04-29 10:28:00.000000', '2011-04-29 10:28:47.063146', NULL, '2011-04-29 10:28:47.063146', 'User')
1722
+ Redirected to http://www.example.com/users
1723
+ Completed 302 Found in 3ms
1724
+
1725
+
1726
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1727
+ Processing by UsersController#index as HTML
1728
+ User Load (0.2ms) SELECT "users".* FROM "users"
1729
+ Rendered users/index.html.erb within layouts/application (4.4ms)
1730
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.6ms)
1731
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1732
+
1733
+
1734
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1735
+ Processing by UsersController#new as HTML
1736
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1737
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.1ms)
1738
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1739
+
1740
+
1741
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1742
+ Processing by UsersController#create as HTML
1743
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"28"}}
1744
+ Redirected to http://www.example.com/users
1745
+ Completed 302 Found in 3ms
1746
+
1747
+
1748
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1749
+ Processing by UsersController#index as HTML
1750
+ User Load (0.2ms) SELECT "users".* FROM "users"
1751
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1752
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
1753
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1754
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1755
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 15, '2011-04-29 10:28:46.000000', 'The Super User')
1756
+
1757
+
1758
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1759
+ Processing by UsersController#index as HTML
1760
+ User Load (0.2ms) SELECT "users".* FROM "users"
1761
+ Rendered users/index.html.erb within layouts/application (4.2ms)
1762
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.6ms)
1763
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1764
+
1765
+
1766
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1767
+ Processing by UsersController#block as HTML
1768
+ Parameters: {"id"=>"1003261225"}
1769
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1770
+ AREL (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2011-04-29 10:28:47.143224' WHERE "users"."id" = 1003261225
1771
+ Redirected to http://www.example.com/users
1772
+ Completed 302 Found in 3ms
1773
+
1774
+
1775
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1776
+ Processing by UsersController#index as HTML
1777
+ User Load (0.2ms) SELECT "users".* FROM "users"
1778
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1779
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.7ms)
1780
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1781
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1782
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "created_at", "counter", "updated_at", "name") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:28:46.000000', 16, '2011-04-29 10:28:46.000000', 'The Super User')
1783
+
1784
+
1785
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1786
+ Processing by UsersController#index as HTML
1787
+ User Load (0.2ms) SELECT "users".* FROM "users"
1788
+ Rendered users/index.html.erb within layouts/application (3.9ms)
1789
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.7ms)
1790
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1791
+
1792
+
1793
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1794
+ Processing by UsersController#new as HTML
1795
+ Rendered users/new.html.erb within layouts/application (8.6ms)
1796
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.2ms)
1797
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1798
+
1799
+
1800
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1801
+ Processing by UsersController#new as HTML
1802
+ Rendered users/new.html.erb within layouts/application (131.4ms)
1803
+ Completed 200 OK in 132ms (Views: 132.1ms | ActiveRecord: 0.2ms)
1804
+
1805
+
1806
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1807
+ Processing by UsersController#new as HTML
1808
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1809
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1810
+
1811
+
1812
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1813
+ Processing by UsersController#index as HTML
1814
+ User Load (0.2ms) SELECT "users".* FROM "users"
1815
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1816
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1817
+
1818
+
1819
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1820
+ Processing by UsersController#index as HTML
1821
+ User Load (0.2ms) SELECT "users".* FROM "users"
1822
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1823
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1824
+
1825
+
1826
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1827
+ Processing by UsersController#index as HTML
1828
+ User Load (0.2ms) SELECT "users".* FROM "users"
1829
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1830
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1831
+
1832
+
1833
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1834
+ Processing by UsersController#index as HTML
1835
+ User Load (0.2ms) SELECT "users".* FROM "users"
1836
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1837
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1838
+
1839
+
1840
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1841
+ Processing by UsersController#index as HTML
1842
+ User Load (0.2ms) SELECT "users".* FROM "users"
1843
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1844
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1845
+
1846
+
1847
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1848
+ Processing by UsersController#new as HTML
1849
+ Rendered users/new.html.erb within layouts/application (8.0ms)
1850
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
1851
+
1852
+
1853
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1854
+ Processing by UsersController#new as HTML
1855
+ Rendered users/new.html.erb within layouts/application (8.1ms)
1856
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1857
+
1858
+
1859
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1860
+ Processing by UsersController#index as HTML
1861
+ User Load (0.2ms) SELECT "users".* FROM "users"
1862
+ Rendered users/index.html.erb within layouts/application (3.5ms)
1863
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
1864
+
1865
+
1866
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1867
+ Processing by UsersController#index as HTML
1868
+ User Load (0.2ms) SELECT "users".* FROM "users"
1869
+ Rendered users/index.html.erb within layouts/application (4.1ms)
1870
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.2ms)
1871
+
1872
+
1873
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1874
+ Processing by UsersController#index as HTML
1875
+ User Load (1.1ms) SELECT "users".* FROM "users"
1876
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1877
+ Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 1.1ms)
1878
+
1879
+
1880
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1881
+ Processing by UsersController#index as HTML
1882
+ User Load (0.2ms) SELECT "users".* FROM "users"
1883
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1884
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1885
+
1886
+
1887
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1888
+ Processing by UsersController#new as HTML
1889
+ Rendered users/new.html.erb within layouts/application (8.6ms)
1890
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1891
+
1892
+
1893
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1894
+ Processing by UsersController#new as HTML
1895
+ Rendered users/new.html.erb within layouts/application (8.6ms)
1896
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1897
+
1898
+
1899
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1900
+ Processing by UsersController#index as HTML
1901
+ User Load (0.2ms) SELECT "users".* FROM "users"
1902
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1903
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1904
+
1905
+
1906
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1907
+ Processing by UsersController#index as HTML
1908
+ User Load (0.2ms) SELECT "users".* FROM "users"
1909
+ Rendered users/index.html.erb within layouts/application (3.3ms)
1910
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1911
+
1912
+
1913
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1914
+ Processing by UsersController#new as HTML
1915
+ Rendered users/new.html.erb within layouts/application (8.6ms)
1916
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1917
+
1918
+
1919
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1920
+ Processing by UsersController#new as HTML
1921
+ Rendered users/new.html.erb within layouts/application (8.3ms)
1922
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1923
+
1924
+
1925
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1926
+ Processing by UsersController#index as HTML
1927
+ User Load (0.2ms) SELECT "users".* FROM "users"
1928
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1929
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1930
+
1931
+
1932
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1933
+ Processing by UsersController#index as HTML
1934
+ User Load (0.2ms) SELECT "users".* FROM "users"
1935
+ Rendered users/index.html.erb within layouts/application (3.3ms)
1936
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1937
+
1938
+
1939
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1940
+ Processing by UsersController#new as HTML
1941
+ Rendered users/new.html.erb within layouts/application (8.1ms)
1942
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1943
+
1944
+
1945
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:47 +0200 2011
1946
+ Processing by UsersController#new as HTML
1947
+ Rendered users/new.html.erb within layouts/application (8.7ms)
1948
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
1949
+
1950
+
1951
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1952
+ Processing by UsersController#index as HTML
1953
+ User Load (0.2ms) SELECT "users".* FROM "users"
1954
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1955
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
1956
+
1957
+
1958
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1959
+ Processing by UsersController#index as HTML
1960
+ User Load (0.2ms) SELECT "users".* FROM "users"
1961
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1962
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1963
+
1964
+
1965
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1966
+ Processing by UsersController#new as HTML
1967
+ Rendered users/new.html.erb within layouts/application (9.2ms)
1968
+ Completed 200 OK in 11ms (Views: 10.9ms | ActiveRecord: 0.0ms)
1969
+
1970
+
1971
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1972
+ Processing by UsersController#new as HTML
1973
+ Rendered users/new.html.erb within layouts/application (9.6ms)
1974
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1975
+
1976
+
1977
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1978
+ Processing by UsersController#index as HTML
1979
+ User Load (0.2ms) SELECT "users".* FROM "users"
1980
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1981
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1982
+
1983
+
1984
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1985
+ Processing by UsersController#index as HTML
1986
+ User Load (0.2ms) SELECT "users".* FROM "users"
1987
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1988
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1989
+
1990
+
1991
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1992
+ Processing by UsersController#new as HTML
1993
+ Rendered users/new.html.erb within layouts/application (8.7ms)
1994
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1995
+
1996
+
1997
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
1998
+ Processing by UsersController#new as HTML
1999
+ Rendered users/new.html.erb within layouts/application (8.6ms)
2000
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
2001
+
2002
+
2003
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
2004
+ Processing by UsersController#new as HTML
2005
+ Rendered users/new.html.erb within layouts/application (8.0ms)
2006
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
2007
+
2008
+
2009
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
2010
+ Processing by UsersController#new as HTML
2011
+ Rendered users/new.html.erb within layouts/application (134.9ms)
2012
+ Completed 200 OK in 136ms (Views: 135.6ms | ActiveRecord: 0.0ms)
2013
+
2014
+
2015
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
2016
+ Processing by UsersController#index as HTML
2017
+ User Load (0.2ms) SELECT "users".* FROM "users"
2018
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2019
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2020
+
2021
+
2022
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:28:48 +0200 2011
2023
+ Processing by UsersController#index as HTML
2024
+ User Load (0.2ms) SELECT "users".* FROM "users"
2025
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2026
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2027
+ SQL (0.5ms)  SELECT name
2028
+ FROM sqlite_master
2029
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2030
+ 
2031
+ SQL (0.1ms) select sqlite_version(*)
2032
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2033
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
2034
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2035
+ SQL (0.1ms) SELECT name
2036
+ FROM sqlite_master
2037
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2038
+ SQL (0.1ms)  SELECT name
2039
+ FROM sqlite_master
2040
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2041
+ 
2042
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2043
+ Migrating to CreateUsers (20110228170406)
2044
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
2045
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
2046
+
2047
+
2048
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:13 +0200 2011
2049
+ Processing by UsersController#new as HTML
2050
+ Rendered users/new.html.erb within layouts/application (18.4ms)
2051
+ Completed 200 OK in 25ms (Views: 24.5ms | ActiveRecord: 1.7ms)
2052
+
2053
+
2054
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2055
+ Processing by UsersController#new as HTML
2056
+ Rendered users/new.html.erb within layouts/application (8.7ms)
2057
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2058
+
2059
+
2060
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2061
+ Processing by UsersController#new as HTML
2062
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2063
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2064
+
2065
+
2066
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2067
+ Processing by UsersController#new as HTML
2068
+ Parameters: {"datetime"=>"true"}
2069
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2070
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2071
+
2072
+
2073
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2074
+ Processing by UsersController#new as HTML
2075
+ Parameters: {"datetime"=>"true"}
2076
+ Rendered users/new.html.erb within layouts/application (8.2ms)
2077
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
2078
+
2079
+
2080
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2081
+ Processing by UsersController#new as HTML
2082
+ Parameters: {"date"=>"true"}
2083
+ Rendered users/new.html.erb within layouts/application (5.1ms)
2084
+ Completed 200 OK in 6ms (Views: 5.8ms | ActiveRecord: 0.0ms)
2085
+
2086
+
2087
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2088
+ Processing by UsersController#new as HTML
2089
+ Parameters: {"date"=>"true"}
2090
+ Rendered users/new.html.erb within layouts/application (5.3ms)
2091
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
2092
+
2093
+
2094
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2095
+ Processing by UsersController#new as HTML
2096
+ Parameters: {"time"=>"true"}
2097
+ Rendered users/new.html.erb within layouts/application (6.1ms)
2098
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
2099
+
2100
+
2101
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2102
+ Processing by UsersController#new as HTML
2103
+ Parameters: {"time"=>"true"}
2104
+ Rendered users/new.html.erb within layouts/application (6.5ms)
2105
+ Completed 200 OK in 7ms (Views: 7.2ms | ActiveRecord: 0.0ms)
2106
+ SQL (0.3ms)  SELECT name
2107
+ FROM sqlite_master
2108
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2109
+ 
2110
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2111
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 1, '2011-04-29 10:29:14.000000', 'User A', '2011-04-29 10:29:14.000000')
2112
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 2, '2011-04-29 10:29:14.000000', 'User B', '2011-04-29 10:29:14.000000')
2113
+
2114
+
2115
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2116
+ Processing by UsersController#index as HTML
2117
+ User Load (0.3ms) SELECT "users".* FROM "users"
2118
+ Rendered users/index.html.erb within layouts/application (6.9ms)
2119
+ Completed 200 OK in 14ms (Views: 12.3ms | ActiveRecord: 1.1ms)
2120
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2121
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 3, '2011-04-29 10:29:14.000000', 'User A', '2011-04-29 10:29:14.000000')
2122
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 4, '2011-04-29 10:29:14.000000', 'User B', '2011-04-29 10:29:14.000000')
2123
+
2124
+
2125
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2126
+ Processing by UsersController#index as HTML
2127
+ User Load (0.2ms) SELECT "users".* FROM "users"
2128
+ Rendered users/index.html.erb within layouts/application (5.4ms)
2129
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.6ms)
2130
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2131
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 5, '2011-04-29 10:29:14.000000', 'User A', '2011-04-29 10:29:14.000000')
2132
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 6, '2011-04-29 10:29:14.000000', 'User B', '2011-04-29 10:29:14.000000')
2133
+
2134
+
2135
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2136
+ Processing by UsersController#index as HTML
2137
+ User Load (0.2ms) SELECT "users".* FROM "users"
2138
+ Rendered users/index.html.erb within layouts/application (6.7ms)
2139
+ Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.6ms)
2140
+ User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2141
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2142
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2143
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 10, '2011-04-29 10:29:14.000000', 'The Super User', '2011-04-29 10:29:14.000000')
2144
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2145
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 11, '2011-04-29 10:29:14.000000', 'The Super User', '2011-04-29 10:29:14.000000')
2146
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2147
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2148
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2149
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', NULL, '2011-04-29 10:29:14.496902', 'Another user', '2011-04-29 10:29:14.496902')
2150
+
2151
+
2152
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2153
+ Processing by UsersController#new as HTML
2154
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2155
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 2.5ms)
2156
+
2157
+
2158
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2159
+ Processing by UsersController#new as HTML
2160
+ Rendered users/new.html.erb within layouts/application (8.3ms)
2161
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2162
+
2163
+
2164
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2165
+ Processing by UsersController#new as HTML
2166
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2167
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2168
+
2169
+
2170
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2171
+ Processing by UsersController#new as HTML
2172
+ Rendered users/new.html.erb within layouts/application (8.2ms)
2173
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
2174
+
2175
+
2176
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2177
+ Processing by UsersController#index as HTML
2178
+ User Load (0.2ms) SELECT "users".* FROM "users"
2179
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2180
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2181
+
2182
+
2183
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2184
+ Processing by UsersController#index as HTML
2185
+ User Load (0.2ms) SELECT "users".* FROM "users"
2186
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2187
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2188
+
2189
+
2190
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2191
+ Processing by UsersController#index as HTML
2192
+ User Load (0.2ms) SELECT "users".* FROM "users"
2193
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2194
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2195
+
2196
+
2197
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2198
+ Processing by UsersController#index as HTML
2199
+ User Load (0.2ms) SELECT "users".* FROM "users"
2200
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2201
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2202
+
2203
+
2204
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2205
+ Processing by UsersController#index as HTML
2206
+ User Load (0.2ms) SELECT "users".* FROM "users"
2207
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2208
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2209
+
2210
+
2211
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2212
+ Processing by UsersController#index as HTML
2213
+ User Load (0.2ms) SELECT "users".* FROM "users"
2214
+ Rendered users/index.html.erb within layouts/application (3.3ms)
2215
+ Completed 200 OK in 7ms (Views: 5.8ms | ActiveRecord: 0.2ms)
2216
+
2217
+
2218
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2219
+ Processing by UsersController#new as HTML
2220
+ Rendered users/new.html.erb within layouts/application (8.3ms)
2221
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2222
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
2223
+
2224
+
2225
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2226
+ Processing by UsersController#create as HTML
2227
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"29"}}
2228
+ AREL (0.2ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-04-29 10:29:00.000000', NULL, '2011-04-29 10:29:14.654595', 'User', '2011-04-29 10:29:14.654595')
2229
+ Redirected to http://www.example.com/users
2230
+ Completed 302 Found in 3ms
2231
+
2232
+
2233
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2234
+ Processing by UsersController#index as HTML
2235
+ User Load (0.2ms) SELECT "users".* FROM "users"
2236
+ Rendered users/index.html.erb within layouts/application (4.4ms)
2237
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 0.5ms)
2238
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
2239
+
2240
+
2241
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2242
+ Processing by UsersController#new as HTML
2243
+ Rendered users/new.html.erb within layouts/application (8.9ms)
2244
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.1ms)
2245
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
2246
+
2247
+
2248
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2249
+ Processing by UsersController#create as HTML
2250
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"29"}}
2251
+ Redirected to http://www.example.com/users
2252
+ Completed 302 Found in 3ms
2253
+
2254
+
2255
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2256
+ Processing by UsersController#index as HTML
2257
+ User Load (0.2ms) SELECT "users".* FROM "users"
2258
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2259
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.4ms)
2260
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
2261
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2262
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 15, '2011-04-29 10:29:14.000000', 'The Super User', '2011-04-29 10:29:14.000000')
2263
+
2264
+
2265
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2266
+ Processing by UsersController#index as HTML
2267
+ User Load (0.2ms) SELECT "users".* FROM "users"
2268
+ Rendered users/index.html.erb within layouts/application (4.5ms)
2269
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.6ms)
2270
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2271
+
2272
+
2273
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2274
+ Processing by UsersController#block as HTML
2275
+ Parameters: {"id"=>"1003261225"}
2276
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2277
+ AREL (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2011-04-29 10:29:14.723197' WHERE "users"."id" = 1003261225
2278
+ Redirected to http://www.example.com/users
2279
+ Completed 302 Found in 3ms
2280
+
2281
+
2282
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2283
+ Processing by UsersController#index as HTML
2284
+ User Load (0.2ms) SELECT "users".* FROM "users"
2285
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2286
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.7ms)
2287
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2288
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2289
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "name", "created_at") VALUES ('2011-03-03 18:11:26.000000', 16, '2011-04-29 10:29:14.000000', 'The Super User', '2011-04-29 10:29:14.000000')
2290
+
2291
+
2292
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2293
+ Processing by UsersController#index as HTML
2294
+ User Load (0.2ms) SELECT "users".* FROM "users"
2295
+ Rendered users/index.html.erb within layouts/application (4.0ms)
2296
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.6ms)
2297
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2298
+
2299
+
2300
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2301
+ Processing by UsersController#new as HTML
2302
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2303
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.2ms)
2304
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2305
+
2306
+
2307
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2308
+ Processing by UsersController#new as HTML
2309
+ Rendered users/new.html.erb within layouts/application (134.3ms)
2310
+ Completed 200 OK in 135ms (Views: 135.1ms | ActiveRecord: 0.2ms)
2311
+
2312
+
2313
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2314
+ Processing by UsersController#new as HTML
2315
+ Rendered users/new.html.erb within layouts/application (8.5ms)
2316
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2317
+
2318
+
2319
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2320
+ Processing by UsersController#index as HTML
2321
+ User Load (0.2ms) SELECT "users".* FROM "users"
2322
+ Rendered users/index.html.erb within layouts/application (3.4ms)
2323
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
2324
+
2325
+
2326
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2327
+ Processing by UsersController#index as HTML
2328
+ User Load (0.2ms) SELECT "users".* FROM "users"
2329
+ Rendered users/index.html.erb within layouts/application (3.7ms)
2330
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
2331
+
2332
+
2333
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2334
+ Processing by UsersController#index as HTML
2335
+ User Load (0.2ms) SELECT "users".* FROM "users"
2336
+ Rendered users/index.html.erb within layouts/application (3.4ms)
2337
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
2338
+
2339
+
2340
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2341
+ Processing by UsersController#index as HTML
2342
+ User Load (0.2ms) SELECT "users".* FROM "users"
2343
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2344
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2345
+
2346
+
2347
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:14 +0200 2011
2348
+ Processing by UsersController#index as HTML
2349
+ User Load (0.2ms) SELECT "users".* FROM "users"
2350
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2351
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2352
+
2353
+
2354
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2355
+ Processing by UsersController#new as HTML
2356
+ Rendered users/new.html.erb within layouts/application (9.0ms)
2357
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
2358
+
2359
+
2360
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2361
+ Processing by UsersController#new as HTML
2362
+ Rendered users/new.html.erb within layouts/application (9.8ms)
2363
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
2364
+
2365
+
2366
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2367
+ Processing by UsersController#index as HTML
2368
+ User Load (0.2ms) SELECT "users".* FROM "users"
2369
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2370
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2371
+
2372
+
2373
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2374
+ Processing by UsersController#index as HTML
2375
+ User Load (0.2ms) SELECT "users".* FROM "users"
2376
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2377
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
2378
+
2379
+
2380
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2381
+ Processing by UsersController#index as HTML
2382
+ User Load (0.2ms) SELECT "users".* FROM "users"
2383
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2384
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2385
+
2386
+
2387
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2388
+ Processing by UsersController#index as HTML
2389
+ User Load (0.2ms) SELECT "users".* FROM "users"
2390
+ Rendered users/index.html.erb within layouts/application (2.9ms)
2391
+ Completed 200 OK in 4ms (Views: 3.5ms | ActiveRecord: 0.2ms)
2392
+
2393
+
2394
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2395
+ Processing by UsersController#new as HTML
2396
+ Rendered users/new.html.erb within layouts/application (8.5ms)
2397
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
2398
+
2399
+
2400
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2401
+ Processing by UsersController#new as HTML
2402
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2403
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2404
+
2405
+
2406
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2407
+ Processing by UsersController#index as HTML
2408
+ User Load (0.2ms) SELECT "users".* FROM "users"
2409
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2410
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
2411
+
2412
+
2413
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2414
+ Processing by UsersController#index as HTML
2415
+ User Load (0.2ms) SELECT "users".* FROM "users"
2416
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2417
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2418
+
2419
+
2420
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2421
+ Processing by UsersController#new as HTML
2422
+ Rendered users/new.html.erb within layouts/application (8.7ms)
2423
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2424
+
2425
+
2426
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2427
+ Processing by UsersController#new as HTML
2428
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2429
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2430
+
2431
+
2432
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2433
+ Processing by UsersController#index as HTML
2434
+ User Load (0.2ms) SELECT "users".* FROM "users"
2435
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2436
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2437
+
2438
+
2439
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2440
+ Processing by UsersController#index as HTML
2441
+ User Load (0.2ms) SELECT "users".* FROM "users"
2442
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2443
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2444
+
2445
+
2446
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2447
+ Processing by UsersController#new as HTML
2448
+ Rendered users/new.html.erb within layouts/application (8.7ms)
2449
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2450
+
2451
+
2452
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2453
+ Processing by UsersController#new as HTML
2454
+ Rendered users/new.html.erb within layouts/application (8.2ms)
2455
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
2456
+
2457
+
2458
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2459
+ Processing by UsersController#index as HTML
2460
+ User Load (0.2ms) SELECT "users".* FROM "users"
2461
+ Rendered users/index.html.erb within layouts/application (4.0ms)
2462
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
2463
+
2464
+
2465
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2466
+ Processing by UsersController#index as HTML
2467
+ User Load (0.2ms) SELECT "users".* FROM "users"
2468
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2469
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2470
+
2471
+
2472
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2473
+ Processing by UsersController#new as HTML
2474
+ Rendered users/new.html.erb within layouts/application (8.6ms)
2475
+ Completed 200 OK in 11ms (Views: 9.4ms | ActiveRecord: 0.0ms)
2476
+
2477
+
2478
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2479
+ Processing by UsersController#new as HTML
2480
+ Rendered users/new.html.erb within layouts/application (8.1ms)
2481
+ Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.0ms)
2482
+
2483
+
2484
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2485
+ Processing by UsersController#index as HTML
2486
+ User Load (0.2ms) SELECT "users".* FROM "users"
2487
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2488
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2489
+
2490
+
2491
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2492
+ Processing by UsersController#index as HTML
2493
+ User Load (0.2ms) SELECT "users".* FROM "users"
2494
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2495
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2496
+
2497
+
2498
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2499
+ Processing by UsersController#new as HTML
2500
+ Rendered users/new.html.erb within layouts/application (8.7ms)
2501
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2502
+
2503
+
2504
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2505
+ Processing by UsersController#new as HTML
2506
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2507
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
2508
+
2509
+
2510
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2511
+ Processing by UsersController#new as HTML
2512
+ Rendered users/new.html.erb within layouts/application (8.0ms)
2513
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
2514
+
2515
+
2516
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2517
+ Processing by UsersController#new as HTML
2518
+ Rendered users/new.html.erb within layouts/application (155.9ms)
2519
+ Completed 200 OK in 157ms (Views: 156.7ms | ActiveRecord: 0.0ms)
2520
+
2521
+
2522
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2523
+ Processing by UsersController#index as HTML
2524
+ User Load (0.2ms) SELECT "users".* FROM "users"
2525
+ Rendered users/index.html.erb within layouts/application (3.3ms)
2526
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
2527
+
2528
+
2529
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:29:15 +0200 2011
2530
+ Processing by UsersController#index as HTML
2531
+ User Load (0.2ms) SELECT "users".* FROM "users"
2532
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2533
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2534
+ SQL (0.5ms)  SELECT name
2535
+ FROM sqlite_master
2536
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2537
+ 
2538
+ SQL (0.1ms) select sqlite_version(*)
2539
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2540
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
2541
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2542
+ SQL (0.1ms) SELECT name
2543
+ FROM sqlite_master
2544
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2545
+ SQL (0.1ms)  SELECT name
2546
+ FROM sqlite_master
2547
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2548
+ 
2549
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
2550
+ Migrating to CreateUsers (20110228170406)
2551
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
2552
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
2553
+
2554
+
2555
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2556
+ Processing by UsersController#new as HTML
2557
+ Rendered users/new.html.erb within layouts/application (18.3ms)
2558
+ Completed 200 OK in 25ms (Views: 24.4ms | ActiveRecord: 1.7ms)
2559
+
2560
+
2561
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2562
+ Processing by UsersController#new as HTML
2563
+ Rendered users/new.html.erb within layouts/application (8.5ms)
2564
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
2565
+
2566
+
2567
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2568
+ Processing by UsersController#new as HTML
2569
+ Rendered users/new.html.erb within layouts/application (8.3ms)
2570
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2571
+
2572
+
2573
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2574
+ Processing by UsersController#new as HTML
2575
+ Parameters: {"datetime"=>"true"}
2576
+ Rendered users/new.html.erb within layouts/application (8.3ms)
2577
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2578
+
2579
+
2580
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2581
+ Processing by UsersController#new as HTML
2582
+ Parameters: {"datetime"=>"true"}
2583
+ Rendered users/new.html.erb within layouts/application (9.0ms)
2584
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
2585
+
2586
+
2587
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2588
+ Processing by UsersController#new as HTML
2589
+ Parameters: {"date"=>"true"}
2590
+ Rendered users/new.html.erb within layouts/application (5.2ms)
2591
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
2592
+
2593
+
2594
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2595
+ Processing by UsersController#new as HTML
2596
+ Parameters: {"date"=>"true"}
2597
+ Rendered users/new.html.erb within layouts/application (5.9ms)
2598
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
2599
+
2600
+
2601
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2602
+ Processing by UsersController#new as HTML
2603
+ Parameters: {"time"=>"true"}
2604
+ Rendered users/new.html.erb within layouts/application (6.4ms)
2605
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
2606
+
2607
+
2608
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2609
+ Processing by UsersController#new as HTML
2610
+ Parameters: {"time"=>"true"}
2611
+ Rendered users/new.html.erb within layouts/application (6.6ms)
2612
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
2613
+ SQL (0.2ms)  SELECT name
2614
+ FROM sqlite_master
2615
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
2616
+ 
2617
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2618
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (1, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'User A')
2619
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (2, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'User B')
2620
+
2621
+
2622
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2623
+ Processing by UsersController#index as HTML
2624
+ User Load (0.2ms) SELECT "users".* FROM "users"
2625
+ Rendered users/index.html.erb within layouts/application (6.3ms)
2626
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 1.0ms)
2627
+ User Load (0.7ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2628
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (3, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'User A')
2629
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (4, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'User B')
2630
+
2631
+
2632
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2633
+ Processing by UsersController#index as HTML
2634
+ User Load (0.2ms) SELECT "users".* FROM "users"
2635
+ Rendered users/index.html.erb within layouts/application (5.8ms)
2636
+ Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 1.1ms)
2637
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2638
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (5, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'User A')
2639
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (6, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'User B')
2640
+
2641
+
2642
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2643
+ Processing by UsersController#index as HTML
2644
+ User Load (0.3ms) SELECT "users".* FROM "users"
2645
+ Rendered users/index.html.erb within layouts/application (4.7ms)
2646
+ Completed 200 OK in 7ms (Views: 5.5ms | ActiveRecord: 1.5ms)
2647
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2648
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2649
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2650
+ AREL (0.2ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (10, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'The Super User')
2651
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2652
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (11, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'The Super User')
2653
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2654
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2655
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2656
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (NULL, '2011-04-29 10:30:03.769326', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.769326', 'Another user')
2657
+
2658
+
2659
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2660
+ Processing by UsersController#new as HTML
2661
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2662
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 1.6ms)
2663
+
2664
+
2665
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2666
+ Processing by UsersController#new as HTML
2667
+ Rendered users/new.html.erb within layouts/application (8.2ms)
2668
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
2669
+
2670
+
2671
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2672
+ Processing by UsersController#new as HTML
2673
+ Rendered users/new.html.erb within layouts/application (8.7ms)
2674
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
2675
+
2676
+
2677
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2678
+ Processing by UsersController#new as HTML
2679
+ Rendered users/new.html.erb within layouts/application (8.0ms)
2680
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
2681
+
2682
+
2683
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2684
+ Processing by UsersController#index as HTML
2685
+ User Load (0.2ms) SELECT "users".* FROM "users"
2686
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2687
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2688
+
2689
+
2690
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2691
+ Processing by UsersController#index as HTML
2692
+ User Load (0.2ms) SELECT "users".* FROM "users"
2693
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2694
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2695
+
2696
+
2697
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2698
+ Processing by UsersController#index as HTML
2699
+ User Load (0.2ms) SELECT "users".* FROM "users"
2700
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2701
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2702
+
2703
+
2704
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2705
+ Processing by UsersController#index as HTML
2706
+ User Load (0.2ms) SELECT "users".* FROM "users"
2707
+ Rendered users/index.html.erb within layouts/application (4.1ms)
2708
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
2709
+
2710
+
2711
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2712
+ Processing by UsersController#index as HTML
2713
+ User Load (0.2ms) SELECT "users".* FROM "users"
2714
+ Rendered users/index.html.erb within layouts/application (3.0ms)
2715
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
2716
+
2717
+
2718
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2719
+ Processing by UsersController#index as HTML
2720
+ User Load (0.2ms) SELECT "users".* FROM "users"
2721
+ Rendered users/index.html.erb within layouts/application (3.4ms)
2722
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
2723
+
2724
+
2725
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2726
+ Processing by UsersController#new as HTML
2727
+ Rendered users/new.html.erb within layouts/application (9.0ms)
2728
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
2729
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
2730
+
2731
+
2732
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2733
+ Processing by UsersController#create as HTML
2734
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"30"}}
2735
+ AREL (0.2ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (NULL, '2011-04-29 10:30:03.922775', '2011-04-29 10:30:00.000000', '2011-04-29 10:30:03.922775', 'User')
2736
+ Redirected to http://www.example.com/users
2737
+ Completed 302 Found in 3ms
2738
+
2739
+
2740
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2741
+ Processing by UsersController#index as HTML
2742
+ User Load (0.2ms) SELECT "users".* FROM "users"
2743
+ Rendered users/index.html.erb within layouts/application (3.8ms)
2744
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.5ms)
2745
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
2746
+
2747
+
2748
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2749
+ Processing by UsersController#new as HTML
2750
+ Rendered users/new.html.erb within layouts/application (9.0ms)
2751
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.2ms)
2752
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
2753
+
2754
+
2755
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2756
+ Processing by UsersController#create as HTML
2757
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"30"}}
2758
+ Redirected to http://www.example.com/users
2759
+ Completed 302 Found in 3ms
2760
+
2761
+
2762
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2763
+ Processing by UsersController#index as HTML
2764
+ User Load (0.2ms) SELECT "users".* FROM "users"
2765
+ Rendered users/index.html.erb within layouts/application (3.3ms)
2766
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.3ms)
2767
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
2768
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2769
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (15, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'The Super User')
2770
+
2771
+
2772
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2773
+ Processing by UsersController#index as HTML
2774
+ User Load (0.2ms) SELECT "users".* FROM "users"
2775
+ Rendered users/index.html.erb within layouts/application (3.7ms)
2776
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.6ms)
2777
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2778
+
2779
+
2780
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2781
+ Processing by UsersController#block as HTML
2782
+ Parameters: {"id"=>"1003261225"}
2783
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2784
+ AREL (0.1ms) UPDATE "users" SET "updated_at" = '2011-04-29 10:30:03.992302', "active_at" = NULL WHERE "users"."id" = 1003261225
2785
+ Redirected to http://www.example.com/users
2786
+ Completed 302 Found in 3ms
2787
+
2788
+
2789
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:03 +0200 2011
2790
+ Processing by UsersController#index as HTML
2791
+ User Load (0.2ms) SELECT "users".* FROM "users"
2792
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2793
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.7ms)
2794
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2795
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
2796
+ AREL (0.1ms) INSERT INTO "users" ("counter", "updated_at", "active_at", "created_at", "name") VALUES (16, '2011-04-29 10:30:03.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:03.000000', 'The Super User')
2797
+
2798
+
2799
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2800
+ Processing by UsersController#index as HTML
2801
+ User Load (0.2ms) SELECT "users".* FROM "users"
2802
+ Rendered users/index.html.erb within layouts/application (4.1ms)
2803
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.6ms)
2804
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2805
+
2806
+
2807
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2808
+ Processing by UsersController#new as HTML
2809
+ Rendered users/new.html.erb within layouts/application (8.5ms)
2810
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.2ms)
2811
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
2812
+
2813
+
2814
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2815
+ Processing by UsersController#new as HTML
2816
+ Rendered users/new.html.erb within layouts/application (130.1ms)
2817
+ Completed 200 OK in 131ms (Views: 130.9ms | ActiveRecord: 0.2ms)
2818
+
2819
+
2820
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2821
+ Processing by UsersController#new as HTML
2822
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2823
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2824
+
2825
+
2826
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2827
+ Processing by UsersController#index as HTML
2828
+ User Load (0.2ms) SELECT "users".* FROM "users"
2829
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2830
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2831
+
2832
+
2833
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2834
+ Processing by UsersController#index as HTML
2835
+ User Load (0.2ms) SELECT "users".* FROM "users"
2836
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2837
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2838
+
2839
+
2840
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2841
+ Processing by UsersController#index as HTML
2842
+ User Load (0.2ms) SELECT "users".* FROM "users"
2843
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2844
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
2845
+
2846
+
2847
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2848
+ Processing by UsersController#index as HTML
2849
+ User Load (0.2ms) SELECT "users".* FROM "users"
2850
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2851
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
2852
+
2853
+
2854
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2855
+ Processing by UsersController#index as HTML
2856
+ User Load (0.2ms) SELECT "users".* FROM "users"
2857
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2858
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2859
+
2860
+
2861
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2862
+ Processing by UsersController#new as HTML
2863
+ Rendered users/new.html.erb within layouts/application (8.2ms)
2864
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
2865
+
2866
+
2867
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2868
+ Processing by UsersController#new as HTML
2869
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2870
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2871
+
2872
+
2873
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2874
+ Processing by UsersController#index as HTML
2875
+ User Load (0.2ms) SELECT "users".* FROM "users"
2876
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2877
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2878
+
2879
+
2880
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2881
+ Processing by UsersController#index as HTML
2882
+ User Load (0.2ms) SELECT "users".* FROM "users"
2883
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2884
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
2885
+
2886
+
2887
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2888
+ Processing by UsersController#index as HTML
2889
+ User Load (0.2ms) SELECT "users".* FROM "users"
2890
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2891
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
2892
+
2893
+
2894
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2895
+ Processing by UsersController#index as HTML
2896
+ User Load (0.2ms) SELECT "users".* FROM "users"
2897
+ Rendered users/index.html.erb within layouts/application (2.9ms)
2898
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
2899
+
2900
+
2901
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2902
+ Processing by UsersController#new as HTML
2903
+ Rendered users/new.html.erb within layouts/application (8.7ms)
2904
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
2905
+
2906
+
2907
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2908
+ Processing by UsersController#new as HTML
2909
+ Rendered users/new.html.erb within layouts/application (8.3ms)
2910
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2911
+
2912
+
2913
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2914
+ Processing by UsersController#index as HTML
2915
+ User Load (0.2ms) SELECT "users".* FROM "users"
2916
+ Rendered users/index.html.erb within layouts/application (3.3ms)
2917
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
2918
+
2919
+
2920
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2921
+ Processing by UsersController#index as HTML
2922
+ User Load (0.2ms) SELECT "users".* FROM "users"
2923
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2924
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2925
+
2926
+
2927
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2928
+ Processing by UsersController#new as HTML
2929
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2930
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2931
+
2932
+
2933
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2934
+ Processing by UsersController#new as HTML
2935
+ Rendered users/new.html.erb within layouts/application (9.0ms)
2936
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
2937
+
2938
+
2939
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2940
+ Processing by UsersController#index as HTML
2941
+ User Load (0.2ms) SELECT "users".* FROM "users"
2942
+ Rendered users/index.html.erb within layouts/application (3.4ms)
2943
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
2944
+
2945
+
2946
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2947
+ Processing by UsersController#index as HTML
2948
+ User Load (0.2ms) SELECT "users".* FROM "users"
2949
+ Rendered users/index.html.erb within layouts/application (3.2ms)
2950
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
2951
+
2952
+
2953
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2954
+ Processing by UsersController#new as HTML
2955
+ Rendered users/new.html.erb within layouts/application (8.4ms)
2956
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
2957
+
2958
+
2959
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2960
+ Processing by UsersController#new as HTML
2961
+ Rendered users/new.html.erb within layouts/application (8.6ms)
2962
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
2963
+
2964
+
2965
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2966
+ Processing by UsersController#index as HTML
2967
+ User Load (0.2ms) SELECT "users".* FROM "users"
2968
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2969
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
2970
+
2971
+
2972
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2973
+ Processing by UsersController#index as HTML
2974
+ User Load (0.2ms) SELECT "users".* FROM "users"
2975
+ Rendered users/index.html.erb within layouts/application (4.1ms)
2976
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
2977
+
2978
+
2979
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2980
+ Processing by UsersController#new as HTML
2981
+ Rendered users/new.html.erb within layouts/application (8.1ms)
2982
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
2983
+
2984
+
2985
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2986
+ Processing by UsersController#new as HTML
2987
+ Rendered users/new.html.erb within layouts/application (9.1ms)
2988
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
2989
+
2990
+
2991
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2992
+ Processing by UsersController#index as HTML
2993
+ User Load (0.2ms) SELECT "users".* FROM "users"
2994
+ Rendered users/index.html.erb within layouts/application (3.1ms)
2995
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
2996
+
2997
+
2998
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
2999
+ Processing by UsersController#index as HTML
3000
+ User Load (0.2ms) SELECT "users".* FROM "users"
3001
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3002
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.2ms)
3003
+
3004
+
3005
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
3006
+ Processing by UsersController#new as HTML
3007
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3008
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
3009
+
3010
+
3011
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
3012
+ Processing by UsersController#new as HTML
3013
+ Rendered users/new.html.erb within layouts/application (9.1ms)
3014
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
3015
+
3016
+
3017
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
3018
+ Processing by UsersController#new as HTML
3019
+ Rendered users/new.html.erb within layouts/application (8.0ms)
3020
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
3021
+
3022
+
3023
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
3024
+ Processing by UsersController#new as HTML
3025
+ Rendered users/new.html.erb within layouts/application (133.2ms)
3026
+ Completed 200 OK in 134ms (Views: 134.0ms | ActiveRecord: 0.0ms)
3027
+
3028
+
3029
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
3030
+ Processing by UsersController#index as HTML
3031
+ User Load (0.2ms) SELECT "users".* FROM "users"
3032
+ Rendered users/index.html.erb within layouts/application (3.3ms)
3033
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3034
+
3035
+
3036
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:04 +0200 2011
3037
+ Processing by UsersController#index as HTML
3038
+ User Load (0.2ms) SELECT "users".* FROM "users"
3039
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3040
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3041
+ SQL (0.5ms)  SELECT name
3042
+ FROM sqlite_master
3043
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3044
+ 
3045
+ SQL (0.1ms) select sqlite_version(*)
3046
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3047
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
3048
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3049
+ SQL (0.1ms) SELECT name
3050
+ FROM sqlite_master
3051
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3052
+ SQL (0.1ms)  SELECT name
3053
+ FROM sqlite_master
3054
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3055
+ 
3056
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3057
+ Migrating to CreateUsers (20110228170406)
3058
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
3059
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
3060
+
3061
+
3062
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3063
+ Processing by UsersController#new as HTML
3064
+ Rendered users/new.html.erb within layouts/application (17.9ms)
3065
+ Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 1.7ms)
3066
+
3067
+
3068
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3069
+ Processing by UsersController#new as HTML
3070
+ Rendered users/new.html.erb within layouts/application (8.6ms)
3071
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
3072
+
3073
+
3074
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3075
+ Processing by UsersController#new as HTML
3076
+ Rendered users/new.html.erb within layouts/application (8.3ms)
3077
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
3078
+
3079
+
3080
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3081
+ Processing by UsersController#new as HTML
3082
+ Parameters: {"datetime"=>"true"}
3083
+ Rendered users/new.html.erb within layouts/application (8.0ms)
3084
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
3085
+
3086
+
3087
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3088
+ Processing by UsersController#new as HTML
3089
+ Parameters: {"datetime"=>"true"}
3090
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3091
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
3092
+
3093
+
3094
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3095
+ Processing by UsersController#new as HTML
3096
+ Parameters: {"date"=>"true"}
3097
+ Rendered users/new.html.erb within layouts/application (5.7ms)
3098
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
3099
+
3100
+
3101
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3102
+ Processing by UsersController#new as HTML
3103
+ Parameters: {"date"=>"true"}
3104
+ Rendered users/new.html.erb within layouts/application (7.0ms)
3105
+ Completed 200 OK in 8ms (Views: 7.8ms | ActiveRecord: 0.0ms)
3106
+
3107
+
3108
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3109
+ Processing by UsersController#new as HTML
3110
+ Parameters: {"time"=>"true"}
3111
+ Rendered users/new.html.erb within layouts/application (5.9ms)
3112
+ Completed 200 OK in 7ms (Views: 6.6ms | ActiveRecord: 0.0ms)
3113
+
3114
+
3115
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:30:17 +0200 2011
3116
+ Processing by UsersController#new as HTML
3117
+ Parameters: {"time"=>"true"}
3118
+ Rendered users/new.html.erb within layouts/application (6.2ms)
3119
+ Completed 200 OK in 7ms (Views: 7.0ms | ActiveRecord: 0.0ms)
3120
+ SQL (0.2ms)  SELECT name
3121
+ FROM sqlite_master
3122
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3123
+ 
3124
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3125
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (1, 'User A', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3126
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (2, 'User B', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3127
+
3128
+
3129
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3130
+ Processing by UsersController#index as HTML
3131
+ User Load (0.2ms) SELECT "users".* FROM "users"
3132
+ Rendered users/index.html.erb within layouts/application (6.2ms)
3133
+ Completed 200 OK in 10ms (Views: 8.4ms | ActiveRecord: 1.0ms)
3134
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3135
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (3, 'User A', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3136
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (4, 'User B', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3137
+
3138
+
3139
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3140
+ Processing by UsersController#index as HTML
3141
+ User Load (0.3ms) SELECT "users".* FROM "users"
3142
+ Rendered users/index.html.erb within layouts/application (4.6ms)
3143
+ Completed 200 OK in 7ms (Views: 5.3ms | ActiveRecord: 0.7ms)
3144
+ User Load (0.8ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3145
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (5, 'User A', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3146
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (6, 'User B', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3147
+
3148
+
3149
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3150
+ Processing by UsersController#index as HTML
3151
+ User Load (0.2ms) SELECT "users".* FROM "users"
3152
+ Rendered users/index.html.erb within layouts/application (5.5ms)
3153
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 1.2ms)
3154
+ User Load (1.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3155
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3156
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3157
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (10, 'The Super User', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3158
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3159
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (11, 'The Super User', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3160
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3161
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3162
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3163
+ AREL (0.2ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (NULL, 'Another user', '2011-04-29 10:30:18.199260', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:18.199260')
3164
+
3165
+
3166
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3167
+ Processing by UsersController#new as HTML
3168
+ Rendered users/new.html.erb within layouts/application (8.8ms)
3169
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 2.5ms)
3170
+
3171
+
3172
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3173
+ Processing by UsersController#new as HTML
3174
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3175
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
3176
+
3177
+
3178
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3179
+ Processing by UsersController#new as HTML
3180
+ Rendered users/new.html.erb within layouts/application (8.7ms)
3181
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
3182
+
3183
+
3184
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3185
+ Processing by UsersController#new as HTML
3186
+ Rendered users/new.html.erb within layouts/application (9.5ms)
3187
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
3188
+
3189
+
3190
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3191
+ Processing by UsersController#index as HTML
3192
+ User Load (0.2ms) SELECT "users".* FROM "users"
3193
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3194
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3195
+
3196
+
3197
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3198
+ Processing by UsersController#index as HTML
3199
+ User Load (0.2ms) SELECT "users".* FROM "users"
3200
+ Rendered users/index.html.erb within layouts/application (4.0ms)
3201
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
3202
+
3203
+
3204
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3205
+ Processing by UsersController#index as HTML
3206
+ User Load (0.2ms) SELECT "users".* FROM "users"
3207
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3208
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3209
+
3210
+
3211
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3212
+ Processing by UsersController#index as HTML
3213
+ User Load (0.2ms) SELECT "users".* FROM "users"
3214
+ Rendered users/index.html.erb within layouts/application (3.9ms)
3215
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
3216
+
3217
+
3218
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3219
+ Processing by UsersController#index as HTML
3220
+ User Load (0.9ms) SELECT "users".* FROM "users"
3221
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3222
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.9ms)
3223
+
3224
+
3225
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3226
+ Processing by UsersController#index as HTML
3227
+ User Load (0.2ms) SELECT "users".* FROM "users"
3228
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3229
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3230
+
3231
+
3232
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3233
+ Processing by UsersController#new as HTML
3234
+ Rendered users/new.html.erb within layouts/application (9.1ms)
3235
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
3236
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
3237
+
3238
+
3239
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3240
+ Processing by UsersController#create as HTML
3241
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"30"}}
3242
+ AREL (0.2ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (NULL, 'User', '2011-04-29 10:30:18.360649', '2011-04-29 10:30:00.000000', '2011-04-29 10:30:18.360649')
3243
+ Redirected to http://www.example.com/users
3244
+ Completed 302 Found in 4ms
3245
+
3246
+
3247
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3248
+ Processing by UsersController#index as HTML
3249
+ User Load (0.2ms) SELECT "users".* FROM "users"
3250
+ Rendered users/index.html.erb within layouts/application (3.9ms)
3251
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.5ms)
3252
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
3253
+
3254
+
3255
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3256
+ Processing by UsersController#new as HTML
3257
+ Rendered users/new.html.erb within layouts/application (8.6ms)
3258
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.1ms)
3259
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
3260
+
3261
+
3262
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3263
+ Processing by UsersController#create as HTML
3264
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"30"}}
3265
+ Redirected to http://www.example.com/users
3266
+ Completed 302 Found in 3ms
3267
+
3268
+
3269
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3270
+ Processing by UsersController#index as HTML
3271
+ User Load (0.2ms) SELECT "users".* FROM "users"
3272
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3273
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.3ms)
3274
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
3275
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3276
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (15, 'The Super User', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3277
+
3278
+
3279
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3280
+ Processing by UsersController#index as HTML
3281
+ User Load (0.2ms) SELECT "users".* FROM "users"
3282
+ Rendered users/index.html.erb within layouts/application (4.3ms)
3283
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.6ms)
3284
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3285
+
3286
+
3287
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3288
+ Processing by UsersController#block as HTML
3289
+ Parameters: {"id"=>"1003261225"}
3290
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3291
+ AREL (0.1ms) UPDATE "users" SET "updated_at" = '2011-04-29 10:30:18.429150', "active_at" = NULL WHERE "users"."id" = 1003261225
3292
+ Redirected to http://www.example.com/users
3293
+ Completed 302 Found in 4ms
3294
+
3295
+
3296
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3297
+ Processing by UsersController#index as HTML
3298
+ User Load (0.2ms) SELECT "users".* FROM "users"
3299
+ Rendered users/index.html.erb within layouts/application (3.3ms)
3300
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.7ms)
3301
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3302
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3303
+ AREL (0.1ms) INSERT INTO "users" ("counter", "name", "updated_at", "active_at", "created_at") VALUES (16, 'The Super User', '2011-04-29 10:30:17.000000', '2011-03-03 18:11:26.000000', '2011-04-29 10:30:17.000000')
3304
+
3305
+
3306
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3307
+ Processing by UsersController#index as HTML
3308
+ User Load (0.2ms) SELECT "users".* FROM "users"
3309
+ Rendered users/index.html.erb within layouts/application (3.9ms)
3310
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.6ms)
3311
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3312
+
3313
+
3314
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3315
+ Processing by UsersController#new as HTML
3316
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3317
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.2ms)
3318
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3319
+
3320
+
3321
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3322
+ Processing by UsersController#new as HTML
3323
+ Rendered users/new.html.erb within layouts/application (134.9ms)
3324
+ Completed 200 OK in 136ms (Views: 135.7ms | ActiveRecord: 0.2ms)
3325
+
3326
+
3327
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3328
+ Processing by UsersController#new as HTML
3329
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3330
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3331
+
3332
+
3333
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3334
+ Processing by UsersController#index as HTML
3335
+ User Load (0.2ms) SELECT "users".* FROM "users"
3336
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3337
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3338
+
3339
+
3340
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3341
+ Processing by UsersController#index as HTML
3342
+ User Load (0.2ms) SELECT "users".* FROM "users"
3343
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3344
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3345
+
3346
+
3347
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3348
+ Processing by UsersController#index as HTML
3349
+ User Load (0.2ms) SELECT "users".* FROM "users"
3350
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3351
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3352
+
3353
+
3354
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3355
+ Processing by UsersController#index as HTML
3356
+ User Load (0.2ms) SELECT "users".* FROM "users"
3357
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3358
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3359
+
3360
+
3361
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3362
+ Processing by UsersController#index as HTML
3363
+ User Load (0.2ms) SELECT "users".* FROM "users"
3364
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3365
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3366
+
3367
+
3368
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3369
+ Processing by UsersController#new as HTML
3370
+ Rendered users/new.html.erb within layouts/application (8.3ms)
3371
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3372
+
3373
+
3374
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3375
+ Processing by UsersController#new as HTML
3376
+ Rendered users/new.html.erb within layouts/application (9.0ms)
3377
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
3378
+
3379
+
3380
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3381
+ Processing by UsersController#index as HTML
3382
+ User Load (0.2ms) SELECT "users".* FROM "users"
3383
+ Rendered users/index.html.erb within layouts/application (3.6ms)
3384
+ Completed 200 OK in 6ms (Views: 4.5ms | ActiveRecord: 0.2ms)
3385
+
3386
+
3387
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3388
+ Processing by UsersController#index as HTML
3389
+ User Load (0.2ms) SELECT "users".* FROM "users"
3390
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3391
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3392
+
3393
+
3394
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3395
+ Processing by UsersController#index as HTML
3396
+ User Load (0.2ms) SELECT "users".* FROM "users"
3397
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3398
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3399
+
3400
+
3401
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3402
+ Processing by UsersController#index as HTML
3403
+ User Load (0.2ms) SELECT "users".* FROM "users"
3404
+ Rendered users/index.html.erb within layouts/application (2.9ms)
3405
+ Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3406
+
3407
+
3408
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3409
+ Processing by UsersController#new as HTML
3410
+ Rendered users/new.html.erb within layouts/application (8.3ms)
3411
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
3412
+
3413
+
3414
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:18 +0200 2011
3415
+ Processing by UsersController#new as HTML
3416
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3417
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
3418
+
3419
+
3420
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3421
+ Processing by UsersController#index as HTML
3422
+ User Load (0.2ms) SELECT "users".* FROM "users"
3423
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3424
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3425
+
3426
+
3427
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3428
+ Processing by UsersController#index as HTML
3429
+ User Load (0.2ms) SELECT "users".* FROM "users"
3430
+ Rendered users/index.html.erb within layouts/application (3.3ms)
3431
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
3432
+
3433
+
3434
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3435
+ Processing by UsersController#new as HTML
3436
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3437
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
3438
+
3439
+
3440
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3441
+ Processing by UsersController#new as HTML
3442
+ Rendered users/new.html.erb within layouts/application (8.2ms)
3443
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
3444
+
3445
+
3446
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3447
+ Processing by UsersController#index as HTML
3448
+ User Load (0.2ms) SELECT "users".* FROM "users"
3449
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3450
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3451
+
3452
+
3453
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3454
+ Processing by UsersController#index as HTML
3455
+ User Load (0.2ms) SELECT "users".* FROM "users"
3456
+ Rendered users/index.html.erb within layouts/application (3.3ms)
3457
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3458
+
3459
+
3460
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3461
+ Processing by UsersController#new as HTML
3462
+ Rendered users/new.html.erb within layouts/application (8.2ms)
3463
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
3464
+
3465
+
3466
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3467
+ Processing by UsersController#new as HTML
3468
+ Rendered users/new.html.erb within layouts/application (9.2ms)
3469
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
3470
+
3471
+
3472
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3473
+ Processing by UsersController#index as HTML
3474
+ User Load (0.2ms) SELECT "users".* FROM "users"
3475
+ Rendered users/index.html.erb within layouts/application (3.5ms)
3476
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
3477
+
3478
+
3479
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3480
+ Processing by UsersController#index as HTML
3481
+ User Load (0.2ms) SELECT "users".* FROM "users"
3482
+ Rendered users/index.html.erb within layouts/application (3.3ms)
3483
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
3484
+
3485
+
3486
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3487
+ Processing by UsersController#new as HTML
3488
+ Rendered users/new.html.erb within layouts/application (8.7ms)
3489
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
3490
+
3491
+
3492
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3493
+ Processing by UsersController#new as HTML
3494
+ Rendered users/new.html.erb within layouts/application (8.7ms)
3495
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
3496
+
3497
+
3498
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3499
+ Processing by UsersController#index as HTML
3500
+ User Load (0.2ms) SELECT "users".* FROM "users"
3501
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3502
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3503
+
3504
+
3505
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3506
+ Processing by UsersController#index as HTML
3507
+ User Load (0.2ms) SELECT "users".* FROM "users"
3508
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3509
+ Completed 200 OK in 6ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3510
+
3511
+
3512
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3513
+ Processing by UsersController#new as HTML
3514
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3515
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
3516
+
3517
+
3518
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3519
+ Processing by UsersController#new as HTML
3520
+ Rendered users/new.html.erb within layouts/application (9.4ms)
3521
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
3522
+
3523
+
3524
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3525
+ Processing by UsersController#new as HTML
3526
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3527
+ Completed 200 OK in 10ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3528
+
3529
+
3530
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3531
+ Processing by UsersController#new as HTML
3532
+ Rendered users/new.html.erb within layouts/application (138.0ms)
3533
+ Completed 200 OK in 139ms (Views: 138.7ms | ActiveRecord: 0.0ms)
3534
+
3535
+
3536
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3537
+ Processing by UsersController#index as HTML
3538
+ User Load (0.2ms) SELECT "users".* FROM "users"
3539
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3540
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3541
+
3542
+
3543
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:19 +0200 2011
3544
+ Processing by UsersController#index as HTML
3545
+ User Load (0.2ms) SELECT "users".* FROM "users"
3546
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3547
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3548
+ SQL (0.5ms)  SELECT name
3549
+ FROM sqlite_master
3550
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3551
+ 
3552
+ SQL (0.1ms) select sqlite_version(*)
3553
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
3554
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
3555
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
3556
+ SQL (0.1ms) SELECT name
3557
+ FROM sqlite_master
3558
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3559
+ SQL (0.1ms)  SELECT name
3560
+ FROM sqlite_master
3561
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3562
+ 
3563
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
3564
+ Migrating to CreateUsers (20110228170406)
3565
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
3566
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
3567
+
3568
+
3569
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3570
+ Processing by UsersController#new as HTML
3571
+ Rendered users/new.html.erb within layouts/application (18.8ms)
3572
+ Completed 200 OK in 26ms (Views: 25.0ms | ActiveRecord: 1.7ms)
3573
+
3574
+
3575
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3576
+ Processing by UsersController#new as HTML
3577
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3578
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
3579
+
3580
+
3581
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3582
+ Processing by UsersController#new as HTML
3583
+ Rendered users/new.html.erb within layouts/application (9.5ms)
3584
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.0ms)
3585
+
3586
+
3587
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3588
+ Processing by UsersController#new as HTML
3589
+ Parameters: {"datetime"=>"true"}
3590
+ Rendered users/new.html.erb within layouts/application (9.1ms)
3591
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
3592
+
3593
+
3594
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3595
+ Processing by UsersController#new as HTML
3596
+ Parameters: {"datetime"=>"true"}
3597
+ Rendered users/new.html.erb within layouts/application (9.9ms)
3598
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
3599
+
3600
+
3601
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3602
+ Processing by UsersController#new as HTML
3603
+ Parameters: {"date"=>"true"}
3604
+ Rendered users/new.html.erb within layouts/application (6.0ms)
3605
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
3606
+
3607
+
3608
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3609
+ Processing by UsersController#new as HTML
3610
+ Parameters: {"date"=>"true"}
3611
+ Rendered users/new.html.erb within layouts/application (5.4ms)
3612
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
3613
+
3614
+
3615
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3616
+ Processing by UsersController#new as HTML
3617
+ Parameters: {"time"=>"true"}
3618
+ Rendered users/new.html.erb within layouts/application (6.1ms)
3619
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
3620
+
3621
+
3622
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3623
+ Processing by UsersController#new as HTML
3624
+ Parameters: {"time"=>"true"}
3625
+ Rendered users/new.html.erb within layouts/application (6.1ms)
3626
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
3627
+ SQL (0.2ms)  SELECT name
3628
+ FROM sqlite_master
3629
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
3630
+ 
3631
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3632
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User A', '2011-04-29 10:30:41.000000', 1, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3633
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User B', '2011-04-29 10:30:41.000000', 2, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3634
+
3635
+
3636
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3637
+ Processing by UsersController#index as HTML
3638
+ User Load (0.2ms) SELECT "users".* FROM "users"
3639
+ Rendered users/index.html.erb within layouts/application (6.6ms)
3640
+ Completed 200 OK in 10ms (Views: 8.9ms | ActiveRecord: 1.0ms)
3641
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3642
+ AREL (0.2ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User A', '2011-04-29 10:30:41.000000', 3, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3643
+ AREL (0.2ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User B', '2011-04-29 10:30:41.000000', 4, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3644
+
3645
+
3646
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3647
+ Processing by UsersController#index as HTML
3648
+ User Load (0.3ms) SELECT "users".* FROM "users"
3649
+ Rendered users/index.html.erb within layouts/application (5.7ms)
3650
+ Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.9ms)
3651
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3652
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User A', '2011-04-29 10:30:41.000000', 5, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3653
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User B', '2011-04-29 10:30:41.000000', 6, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3654
+
3655
+
3656
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3657
+ Processing by UsersController#index as HTML
3658
+ User Load (0.2ms) SELECT "users".* FROM "users"
3659
+ Rendered users/index.html.erb within layouts/application (4.7ms)
3660
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 1.4ms)
3661
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3662
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3663
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3664
+ AREL (0.2ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('The Super User', '2011-04-29 10:30:41.000000', 10, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3665
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3666
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('The Super User', '2011-04-29 10:30:41.000000', 11, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3667
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3668
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3669
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3670
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('Another user', '2011-04-29 10:30:41.957702', NULL, '2011-04-29 10:30:41.957702', '2011-03-03 18:11:26.000000')
3671
+
3672
+
3673
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3674
+ Processing by UsersController#new as HTML
3675
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3676
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 1.7ms)
3677
+
3678
+
3679
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3680
+ Processing by UsersController#new as HTML
3681
+ Rendered users/new.html.erb within layouts/application (8.5ms)
3682
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
3683
+
3684
+
3685
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:41 +0200 2011
3686
+ Processing by UsersController#new as HTML
3687
+ Rendered users/new.html.erb within layouts/application (8.2ms)
3688
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
3689
+
3690
+
3691
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3692
+ Processing by UsersController#new as HTML
3693
+ Rendered users/new.html.erb within layouts/application (8.3ms)
3694
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
3695
+
3696
+
3697
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3698
+ Processing by UsersController#index as HTML
3699
+ User Load (0.2ms) SELECT "users".* FROM "users"
3700
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3701
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3702
+
3703
+
3704
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3705
+ Processing by UsersController#index as HTML
3706
+ User Load (0.2ms) SELECT "users".* FROM "users"
3707
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3708
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3709
+
3710
+
3711
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3712
+ Processing by UsersController#index as HTML
3713
+ User Load (0.2ms) SELECT "users".* FROM "users"
3714
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3715
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.2ms)
3716
+
3717
+
3718
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3719
+ Processing by UsersController#index as HTML
3720
+ User Load (0.2ms) SELECT "users".* FROM "users"
3721
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3722
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3723
+
3724
+
3725
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3726
+ Processing by UsersController#index as HTML
3727
+ User Load (0.2ms) SELECT "users".* FROM "users"
3728
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3729
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3730
+
3731
+
3732
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3733
+ Processing by UsersController#index as HTML
3734
+ User Load (0.2ms) SELECT "users".* FROM "users"
3735
+ Rendered users/index.html.erb within layouts/application (3.8ms)
3736
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)
3737
+
3738
+
3739
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3740
+ Processing by UsersController#new as HTML
3741
+ Rendered users/new.html.erb within layouts/application (9.5ms)
3742
+ Completed 200 OK in 11ms (Views: 10.2ms | ActiveRecord: 0.0ms)
3743
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
3744
+
3745
+
3746
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3747
+ Processing by UsersController#create as HTML
3748
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"30"}}
3749
+ AREL (0.2ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('User', '2011-04-29 10:30:42.112159', NULL, '2011-04-29 10:30:42.112159', '2011-04-29 10:30:00.000000')
3750
+ Redirected to http://www.example.com/users
3751
+ Completed 302 Found in 3ms
3752
+
3753
+
3754
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3755
+ Processing by UsersController#index as HTML
3756
+ User Load (0.2ms) SELECT "users".* FROM "users"
3757
+ Rendered users/index.html.erb within layouts/application (4.4ms)
3758
+ Completed 200 OK in 7ms (Views: 5.1ms | ActiveRecord: 0.5ms)
3759
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
3760
+
3761
+
3762
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3763
+ Processing by UsersController#new as HTML
3764
+ Rendered users/new.html.erb within layouts/application (8.6ms)
3765
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.2ms)
3766
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
3767
+
3768
+
3769
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3770
+ Processing by UsersController#create as HTML
3771
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"30"}}
3772
+ Redirected to http://www.example.com/users
3773
+ Completed 302 Found in 4ms
3774
+
3775
+
3776
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3777
+ Processing by UsersController#index as HTML
3778
+ User Load (0.2ms) SELECT "users".* FROM "users"
3779
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3780
+ Completed 200 OK in 5ms (Views: 3.6ms | ActiveRecord: 0.3ms)
3781
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
3782
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3783
+ AREL (0.5ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('The Super User', '2011-04-29 10:30:41.000000', 15, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3784
+
3785
+
3786
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3787
+ Processing by UsersController#index as HTML
3788
+ User Load (0.2ms) SELECT "users".* FROM "users"
3789
+ Rendered users/index.html.erb within layouts/application (3.8ms)
3790
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 1.0ms)
3791
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3792
+
3793
+
3794
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3795
+ Processing by UsersController#block as HTML
3796
+ Parameters: {"id"=>"1003261225"}
3797
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3798
+ AREL (0.1ms) UPDATE "users" SET "updated_at" = '2011-04-29 10:30:42.183252', "active_at" = NULL WHERE "users"."id" = 1003261225
3799
+ Redirected to http://www.example.com/users
3800
+ Completed 302 Found in 4ms
3801
+
3802
+
3803
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3804
+ Processing by UsersController#index as HTML
3805
+ User Load (0.3ms) SELECT "users".* FROM "users"
3806
+ Rendered users/index.html.erb within layouts/application (3.5ms)
3807
+ Completed 200 OK in 6ms (Views: 4.4ms | ActiveRecord: 0.7ms)
3808
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3809
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
3810
+ AREL (0.1ms) INSERT INTO "users" ("name", "updated_at", "counter", "created_at", "active_at") VALUES ('The Super User', '2011-04-29 10:30:41.000000', 16, '2011-04-29 10:30:41.000000', '2011-03-03 18:11:26.000000')
3811
+
3812
+
3813
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3814
+ Processing by UsersController#index as HTML
3815
+ User Load (0.2ms) SELECT "users".* FROM "users"
3816
+ Rendered users/index.html.erb within layouts/application (4.2ms)
3817
+ Completed 200 OK in 6ms (Views: 5.0ms | ActiveRecord: 0.6ms)
3818
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3819
+
3820
+
3821
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3822
+ Processing by UsersController#new as HTML
3823
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3824
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.2ms)
3825
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
3826
+
3827
+
3828
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3829
+ Processing by UsersController#new as HTML
3830
+ Rendered users/new.html.erb within layouts/application (10.2ms)
3831
+ Completed 200 OK in 138ms (Views: 11.1ms | ActiveRecord: 0.2ms)
3832
+
3833
+
3834
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3835
+ Processing by UsersController#new as HTML
3836
+ Rendered users/new.html.erb within layouts/application (8.8ms)
3837
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
3838
+
3839
+
3840
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3841
+ Processing by UsersController#index as HTML
3842
+ User Load (0.2ms) SELECT "users".* FROM "users"
3843
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3844
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3845
+
3846
+
3847
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3848
+ Processing by UsersController#index as HTML
3849
+ User Load (0.2ms) SELECT "users".* FROM "users"
3850
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3851
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3852
+
3853
+
3854
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3855
+ Processing by UsersController#index as HTML
3856
+ User Load (0.2ms) SELECT "users".* FROM "users"
3857
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3858
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3859
+
3860
+
3861
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3862
+ Processing by UsersController#index as HTML
3863
+ User Load (0.3ms) SELECT "users".* FROM "users"
3864
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3865
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
3866
+
3867
+
3868
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3869
+ Processing by UsersController#index as HTML
3870
+ User Load (0.2ms) SELECT "users".* FROM "users"
3871
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3872
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3873
+
3874
+
3875
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3876
+ Processing by UsersController#new as HTML
3877
+ Rendered users/new.html.erb within layouts/application (8.2ms)
3878
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3879
+
3880
+
3881
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3882
+ Processing by UsersController#new as HTML
3883
+ Rendered users/new.html.erb within layouts/application (8.8ms)
3884
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
3885
+
3886
+
3887
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3888
+ Processing by UsersController#index as HTML
3889
+ User Load (0.2ms) SELECT "users".* FROM "users"
3890
+ Rendered users/index.html.erb within layouts/application (3.1ms)
3891
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
3892
+
3893
+
3894
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3895
+ Processing by UsersController#index as HTML
3896
+ User Load (0.2ms) SELECT "users".* FROM "users"
3897
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3898
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3899
+
3900
+
3901
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3902
+ Processing by UsersController#index as HTML
3903
+ User Load (0.2ms) SELECT "users".* FROM "users"
3904
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3905
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3906
+
3907
+
3908
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3909
+ Processing by UsersController#index as HTML
3910
+ User Load (0.2ms) SELECT "users".* FROM "users"
3911
+ Rendered users/index.html.erb within layouts/application (3.0ms)
3912
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
3913
+
3914
+
3915
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3916
+ Processing by UsersController#new as HTML
3917
+ Rendered users/new.html.erb within layouts/application (8.3ms)
3918
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3919
+
3920
+
3921
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3922
+ Processing by UsersController#new as HTML
3923
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3924
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
3925
+
3926
+
3927
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3928
+ Processing by UsersController#index as HTML
3929
+ User Load (0.2ms) SELECT "users".* FROM "users"
3930
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3931
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3932
+
3933
+
3934
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3935
+ Processing by UsersController#index as HTML
3936
+ User Load (0.2ms) SELECT "users".* FROM "users"
3937
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3938
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3939
+
3940
+
3941
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3942
+ Processing by UsersController#new as HTML
3943
+ Rendered users/new.html.erb within layouts/application (8.7ms)
3944
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
3945
+
3946
+
3947
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3948
+ Processing by UsersController#new as HTML
3949
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3950
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
3951
+
3952
+
3953
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3954
+ Processing by UsersController#index as HTML
3955
+ User Load (0.2ms) SELECT "users".* FROM "users"
3956
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3957
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3958
+
3959
+
3960
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3961
+ Processing by UsersController#index as HTML
3962
+ User Load (0.2ms) SELECT "users".* FROM "users"
3963
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3964
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3965
+
3966
+
3967
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3968
+ Processing by UsersController#new as HTML
3969
+ Rendered users/new.html.erb within layouts/application (8.1ms)
3970
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
3971
+
3972
+
3973
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3974
+ Processing by UsersController#new as HTML
3975
+ Rendered users/new.html.erb within layouts/application (9.4ms)
3976
+ Completed 200 OK in 10ms (Views: 10.2ms | ActiveRecord: 0.0ms)
3977
+
3978
+
3979
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3980
+ Processing by UsersController#index as HTML
3981
+ User Load (0.2ms) SELECT "users".* FROM "users"
3982
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3983
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
3984
+
3985
+
3986
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3987
+ Processing by UsersController#index as HTML
3988
+ User Load (0.2ms) SELECT "users".* FROM "users"
3989
+ Rendered users/index.html.erb within layouts/application (3.2ms)
3990
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
3991
+
3992
+
3993
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
3994
+ Processing by UsersController#new as HTML
3995
+ Rendered users/new.html.erb within layouts/application (8.4ms)
3996
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
3997
+
3998
+
3999
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4000
+ Processing by UsersController#new as HTML
4001
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4002
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
4003
+
4004
+
4005
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4006
+ Processing by UsersController#index as HTML
4007
+ User Load (0.2ms) SELECT "users".* FROM "users"
4008
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4009
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4010
+
4011
+
4012
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4013
+ Processing by UsersController#index as HTML
4014
+ User Load (0.2ms) SELECT "users".* FROM "users"
4015
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4016
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
4017
+
4018
+
4019
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4020
+ Processing by UsersController#new as HTML
4021
+ Rendered users/new.html.erb within layouts/application (10.1ms)
4022
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
4023
+
4024
+
4025
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4026
+ Processing by UsersController#new as HTML
4027
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4028
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
4029
+
4030
+
4031
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4032
+ Processing by UsersController#new as HTML
4033
+ Rendered users/new.html.erb within layouts/application (8.9ms)
4034
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
4035
+
4036
+
4037
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:30:42 +0200 2011
4038
+ Processing by UsersController#new as HTML
4039
+ Rendered users/new.html.erb within layouts/application (134.2ms)
4040
+ Completed 200 OK in 135ms (Views: 135.0ms | ActiveRecord: 0.0ms)
4041
+
4042
+
4043
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:43 +0200 2011
4044
+ Processing by UsersController#index as HTML
4045
+ User Load (0.2ms) SELECT "users".* FROM "users"
4046
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4047
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4048
+
4049
+
4050
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:30:43 +0200 2011
4051
+ Processing by UsersController#index as HTML
4052
+ User Load (0.2ms) SELECT "users".* FROM "users"
4053
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4054
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4055
+ SQL (0.5ms)  SELECT name
4056
+ FROM sqlite_master
4057
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4058
+ 
4059
+ SQL (0.1ms) select sqlite_version(*)
4060
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4061
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
4062
+ SQL (0.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4063
+ SQL (0.1ms) SELECT name
4064
+ FROM sqlite_master
4065
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4066
+ SQL (0.1ms)  SELECT name
4067
+ FROM sqlite_master
4068
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4069
+ 
4070
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4071
+ Migrating to CreateUsers (20110228170406)
4072
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
4073
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
4074
+
4075
+
4076
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4077
+ Processing by UsersController#new as HTML
4078
+ Rendered users/new.html.erb within layouts/application (18.2ms)
4079
+ Completed 200 OK in 25ms (Views: 24.2ms | ActiveRecord: 1.7ms)
4080
+
4081
+
4082
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4083
+ Processing by UsersController#new as HTML
4084
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4085
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
4086
+
4087
+
4088
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4089
+ Processing by UsersController#new as HTML
4090
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4091
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
4092
+
4093
+
4094
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4095
+ Processing by UsersController#new as HTML
4096
+ Parameters: {"datetime"=>"true"}
4097
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4098
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
4099
+
4100
+
4101
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4102
+ Processing by UsersController#new as HTML
4103
+ Parameters: {"datetime"=>"true"}
4104
+ Rendered users/new.html.erb within layouts/application (8.1ms)
4105
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
4106
+
4107
+
4108
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4109
+ Processing by UsersController#new as HTML
4110
+ Parameters: {"date"=>"true"}
4111
+ Rendered users/new.html.erb within layouts/application (5.7ms)
4112
+ Completed 200 OK in 7ms (Views: 6.4ms | ActiveRecord: 0.0ms)
4113
+
4114
+
4115
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4116
+ Processing by UsersController#new as HTML
4117
+ Parameters: {"date"=>"true"}
4118
+ Rendered users/new.html.erb within layouts/application (5.5ms)
4119
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
4120
+
4121
+
4122
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4123
+ Processing by UsersController#new as HTML
4124
+ Parameters: {"time"=>"true"}
4125
+ Rendered users/new.html.erb within layouts/application (6.0ms)
4126
+ Completed 200 OK in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
4127
+
4128
+
4129
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4130
+ Processing by UsersController#new as HTML
4131
+ Parameters: {"time"=>"true"}
4132
+ Rendered users/new.html.erb within layouts/application (6.7ms)
4133
+ Completed 200 OK in 8ms (Views: 7.4ms | ActiveRecord: 0.0ms)
4134
+ SQL (0.2ms)  SELECT name
4135
+ FROM sqlite_master
4136
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4137
+ 
4138
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4139
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'User A', 1, '2011-04-29 10:31:03.000000')
4140
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'User B', 2, '2011-04-29 10:31:03.000000')
4141
+
4142
+
4143
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4144
+ Processing by UsersController#index as HTML
4145
+ User Load (0.2ms) SELECT "users".* FROM "users"
4146
+ Rendered users/index.html.erb within layouts/application (6.1ms)
4147
+ Completed 200 OK in 10ms (Views: 8.6ms | ActiveRecord: 1.0ms)
4148
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4149
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'User A', 3, '2011-04-29 10:31:03.000000')
4150
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'User B', 4, '2011-04-29 10:31:03.000000')
4151
+
4152
+
4153
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4154
+ Processing by UsersController#index as HTML
4155
+ User Load (0.3ms) SELECT "users".* FROM "users"
4156
+ Rendered users/index.html.erb within layouts/application (6.0ms)
4157
+ Completed 200 OK in 8ms (Views: 6.7ms | ActiveRecord: 0.6ms)
4158
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4159
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'User A', 5, '2011-04-29 10:31:03.000000')
4160
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'User B', 6, '2011-04-29 10:31:03.000000')
4161
+
4162
+
4163
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:03 +0200 2011
4164
+ Processing by UsersController#index as HTML
4165
+ User Load (0.2ms) SELECT "users".* FROM "users"
4166
+ Rendered users/index.html.erb within layouts/application (4.4ms)
4167
+ Completed 200 OK in 6ms (Views: 5.2ms | ActiveRecord: 1.4ms)
4168
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4169
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4170
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4171
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'The Super User', 10, '2011-04-29 10:31:03.000000')
4172
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4173
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'The Super User', 11, '2011-04-29 10:31:03.000000')
4174
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4175
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4176
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4177
+ AREL (0.2ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:04.083942', 'Another user', NULL, '2011-04-29 10:31:04.083942')
4178
+
4179
+
4180
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4181
+ Processing by UsersController#new as HTML
4182
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4183
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 1.5ms)
4184
+
4185
+
4186
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4187
+ Processing by UsersController#new as HTML
4188
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4189
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
4190
+
4191
+
4192
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4193
+ Processing by UsersController#new as HTML
4194
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4195
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
4196
+
4197
+
4198
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4199
+ Processing by UsersController#new as HTML
4200
+ Rendered users/new.html.erb within layouts/application (8.1ms)
4201
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
4202
+
4203
+
4204
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4205
+ Processing by UsersController#index as HTML
4206
+ User Load (0.2ms) SELECT "users".* FROM "users"
4207
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4208
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4209
+
4210
+
4211
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4212
+ Processing by UsersController#index as HTML
4213
+ User Load (0.2ms) SELECT "users".* FROM "users"
4214
+ Rendered users/index.html.erb within layouts/application (2.9ms)
4215
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
4216
+
4217
+
4218
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4219
+ Processing by UsersController#index as HTML
4220
+ User Load (0.2ms) SELECT "users".* FROM "users"
4221
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4222
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4223
+
4224
+
4225
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4226
+ Processing by UsersController#index as HTML
4227
+ User Load (0.2ms) SELECT "users".* FROM "users"
4228
+ Rendered users/index.html.erb within layouts/application (2.9ms)
4229
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
4230
+
4231
+
4232
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4233
+ Processing by UsersController#index as HTML
4234
+ User Load (0.2ms) SELECT "users".* FROM "users"
4235
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4236
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4237
+
4238
+
4239
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4240
+ Processing by UsersController#index as HTML
4241
+ User Load (0.2ms) SELECT "users".* FROM "users"
4242
+ Rendered users/index.html.erb within layouts/application (3.9ms)
4243
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.2ms)
4244
+
4245
+
4246
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4247
+ Processing by UsersController#new as HTML
4248
+ Rendered users/new.html.erb within layouts/application (9.6ms)
4249
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
4250
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
4251
+
4252
+
4253
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4254
+ Processing by UsersController#create as HTML
4255
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"31"}}
4256
+ AREL (0.2ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-04-29 10:31:00.000000', '2011-04-29 10:31:04.234036', 'User', NULL, '2011-04-29 10:31:04.234036')
4257
+ Redirected to http://www.example.com/users
4258
+ Completed 302 Found in 3ms
4259
+
4260
+
4261
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4262
+ Processing by UsersController#index as HTML
4263
+ User Load (0.2ms) SELECT "users".* FROM "users"
4264
+ Rendered users/index.html.erb within layouts/application (3.9ms)
4265
+ Completed 200 OK in 6ms (Views: 4.6ms | ActiveRecord: 0.5ms)
4266
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
4267
+
4268
+
4269
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4270
+ Processing by UsersController#new as HTML
4271
+ Rendered users/new.html.erb within layouts/application (8.7ms)
4272
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.1ms)
4273
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
4274
+
4275
+
4276
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4277
+ Processing by UsersController#create as HTML
4278
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"31"}}
4279
+ Redirected to http://www.example.com/users
4280
+ Completed 302 Found in 3ms
4281
+
4282
+
4283
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4284
+ Processing by UsersController#index as HTML
4285
+ User Load (0.2ms) SELECT "users".* FROM "users"
4286
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4287
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.3ms)
4288
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
4289
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4290
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'The Super User', 15, '2011-04-29 10:31:03.000000')
4291
+
4292
+
4293
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4294
+ Processing by UsersController#index as HTML
4295
+ User Load (0.2ms) SELECT "users".* FROM "users"
4296
+ Rendered users/index.html.erb within layouts/application (4.0ms)
4297
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.6ms)
4298
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4299
+
4300
+
4301
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4302
+ Processing by UsersController#block as HTML
4303
+ Parameters: {"id"=>"1003261225"}
4304
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4305
+ AREL (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2011-04-29 10:31:04.302657' WHERE "users"."id" = 1003261225
4306
+ Redirected to http://www.example.com/users
4307
+ Completed 302 Found in 4ms
4308
+
4309
+
4310
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4311
+ Processing by UsersController#index as HTML
4312
+ User Load (0.2ms) SELECT "users".* FROM "users"
4313
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4314
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.7ms)
4315
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4316
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4317
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "updated_at", "name", "counter", "created_at") VALUES ('2011-03-03 18:11:26.000000', '2011-04-29 10:31:03.000000', 'The Super User', 16, '2011-04-29 10:31:03.000000')
4318
+
4319
+
4320
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4321
+ Processing by UsersController#index as HTML
4322
+ User Load (0.2ms) SELECT "users".* FROM "users"
4323
+ Rendered users/index.html.erb within layouts/application (3.8ms)
4324
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.6ms)
4325
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4326
+
4327
+
4328
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4329
+ Processing by UsersController#new as HTML
4330
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4331
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.2ms)
4332
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4333
+
4334
+
4335
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4336
+ Processing by UsersController#new as HTML
4337
+ Rendered users/new.html.erb within layouts/application (8.5ms)
4338
+ Completed 200 OK in 132ms (Views: 9.4ms | ActiveRecord: 0.2ms)
4339
+
4340
+
4341
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4342
+ Processing by UsersController#new as HTML
4343
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4344
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
4345
+
4346
+
4347
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4348
+ Processing by UsersController#index as HTML
4349
+ User Load (0.2ms) SELECT "users".* FROM "users"
4350
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4351
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4352
+
4353
+
4354
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4355
+ Processing by UsersController#index as HTML
4356
+ User Load (0.2ms) SELECT "users".* FROM "users"
4357
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4358
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4359
+
4360
+
4361
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4362
+ Processing by UsersController#index as HTML
4363
+ User Load (0.2ms) SELECT "users".* FROM "users"
4364
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4365
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4366
+
4367
+
4368
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4369
+ Processing by UsersController#index as HTML
4370
+ User Load (0.2ms) SELECT "users".* FROM "users"
4371
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4372
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4373
+
4374
+
4375
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4376
+ Processing by UsersController#index as HTML
4377
+ User Load (0.2ms) SELECT "users".* FROM "users"
4378
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4379
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4380
+
4381
+
4382
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4383
+ Processing by UsersController#new as HTML
4384
+ Rendered users/new.html.erb within layouts/application (8.2ms)
4385
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
4386
+
4387
+
4388
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4389
+ Processing by UsersController#new as HTML
4390
+ Rendered users/new.html.erb within layouts/application (8.0ms)
4391
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
4392
+
4393
+
4394
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4395
+ Processing by UsersController#index as HTML
4396
+ User Load (0.2ms) SELECT "users".* FROM "users"
4397
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4398
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4399
+
4400
+
4401
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4402
+ Processing by UsersController#index as HTML
4403
+ User Load (0.2ms) SELECT "users".* FROM "users"
4404
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4405
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4406
+
4407
+
4408
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4409
+ Processing by UsersController#index as HTML
4410
+ User Load (0.2ms) SELECT "users".* FROM "users"
4411
+ Rendered users/index.html.erb within layouts/application (2.9ms)
4412
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
4413
+
4414
+
4415
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4416
+ Processing by UsersController#index as HTML
4417
+ User Load (0.2ms) SELECT "users".* FROM "users"
4418
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4419
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
4420
+
4421
+
4422
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4423
+ Processing by UsersController#new as HTML
4424
+ Rendered users/new.html.erb within layouts/application (8.2ms)
4425
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
4426
+
4427
+
4428
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4429
+ Processing by UsersController#new as HTML
4430
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4431
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
4432
+
4433
+
4434
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4435
+ Processing by UsersController#index as HTML
4436
+ User Load (0.2ms) SELECT "users".* FROM "users"
4437
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4438
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4439
+
4440
+
4441
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4442
+ Processing by UsersController#index as HTML
4443
+ User Load (0.2ms) SELECT "users".* FROM "users"
4444
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4445
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4446
+
4447
+
4448
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4449
+ Processing by UsersController#new as HTML
4450
+ Rendered users/new.html.erb within layouts/application (9.8ms)
4451
+ Completed 200 OK in 11ms (Views: 10.6ms | ActiveRecord: 0.0ms)
4452
+
4453
+
4454
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4455
+ Processing by UsersController#new as HTML
4456
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4457
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
4458
+
4459
+
4460
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4461
+ Processing by UsersController#index as HTML
4462
+ User Load (0.2ms) SELECT "users".* FROM "users"
4463
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4464
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.2ms)
4465
+
4466
+
4467
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4468
+ Processing by UsersController#index as HTML
4469
+ User Load (0.2ms) SELECT "users".* FROM "users"
4470
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4471
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4472
+
4473
+
4474
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4475
+ Processing by UsersController#new as HTML
4476
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4477
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
4478
+
4479
+
4480
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4481
+ Processing by UsersController#new as HTML
4482
+ Rendered users/new.html.erb within layouts/application (8.1ms)
4483
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
4484
+
4485
+
4486
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4487
+ Processing by UsersController#index as HTML
4488
+ User Load (0.2ms) SELECT "users".* FROM "users"
4489
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4490
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4491
+
4492
+
4493
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4494
+ Processing by UsersController#index as HTML
4495
+ User Load (0.2ms) SELECT "users".* FROM "users"
4496
+ Rendered users/index.html.erb within layouts/application (3.7ms)
4497
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
4498
+
4499
+
4500
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4501
+ Processing by UsersController#new as HTML
4502
+ Rendered users/new.html.erb within layouts/application (8.7ms)
4503
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
4504
+
4505
+
4506
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:04 +0200 2011
4507
+ Processing by UsersController#new as HTML
4508
+ Rendered users/new.html.erb within layouts/application (9.0ms)
4509
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
4510
+
4511
+
4512
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4513
+ Processing by UsersController#index as HTML
4514
+ User Load (0.2ms) SELECT "users".* FROM "users"
4515
+ Rendered users/index.html.erb within layouts/application (4.0ms)
4516
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
4517
+
4518
+
4519
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4520
+ Processing by UsersController#index as HTML
4521
+ User Load (0.2ms) SELECT "users".* FROM "users"
4522
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4523
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4524
+
4525
+
4526
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4527
+ Processing by UsersController#new as HTML
4528
+ Rendered users/new.html.erb within layouts/application (8.7ms)
4529
+ Completed 200 OK in 11ms (Views: 9.5ms | ActiveRecord: 0.0ms)
4530
+
4531
+
4532
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4533
+ Processing by UsersController#new as HTML
4534
+ Rendered users/new.html.erb within layouts/application (8.8ms)
4535
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
4536
+
4537
+
4538
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4539
+ Processing by UsersController#new as HTML
4540
+ Rendered users/new.html.erb within layouts/application (8.1ms)
4541
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
4542
+
4543
+
4544
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4545
+ Processing by UsersController#new as HTML
4546
+ Rendered users/new.html.erb within layouts/application (134.2ms)
4547
+ Completed 200 OK in 135ms (Views: 134.9ms | ActiveRecord: 0.0ms)
4548
+
4549
+
4550
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4551
+ Processing by UsersController#index as HTML
4552
+ User Load (0.2ms) SELECT "users".* FROM "users"
4553
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4554
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4555
+
4556
+
4557
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:31:05 +0200 2011
4558
+ Processing by UsersController#index as HTML
4559
+ User Load (0.2ms) SELECT "users".* FROM "users"
4560
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4561
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4562
+ SQL (0.5ms)  SELECT name
4563
+ FROM sqlite_master
4564
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4565
+ 
4566
+ SQL (0.1ms) select sqlite_version(*)
4567
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
4568
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
4569
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
4570
+ SQL (0.1ms) SELECT name
4571
+ FROM sqlite_master
4572
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4573
+ SQL (0.1ms)  SELECT name
4574
+ FROM sqlite_master
4575
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4576
+ 
4577
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
4578
+ Migrating to CreateUsers (20110228170406)
4579
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "counter" integer, "created_at" datetime, "updated_at" datetime) 
4580
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
4581
+
4582
+
4583
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4584
+ Processing by UsersController#new as HTML
4585
+ Rendered users/new.html.erb within layouts/application (18.0ms)
4586
+ Completed 200 OK in 24ms (Views: 23.9ms | ActiveRecord: 1.7ms)
4587
+
4588
+
4589
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4590
+ Processing by UsersController#new as HTML
4591
+ Rendered users/new.html.erb within layouts/application (8.5ms)
4592
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
4593
+
4594
+
4595
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4596
+ Processing by UsersController#new as HTML
4597
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4598
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
4599
+
4600
+
4601
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4602
+ Processing by UsersController#new as HTML
4603
+ Parameters: {"datetime"=>"true"}
4604
+ Rendered users/new.html.erb within layouts/application (8.7ms)
4605
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
4606
+
4607
+
4608
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4609
+ Processing by UsersController#new as HTML
4610
+ Parameters: {"datetime"=>"true"}
4611
+ Rendered users/new.html.erb within layouts/application (8.0ms)
4612
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
4613
+
4614
+
4615
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4616
+ Processing by UsersController#new as HTML
4617
+ Parameters: {"date"=>"true"}
4618
+ Rendered users/new.html.erb within layouts/application (5.2ms)
4619
+ Completed 200 OK in 7ms (Views: 6.5ms | ActiveRecord: 0.0ms)
4620
+
4621
+
4622
+ Started GET "/users/new?date=true" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4623
+ Processing by UsersController#new as HTML
4624
+ Parameters: {"date"=>"true"}
4625
+ Rendered users/new.html.erb within layouts/application (5.2ms)
4626
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
4627
+
4628
+
4629
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4630
+ Processing by UsersController#new as HTML
4631
+ Parameters: {"time"=>"true"}
4632
+ Rendered users/new.html.erb within layouts/application (6.1ms)
4633
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
4634
+
4635
+
4636
+ Started GET "/users/new?time=true" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4637
+ Processing by UsersController#new as HTML
4638
+ Parameters: {"time"=>"true"}
4639
+ Rendered users/new.html.erb within layouts/application (6.5ms)
4640
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.0ms)
4641
+ SQL (0.2ms)  SELECT name
4642
+ FROM sqlite_master
4643
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4644
+ 
4645
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4646
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 1, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'User A')
4647
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 2, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'User B')
4648
+
4649
+
4650
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4651
+ Processing by UsersController#index as HTML
4652
+ User Load (0.2ms) SELECT "users".* FROM "users"
4653
+ Rendered users/index.html.erb within layouts/application (5.3ms)
4654
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 1.0ms)
4655
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4656
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 3, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'User A')
4657
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 4, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'User B')
4658
+
4659
+
4660
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4661
+ Processing by UsersController#index as HTML
4662
+ User Load (0.3ms) SELECT "users".* FROM "users"
4663
+ Rendered users/index.html.erb within layouts/application (5.6ms)
4664
+ Completed 200 OK in 7ms (Views: 6.3ms | ActiveRecord: 0.6ms)
4665
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4666
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 5, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'User A')
4667
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 6, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'User B')
4668
+
4669
+
4670
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:41 +0200 2011
4671
+ Processing by UsersController#index as HTML
4672
+ User Load (0.2ms) SELECT "users".* FROM "users"
4673
+ Rendered users/index.html.erb within layouts/application (4.7ms)
4674
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 1.5ms)
4675
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4676
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4677
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4678
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 10, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'The Super User')
4679
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4680
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 11, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'The Super User')
4681
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4682
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4683
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4684
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', NULL, '2011-04-29 10:32:42.121444', '2011-04-29 10:32:42.121444', 'Another user')
4685
+
4686
+
4687
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4688
+ Processing by UsersController#new as HTML
4689
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4690
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 1.6ms)
4691
+
4692
+
4693
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4694
+ Processing by UsersController#new as HTML
4695
+ Rendered users/new.html.erb within layouts/application (8.5ms)
4696
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
4697
+
4698
+
4699
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4700
+ Processing by UsersController#new as HTML
4701
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4702
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
4703
+
4704
+
4705
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4706
+ Processing by UsersController#new as HTML
4707
+ Rendered users/new.html.erb within layouts/application (8.2ms)
4708
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
4709
+
4710
+
4711
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4712
+ Processing by UsersController#index as HTML
4713
+ User Load (0.2ms) SELECT "users".* FROM "users"
4714
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4715
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4716
+
4717
+
4718
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4719
+ Processing by UsersController#index as HTML
4720
+ User Load (0.2ms) SELECT "users".* FROM "users"
4721
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4722
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4723
+
4724
+
4725
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4726
+ Processing by UsersController#index as HTML
4727
+ User Load (0.2ms) SELECT "users".* FROM "users"
4728
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4729
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4730
+
4731
+
4732
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4733
+ Processing by UsersController#index as HTML
4734
+ User Load (0.2ms) SELECT "users".* FROM "users"
4735
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4736
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4737
+
4738
+
4739
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4740
+ Processing by UsersController#index as HTML
4741
+ User Load (0.4ms) SELECT "users".* FROM "users"
4742
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4743
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.4ms)
4744
+
4745
+
4746
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4747
+ Processing by UsersController#index as HTML
4748
+ User Load (0.2ms) SELECT "users".* FROM "users"
4749
+ Rendered users/index.html.erb within layouts/application (4.2ms)
4750
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
4751
+
4752
+
4753
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4754
+ Processing by UsersController#new as HTML
4755
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4756
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
4757
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
4758
+
4759
+
4760
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4761
+ Processing by UsersController#create as HTML
4762
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"32"}}
4763
+ AREL (0.2ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-04-29 10:32:00.000000', NULL, '2011-04-29 10:32:42.274469', '2011-04-29 10:32:42.274469', 'User')
4764
+ Redirected to http://www.example.com/users
4765
+ Completed 302 Found in 4ms
4766
+
4767
+
4768
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4769
+ Processing by UsersController#index as HTML
4770
+ User Load (0.3ms) SELECT "users".* FROM "users"
4771
+ Rendered users/index.html.erb within layouts/application (5.5ms)
4772
+ Completed 200 OK in 8ms (Views: 6.3ms | ActiveRecord: 0.6ms)
4773
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
4774
+
4775
+
4776
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4777
+ Processing by UsersController#new as HTML
4778
+ Rendered users/new.html.erb within layouts/application (7.9ms)
4779
+ Completed 200 OK in 9ms (Views: 8.6ms | ActiveRecord: 0.2ms)
4780
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
4781
+
4782
+
4783
+ Started POST "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4784
+ Processing by UsersController#create as HTML
4785
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"4", "active_at(3i)"=>"29", "active_at(4i)"=>"10", "active_at(5i)"=>"32"}}
4786
+ Redirected to http://www.example.com/users
4787
+ Completed 302 Found in 3ms
4788
+
4789
+
4790
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4791
+ Processing by UsersController#index as HTML
4792
+ User Load (0.2ms) SELECT "users".* FROM "users"
4793
+ Rendered users/index.html.erb within layouts/application (3.5ms)
4794
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.4ms)
4795
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
4796
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4797
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 15, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'The Super User')
4798
+
4799
+
4800
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4801
+ Processing by UsersController#index as HTML
4802
+ User Load (0.2ms) SELECT "users".* FROM "users"
4803
+ Rendered users/index.html.erb within layouts/application (4.1ms)
4804
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.6ms)
4805
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4806
+
4807
+
4808
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4809
+ Processing by UsersController#block as HTML
4810
+ Parameters: {"id"=>"1003261225"}
4811
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4812
+ AREL (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2011-04-29 10:32:42.348358' WHERE "users"."id" = 1003261225
4813
+ Redirected to http://www.example.com/users
4814
+ Completed 302 Found in 4ms
4815
+
4816
+
4817
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4818
+ Processing by UsersController#index as HTML
4819
+ User Load (0.3ms) SELECT "users".* FROM "users"
4820
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4821
+ Completed 200 OK in 6ms (Views: 4.0ms | ActiveRecord: 0.7ms)
4822
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4823
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
4824
+ AREL (0.1ms) INSERT INTO "users" ("active_at", "counter", "updated_at", "created_at", "name") VALUES ('2011-03-03 18:11:26.000000', 16, '2011-04-29 10:32:41.000000', '2011-04-29 10:32:41.000000', 'The Super User')
4825
+
4826
+
4827
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4828
+ Processing by UsersController#index as HTML
4829
+ User Load (0.2ms) SELECT "users".* FROM "users"
4830
+ Rendered users/index.html.erb within layouts/application (3.9ms)
4831
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.6ms)
4832
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4833
+
4834
+
4835
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4836
+ Processing by UsersController#new as HTML
4837
+ Rendered users/new.html.erb within layouts/application (8.4ms)
4838
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.2ms)
4839
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
4840
+
4841
+
4842
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4843
+ Processing by UsersController#new as HTML
4844
+ Rendered users/new.html.erb within layouts/application (8.6ms)
4845
+ Completed 200 OK in 133ms (Views: 9.5ms | ActiveRecord: 0.2ms)
4846
+
4847
+
4848
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4849
+ Processing by UsersController#new as HTML
4850
+ Rendered users/new.html.erb within layouts/application (8.3ms)
4851
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
4852
+
4853
+
4854
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4855
+ Processing by UsersController#index as HTML
4856
+ User Load (0.2ms) SELECT "users".* FROM "users"
4857
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4858
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4859
+
4860
+
4861
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4862
+ Processing by UsersController#index as HTML
4863
+ User Load (0.2ms) SELECT "users".* FROM "users"
4864
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4865
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4866
+
4867
+
4868
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4869
+ Processing by UsersController#index as HTML
4870
+ User Load (0.2ms) SELECT "users".* FROM "users"
4871
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4872
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4873
+
4874
+
4875
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4876
+ Processing by UsersController#index as HTML
4877
+ User Load (0.2ms) SELECT "users".* FROM "users"
4878
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4879
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
4880
+
4881
+
4882
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4883
+ Processing by UsersController#index as HTML
4884
+ User Load (0.2ms) SELECT "users".* FROM "users"
4885
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4886
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4887
+
4888
+
4889
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4890
+ Processing by UsersController#new as HTML
4891
+ Rendered users/new.html.erb within layouts/application (9.0ms)
4892
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
4893
+
4894
+
4895
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4896
+ Processing by UsersController#new as HTML
4897
+ Rendered users/new.html.erb within layouts/application (8.9ms)
4898
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
4899
+
4900
+
4901
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4902
+ Processing by UsersController#index as HTML
4903
+ User Load (0.2ms) SELECT "users".* FROM "users"
4904
+ Rendered users/index.html.erb within layouts/application (4.3ms)
4905
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.2ms)
4906
+
4907
+
4908
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4909
+ Processing by UsersController#index as HTML
4910
+ User Load (0.3ms) SELECT "users".* FROM "users"
4911
+ Rendered users/index.html.erb within layouts/application (3.1ms)
4912
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.3ms)
4913
+
4914
+
4915
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4916
+ Processing by UsersController#index as HTML
4917
+ User Load (0.2ms) SELECT "users".* FROM "users"
4918
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4919
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4920
+
4921
+
4922
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4923
+ Processing by UsersController#index as HTML
4924
+ User Load (0.2ms) SELECT "users".* FROM "users"
4925
+ Rendered users/index.html.erb within layouts/application (2.9ms)
4926
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.2ms)
4927
+
4928
+
4929
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4930
+ Processing by UsersController#new as HTML
4931
+ Rendered users/new.html.erb within layouts/application (8.8ms)
4932
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
4933
+
4934
+
4935
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4936
+ Processing by UsersController#new as HTML
4937
+ Rendered users/new.html.erb within layouts/application (8.9ms)
4938
+ Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
4939
+
4940
+
4941
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4942
+ Processing by UsersController#index as HTML
4943
+ User Load (0.2ms) SELECT "users".* FROM "users"
4944
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4945
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4946
+
4947
+
4948
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4949
+ Processing by UsersController#index as HTML
4950
+ User Load (0.2ms) SELECT "users".* FROM "users"
4951
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4952
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4953
+
4954
+
4955
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4956
+ Processing by UsersController#new as HTML
4957
+ Rendered users/new.html.erb within layouts/application (8.6ms)
4958
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
4959
+
4960
+
4961
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4962
+ Processing by UsersController#new as HTML
4963
+ Rendered users/new.html.erb within layouts/application (8.2ms)
4964
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
4965
+
4966
+
4967
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4968
+ Processing by UsersController#index as HTML
4969
+ User Load (0.2ms) SELECT "users".* FROM "users"
4970
+ Rendered users/index.html.erb within layouts/application (3.3ms)
4971
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
4972
+
4973
+
4974
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4975
+ Processing by UsersController#index as HTML
4976
+ User Load (0.2ms) SELECT "users".* FROM "users"
4977
+ Rendered users/index.html.erb within layouts/application (3.0ms)
4978
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
4979
+
4980
+
4981
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:42 +0200 2011
4982
+ Processing by UsersController#new as HTML
4983
+ Rendered users/new.html.erb within layouts/application (8.1ms)
4984
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
4985
+
4986
+
4987
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
4988
+ Processing by UsersController#new as HTML
4989
+ Rendered users/new.html.erb within layouts/application (8.1ms)
4990
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
4991
+
4992
+
4993
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
4994
+ Processing by UsersController#index as HTML
4995
+ User Load (0.2ms) SELECT "users".* FROM "users"
4996
+ Rendered users/index.html.erb within layouts/application (3.2ms)
4997
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
4998
+
4999
+
5000
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5001
+ Processing by UsersController#index as HTML
5002
+ User Load (0.2ms) SELECT "users".* FROM "users"
5003
+ Rendered users/index.html.erb within layouts/application (3.2ms)
5004
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
5005
+
5006
+
5007
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5008
+ Processing by UsersController#new as HTML
5009
+ Rendered users/new.html.erb within layouts/application (8.6ms)
5010
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
5011
+
5012
+
5013
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5014
+ Processing by UsersController#new as HTML
5015
+ Rendered users/new.html.erb within layouts/application (8.3ms)
5016
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
5017
+
5018
+
5019
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5020
+ Processing by UsersController#index as HTML
5021
+ User Load (0.2ms) SELECT "users".* FROM "users"
5022
+ Rendered users/index.html.erb within layouts/application (3.1ms)
5023
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
5024
+
5025
+
5026
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5027
+ Processing by UsersController#index as HTML
5028
+ User Load (0.2ms) SELECT "users".* FROM "users"
5029
+ Rendered users/index.html.erb within layouts/application (3.0ms)
5030
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
5031
+
5032
+
5033
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5034
+ Processing by UsersController#new as HTML
5035
+ Rendered users/new.html.erb within layouts/application (9.4ms)
5036
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
5037
+
5038
+
5039
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5040
+ Processing by UsersController#new as HTML
5041
+ Rendered users/new.html.erb within layouts/application (8.4ms)
5042
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
5043
+
5044
+
5045
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5046
+ Processing by UsersController#new as HTML
5047
+ Rendered users/new.html.erb within layouts/application (8.1ms)
5048
+ Completed 200 OK in 10ms (Views: 8.8ms | ActiveRecord: 0.0ms)
5049
+
5050
+
5051
+ Started GET "/users/new" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5052
+ Processing by UsersController#new as HTML
5053
+ Rendered users/new.html.erb within layouts/application (134.9ms)
5054
+ Completed 200 OK in 136ms (Views: 135.7ms | ActiveRecord: 0.0ms)
5055
+
5056
+
5057
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5058
+ Processing by UsersController#index as HTML
5059
+ User Load (0.2ms) SELECT "users".* FROM "users"
5060
+ Rendered users/index.html.erb within layouts/application (3.2ms)
5061
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
5062
+
5063
+
5064
+ Started GET "/users" for 127.0.0.1 at Fri Apr 29 12:32:43 +0200 2011
5065
+ Processing by UsersController#index as HTML
5066
+ User Load (0.2ms) SELECT "users".* FROM "users"
5067
+ Rendered users/index.html.erb within layouts/application (3.2ms)
5068
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)