hermes 0.2.1 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. data/README.rdoc +4 -0
  2. data/lib/hermes.rb +7 -1
  3. data/lib/hermes/actions.rb +81 -0
  4. data/lib/hermes/assertions.rb +34 -29
  5. data/lib/hermes/builders.rb +46 -21
  6. data/lib/hermes/context.rb +0 -2
  7. data/lib/hermes/integration_case.rb +7 -3
  8. data/lib/hermes/rails.rb +4 -0
  9. data/lib/hermes/scopes.rb +32 -0
  10. data/lib/hermes/version.rb +1 -1
  11. data/test/builders.rb +13 -0
  12. data/test/fixtures/users.yml +4 -0
  13. data/test/hermes/actions_test.rb +118 -0
  14. data/test/hermes/assertions_test.rb +493 -0
  15. data/test/hermes/builders_test.rb +109 -0
  16. data/test/hermes/context_test.rb +5 -0
  17. data/test/hermes/scopes_test.rb +47 -0
  18. data/test/rails_app/Rakefile +7 -0
  19. data/test/rails_app/app/controllers/application_controller.rb +3 -0
  20. data/test/rails_app/app/controllers/users_controller.rb +23 -0
  21. data/test/rails_app/app/helpers/application_helper.rb +2 -0
  22. data/test/rails_app/app/models/user.rb +11 -0
  23. data/test/rails_app/app/views/layouts/application.html.erb +14 -0
  24. data/test/rails_app/app/views/users/index.html.erb +10 -0
  25. data/test/rails_app/app/views/users/new.html.erb +62 -0
  26. data/test/rails_app/config.ru +4 -0
  27. data/test/rails_app/config/application.rb +42 -0
  28. data/test/rails_app/config/boot.rb +10 -0
  29. data/test/rails_app/config/database.yml +20 -0
  30. data/test/rails_app/config/environment.rb +5 -0
  31. data/test/rails_app/config/environments/development.rb +26 -0
  32. data/test/rails_app/config/environments/production.rb +49 -0
  33. data/test/rails_app/config/environments/test.rb +35 -0
  34. data/test/rails_app/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/rails_app/config/initializers/inflections.rb +10 -0
  36. data/test/rails_app/config/initializers/mime_types.rb +5 -0
  37. data/test/rails_app/config/initializers/secret_token.rb +7 -0
  38. data/test/rails_app/config/initializers/session_store.rb +8 -0
  39. data/test/rails_app/config/locales/en.yml +5 -0
  40. data/test/rails_app/config/routes.rb +7 -0
  41. data/test/rails_app/db/migrate/20110228170406_create_users.rb +15 -0
  42. data/test/rails_app/db/schema.rb +21 -0
  43. data/test/rails_app/log/development.log +29 -0
  44. data/test/rails_app/log/production.log +0 -0
  45. data/test/rails_app/log/server.log +0 -0
  46. data/test/rails_app/log/test.log +1519 -0
  47. data/test/rails_app/public/404.html +26 -0
  48. data/test/rails_app/public/422.html +26 -0
  49. data/test/rails_app/public/500.html +26 -0
  50. data/test/rails_app/public/favicon.ico +0 -0
  51. data/test/rails_app/public/javascripts/application.js +2 -0
  52. data/test/rails_app/public/javascripts/controls.js +965 -0
  53. data/test/rails_app/public/javascripts/dragdrop.js +974 -0
  54. data/test/rails_app/public/javascripts/effects.js +1123 -0
  55. data/test/rails_app/public/javascripts/prototype.js +6001 -0
  56. data/test/rails_app/public/javascripts/rails.js +191 -0
  57. data/test/rails_app/script/rails +6 -0
  58. data/test/support/assertions.rb +23 -0
  59. data/test/support/models.rb +11 -0
  60. data/test/test_helper.rb +29 -3
  61. metadata +108 -7
@@ -0,0 +1,35 @@
1
+ RailsApp::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Log error messages when you accidentally call methods on nil.
11
+ config.whiny_nils = true
12
+
13
+ # Show full error reports and disable caching
14
+ config.consider_all_requests_local = true
15
+ config.action_controller.perform_caching = false
16
+
17
+ # Raise exceptions instead of rendering exception templates
18
+ config.action_dispatch.show_exceptions = false
19
+
20
+ # Disable request forgery protection in test environment
21
+ config.action_controller.allow_forgery_protection = false
22
+
23
+ # Tell Action Mailer not to deliver emails to the real world.
24
+ # The :test delivery method accumulates sent emails in the
25
+ # ActionMailer::Base.deliveries array.
26
+ config.action_mailer.delivery_method = :test
27
+
28
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
29
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
30
+ # like if you have constraints or database-specific column types
31
+ # config.active_record.schema_format = :sql
32
+
33
+ # Print deprecation notices to the stderr
34
+ config.active_support.deprecation = :stderr
35
+ end
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,10 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format
4
+ # (all these examples are active by default):
5
+ # ActiveSupport::Inflector.inflections do |inflect|
6
+ # inflect.plural /^(ox)$/i, '\1en'
7
+ # inflect.singular /^(ox)en/i, '\1'
8
+ # inflect.irregular 'person', 'people'
9
+ # inflect.uncountable %w( fish sheep )
10
+ # end
@@ -0,0 +1,5 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
5
+ # Mime::Type.register_alias "text/html", :iphone
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+ # Make sure the secret is at least 30 characters and all random,
6
+ # no regular words or you'll be exposed to dictionary attacks.
7
+ RailsApp::Application.config.secret_token = 'ff1ab9b0047f514a5c8e569058802919d7b2f47805b52ee52d216ecb28191842ded2a4222a6b14ec4efa4ba2402987aee81ce97a55f014ccb842f4c730736beb'
@@ -0,0 +1,8 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ RailsApp::Application.config.session_store :cookie_store, :key => '_rails_app_session'
4
+
5
+ # Use the database for sessions instead of the cookie-based default,
6
+ # which shouldn't be used to store highly confidential information
7
+ # (create the session table with "rails generate session_migration")
8
+ # RailsApp::Application.config.session_store :active_record_store
@@ -0,0 +1,5 @@
1
+ # Sample localization file for English. Add more files in this directory for other locales.
2
+ # See http://github.com/svenfuchs/rails-i18n/tree/master/rails%2Flocale for starting points.
3
+
4
+ en:
5
+ hello: "Hello world"
@@ -0,0 +1,7 @@
1
+ RailsApp::Application.routes.draw do
2
+ resources :users do
3
+ member do
4
+ get :block
5
+ end
6
+ end
7
+ end
@@ -0,0 +1,15 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def self.up
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.timestamp :active_at
6
+ t.integer :counter
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+
12
+ def self.down
13
+ drop_table :users
14
+ end
15
+ end
@@ -0,0 +1,21 @@
1
+ # This file is auto-generated from the current state of the database. Instead
2
+ # of editing this file, please use the migrations feature of Active Record to
3
+ # incrementally modify your database, and then regenerate this schema definition.
4
+ #
5
+ # Note that this schema.rb definition is the authoritative source for your
6
+ # database schema. If you need to create the application database on another
7
+ # system, you should be using db:schema:load, not running all the migrations
8
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
9
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
10
+ #
11
+ # It's strongly recommended to check this file into your version control system.
12
+
13
+ ActiveRecord::Schema.define(:version => 20110228170406) do
14
+
15
+ create_table "users", :force => true do |t|
16
+ t.string "name"
17
+ t.datetime "created_at"
18
+ t.datetime "updated_at"
19
+ end
20
+
21
+ end
@@ -0,0 +1,29 @@
1
+ SQL (0.2ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.1ms) select sqlite_version(*)
6
+ SQL (39.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+ SQL (0.1ms) PRAGMA index_list("schema_migrations")
8
+ SQL (2.5ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+ SQL (0.3ms) SELECT name
10
+ FROM sqlite_master
11
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
12
+ SQL (0.2ms)  SELECT name
13
+ FROM sqlite_master
14
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
+ 
16
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
17
+ Migrating to CreateUsers (20110228170406)
18
+ SQL (0.4ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "created_at" datetime, "updated_at" datetime) 
19
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
20
+ SQL (0.2ms)  SELECT name
21
+ FROM sqlite_master
22
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
23
+ 
24
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
25
+ SQL (0.1ms)  SELECT name
26
+ FROM sqlite_master
27
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
28
+ 
29
+ SQL (0.0ms) PRAGMA index_list("users")
File without changes
File without changes
@@ -0,0 +1,1519 @@
1
+ SQL (0.4ms)  SELECT name
2
+ FROM sqlite_master
3
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
4
+ 
5
+ SQL (0.1ms) select sqlite_version(*)
6
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
7
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
8
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
9
+ SQL (0.1ms) SELECT name
10
+ FROM sqlite_master
11
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
12
+ SQL (0.1ms)  SELECT name
13
+ FROM sqlite_master
14
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
15
+ 
16
+ SQL (3.9ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
17
+ Migrating to CreateUsers (20110228170406)
18
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "created_at" datetime, "updated_at" datetime) 
19
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
20
+
21
+
22
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
23
+ Processing by UsersController#new as HTML
24
+ Rendered users/new.html.erb within layouts/application (17.7ms)
25
+ Completed 200 OK in 24ms (Views: 23.4ms | ActiveRecord: 5.5ms)
26
+
27
+
28
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
29
+ Processing by UsersController#new as HTML
30
+ Rendered users/new.html.erb within layouts/application (8.7ms)
31
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
32
+
33
+
34
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
35
+ Processing by UsersController#new as HTML
36
+ Rendered users/new.html.erb within layouts/application (8.7ms)
37
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
38
+
39
+
40
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
41
+ Processing by UsersController#new as HTML
42
+ Parameters: {"datetime"=>"true"}
43
+ Rendered users/new.html.erb within layouts/application (124.0ms)
44
+ Completed 200 OK in 125ms (Views: 124.7ms | ActiveRecord: 0.0ms)
45
+
46
+
47
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
48
+ Processing by UsersController#new as HTML
49
+ Parameters: {"datetime"=>"true"}
50
+ Rendered users/new.html.erb within layouts/application (9.1ms)
51
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
52
+
53
+
54
+ Started GET "/users/new?date=true" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
55
+ Processing by UsersController#new as HTML
56
+ Parameters: {"date"=>"true"}
57
+ Rendered users/new.html.erb within layouts/application (5.4ms)
58
+ Completed 200 OK in 6ms (Views: 6.2ms | ActiveRecord: 0.0ms)
59
+
60
+
61
+ Started GET "/users/new?date=true" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
62
+ Processing by UsersController#new as HTML
63
+ Parameters: {"date"=>"true"}
64
+ Rendered users/new.html.erb within layouts/application (5.5ms)
65
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.0ms)
66
+
67
+
68
+ Started GET "/users/new?time=true" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
69
+ Processing by UsersController#new as HTML
70
+ Parameters: {"time"=>"true"}
71
+ Rendered users/new.html.erb within layouts/application (6.2ms)
72
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
73
+
74
+
75
+ Started GET "/users/new?time=true" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
76
+ Processing by UsersController#new as HTML
77
+ Parameters: {"time"=>"true"}
78
+ Rendered users/new.html.erb within layouts/application (6.4ms)
79
+ Completed 200 OK in 8ms (Views: 7.1ms | ActiveRecord: 0.0ms)
80
+ SQL (0.2ms)  SELECT name
81
+ FROM sqlite_master
82
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
83
+ 
84
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
85
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User A', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
86
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User B', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
87
+
88
+
89
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
90
+ Processing by UsersController#index as HTML
91
+ User Load (0.2ms) SELECT "users".* FROM "users"
92
+ Rendered users/index.html.erb within layouts/application (5.1ms)
93
+ Completed 200 OK in 9ms (Views: 7.6ms | ActiveRecord: 0.9ms)
94
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
95
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User A', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
96
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User B', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
97
+
98
+
99
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
100
+ Processing by UsersController#index as HTML
101
+ User Load (0.2ms) SELECT "users".* FROM "users"
102
+ Rendered users/index.html.erb within layouts/application (5.7ms)
103
+ Completed 200 OK in 8ms (Views: 6.5ms | ActiveRecord: 0.6ms)
104
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
105
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User A', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
106
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User B', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
107
+
108
+
109
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
110
+ Processing by UsersController#index as HTML
111
+ User Load (0.2ms) SELECT "users".* FROM "users"
112
+ Rendered users/index.html.erb within layouts/application (4.7ms)
113
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.6ms)
114
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
115
+ User Load (1.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
116
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('The User', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
117
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
118
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('The User', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
119
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
120
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
121
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
122
+ AREL (0.5ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('Another user', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.711405', '2011-03-14 09:35:02.711405')
123
+
124
+
125
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
126
+ Processing by UsersController#new as HTML
127
+ Rendered users/new.html.erb within layouts/application (8.9ms)
128
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 2.9ms)
129
+
130
+
131
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
132
+ Processing by UsersController#new as HTML
133
+ Rendered users/new.html.erb within layouts/application (8.4ms)
134
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
135
+
136
+
137
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
138
+ Processing by UsersController#new as HTML
139
+ Rendered users/new.html.erb within layouts/application (8.6ms)
140
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
141
+
142
+
143
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
144
+ Processing by UsersController#new as HTML
145
+ Rendered users/new.html.erb within layouts/application (8.5ms)
146
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
147
+
148
+
149
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
150
+ Processing by UsersController#index as HTML
151
+ User Load (0.2ms) SELECT "users".* FROM "users"
152
+ Rendered users/index.html.erb within layouts/application (3.2ms)
153
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
154
+
155
+
156
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
157
+ Processing by UsersController#index as HTML
158
+ User Load (0.2ms) SELECT "users".* FROM "users"
159
+ Rendered users/index.html.erb within layouts/application (3.2ms)
160
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
161
+
162
+
163
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
164
+ Processing by UsersController#index as HTML
165
+ User Load (0.2ms) SELECT "users".* FROM "users"
166
+ Rendered users/index.html.erb within layouts/application (3.2ms)
167
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
168
+
169
+
170
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
171
+ Processing by UsersController#index as HTML
172
+ User Load (0.2ms) SELECT "users".* FROM "users"
173
+ Rendered users/index.html.erb within layouts/application (3.3ms)
174
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
175
+
176
+
177
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
178
+ Processing by UsersController#index as HTML
179
+ User Load (0.2ms) SELECT "users".* FROM "users"
180
+ Rendered users/index.html.erb within layouts/application (3.0ms)
181
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
182
+
183
+
184
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
185
+ Processing by UsersController#index as HTML
186
+ User Load (0.2ms) SELECT "users".* FROM "users"
187
+ Rendered users/index.html.erb within layouts/application (3.1ms)
188
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
189
+
190
+
191
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
192
+ Processing by UsersController#new as HTML
193
+ Rendered users/new.html.erb within layouts/application (8.6ms)
194
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
195
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
196
+
197
+
198
+ Started POST "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
199
+ Processing by UsersController#create as HTML
200
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"3", "active_at(3i)"=>"14", "active_at(4i)"=>"09", "active_at(5i)"=>"35"}}
201
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('User', '2011-03-14 09:35:00.000000', '2011-03-14 09:35:02.979356', '2011-03-14 09:35:02.979356')
202
+ Redirected to http://www.example.com/users
203
+ Completed 302 Found in 3ms
204
+
205
+
206
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
207
+ Processing by UsersController#index as HTML
208
+ User Load (0.2ms) SELECT "users".* FROM "users"
209
+ Rendered users/index.html.erb within layouts/application (3.9ms)
210
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.5ms)
211
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
212
+
213
+
214
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:02 +0100 2011
215
+ Processing by UsersController#new as HTML
216
+ Rendered users/new.html.erb within layouts/application (9.3ms)
217
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.1ms)
218
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
219
+
220
+
221
+ Started POST "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
222
+ Processing by UsersController#create as HTML
223
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"3", "active_at(3i)"=>"14", "active_at(4i)"=>"09", "active_at(5i)"=>"35"}}
224
+ Redirected to http://www.example.com/users
225
+ Completed 302 Found in 3ms
226
+
227
+
228
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
229
+ Processing by UsersController#index as HTML
230
+ User Load (0.2ms) SELECT "users".* FROM "users"
231
+ Rendered users/index.html.erb within layouts/application (3.2ms)
232
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.3ms)
233
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
234
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
235
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('The User', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
236
+
237
+
238
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
239
+ Processing by UsersController#index as HTML
240
+ User Load (0.2ms) SELECT "users".* FROM "users"
241
+ Rendered users/index.html.erb within layouts/application (4.2ms)
242
+ Completed 200 OK in 6ms (Views: 5.5ms | ActiveRecord: 0.6ms)
243
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
244
+
245
+
246
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
247
+ Processing by UsersController#block as HTML
248
+ Parameters: {"id"=>"1003261225"}
249
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
250
+ AREL (0.1ms) UPDATE "users" SET "active_at" = NULL, "updated_at" = '2011-03-14 09:35:03.051527' WHERE "users"."id" = 1003261225
251
+ Redirected to http://www.example.com/users
252
+ Completed 302 Found in 4ms
253
+
254
+
255
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
256
+ Processing by UsersController#index as HTML
257
+ User Load (0.2ms) SELECT "users".* FROM "users"
258
+ Rendered users/index.html.erb within layouts/application (3.2ms)
259
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.6ms)
260
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
261
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
262
+ AREL (0.1ms) INSERT INTO "users" ("name", "active_at", "created_at", "updated_at") VALUES ('The User', '2011-03-03 18:11:26.000000', '2011-03-14 09:35:02.000000', '2011-03-14 09:35:02.000000')
263
+
264
+
265
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
266
+ Processing by UsersController#index as HTML
267
+ User Load (0.2ms) SELECT "users".* FROM "users"
268
+ Rendered users/index.html.erb within layouts/application (3.8ms)
269
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.6ms)
270
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
271
+
272
+
273
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
274
+ Processing by UsersController#new as HTML
275
+ Rendered users/new.html.erb within layouts/application (8.1ms)
276
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.2ms)
277
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
278
+
279
+
280
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
281
+ Processing by UsersController#new as HTML
282
+ Rendered users/new.html.erb within layouts/application (8.3ms)
283
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.2ms)
284
+
285
+
286
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
287
+ Processing by UsersController#new as HTML
288
+ Rendered users/new.html.erb within layouts/application (8.3ms)
289
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
290
+
291
+
292
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
293
+ Processing by UsersController#index as HTML
294
+ User Load (0.2ms) SELECT "users".* FROM "users"
295
+ Rendered users/index.html.erb within layouts/application (3.3ms)
296
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
297
+
298
+
299
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
300
+ Processing by UsersController#index as HTML
301
+ User Load (0.2ms) SELECT "users".* FROM "users"
302
+ Rendered users/index.html.erb within layouts/application (3.2ms)
303
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
304
+
305
+
306
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
307
+ Processing by UsersController#index as HTML
308
+ User Load (0.2ms) SELECT "users".* FROM "users"
309
+ Rendered users/index.html.erb within layouts/application (3.2ms)
310
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
311
+
312
+
313
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
314
+ Processing by UsersController#index as HTML
315
+ User Load (0.2ms) SELECT "users".* FROM "users"
316
+ Rendered users/index.html.erb within layouts/application (3.2ms)
317
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
318
+
319
+
320
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
321
+ Processing by UsersController#index as HTML
322
+ User Load (0.2ms) SELECT "users".* FROM "users"
323
+ Rendered users/index.html.erb within layouts/application (3.3ms)
324
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
325
+
326
+
327
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
328
+ Processing by UsersController#new as HTML
329
+ Rendered users/new.html.erb within layouts/application (8.9ms)
330
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.0ms)
331
+
332
+
333
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
334
+ Processing by UsersController#new as HTML
335
+ Rendered users/new.html.erb within layouts/application (8.2ms)
336
+ Completed 200 OK in 10ms (Views: 9.0ms | ActiveRecord: 0.0ms)
337
+
338
+
339
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
340
+ Processing by UsersController#index as HTML
341
+ User Load (0.2ms) SELECT "users".* FROM "users"
342
+ Rendered users/index.html.erb within layouts/application (3.5ms)
343
+ Completed 200 OK in 6ms (Views: 4.3ms | ActiveRecord: 0.2ms)
344
+
345
+
346
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
347
+ Processing by UsersController#index as HTML
348
+ User Load (0.2ms) SELECT "users".* FROM "users"
349
+ Rendered users/index.html.erb within layouts/application (4.1ms)
350
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.2ms)
351
+
352
+
353
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
354
+ Processing by UsersController#index as HTML
355
+ User Load (0.2ms) SELECT "users".* FROM "users"
356
+ Rendered users/index.html.erb within layouts/application (3.1ms)
357
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
358
+
359
+
360
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
361
+ Processing by UsersController#index as HTML
362
+ User Load (0.2ms) SELECT "users".* FROM "users"
363
+ Rendered users/index.html.erb within layouts/application (3.1ms)
364
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
365
+
366
+
367
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
368
+ Processing by UsersController#new as HTML
369
+ Rendered users/new.html.erb within layouts/application (9.2ms)
370
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
371
+
372
+
373
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
374
+ Processing by UsersController#new as HTML
375
+ Rendered users/new.html.erb within layouts/application (8.2ms)
376
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
377
+
378
+
379
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
380
+ Processing by UsersController#index as HTML
381
+ User Load (0.2ms) SELECT "users".* FROM "users"
382
+ Rendered users/index.html.erb within layouts/application (3.3ms)
383
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
384
+
385
+
386
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
387
+ Processing by UsersController#index as HTML
388
+ User Load (0.2ms) SELECT "users".* FROM "users"
389
+ Rendered users/index.html.erb within layouts/application (3.2ms)
390
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
391
+
392
+
393
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
394
+ Processing by UsersController#new as HTML
395
+ Rendered users/new.html.erb within layouts/application (8.6ms)
396
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
397
+
398
+
399
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
400
+ Processing by UsersController#new as HTML
401
+ Rendered users/new.html.erb within layouts/application (8.6ms)
402
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
403
+
404
+
405
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
406
+ Processing by UsersController#index as HTML
407
+ User Load (0.2ms) SELECT "users".* FROM "users"
408
+ Rendered users/index.html.erb within layouts/application (3.3ms)
409
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
410
+
411
+
412
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
413
+ Processing by UsersController#index as HTML
414
+ User Load (0.2ms) SELECT "users".* FROM "users"
415
+ Rendered users/index.html.erb within layouts/application (3.2ms)
416
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
417
+
418
+
419
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
420
+ Processing by UsersController#new as HTML
421
+ Rendered users/new.html.erb within layouts/application (8.4ms)
422
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
423
+
424
+
425
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
426
+ Processing by UsersController#new as HTML
427
+ Rendered users/new.html.erb within layouts/application (8.5ms)
428
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
429
+
430
+
431
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
432
+ Processing by UsersController#index as HTML
433
+ User Load (0.2ms) SELECT "users".* FROM "users"
434
+ Rendered users/index.html.erb within layouts/application (3.2ms)
435
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
436
+
437
+
438
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
439
+ Processing by UsersController#index as HTML
440
+ User Load (0.2ms) SELECT "users".* FROM "users"
441
+ Rendered users/index.html.erb within layouts/application (3.2ms)
442
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
443
+
444
+
445
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
446
+ Processing by UsersController#new as HTML
447
+ Rendered users/new.html.erb within layouts/application (8.3ms)
448
+ Completed 200 OK in 10ms (Views: 10.1ms | ActiveRecord: 0.0ms)
449
+
450
+
451
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
452
+ Processing by UsersController#new as HTML
453
+ Rendered users/new.html.erb within layouts/application (11.2ms)
454
+ Completed 200 OK in 12ms (Views: 12.0ms | ActiveRecord: 0.0ms)
455
+
456
+
457
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
458
+ Processing by UsersController#index as HTML
459
+ User Load (0.2ms) SELECT "users".* FROM "users"
460
+ Rendered users/index.html.erb within layouts/application (3.2ms)
461
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
462
+
463
+
464
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
465
+ Processing by UsersController#index as HTML
466
+ User Load (0.2ms) SELECT "users".* FROM "users"
467
+ Rendered users/index.html.erb within layouts/application (3.1ms)
468
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.2ms)
469
+
470
+
471
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
472
+ Processing by UsersController#new as HTML
473
+ Rendered users/new.html.erb within layouts/application (8.7ms)
474
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
475
+
476
+
477
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
478
+ Processing by UsersController#new as HTML
479
+ Rendered users/new.html.erb within layouts/application (8.7ms)
480
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
481
+
482
+
483
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
484
+ Processing by UsersController#new as HTML
485
+ Rendered users/new.html.erb within layouts/application (8.1ms)
486
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
487
+
488
+
489
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
490
+ Processing by UsersController#new as HTML
491
+ Rendered users/new.html.erb within layouts/application (10.2ms)
492
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
493
+
494
+
495
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
496
+ Processing by UsersController#index as HTML
497
+ User Load (0.2ms) SELECT "users".* FROM "users"
498
+ Rendered users/index.html.erb within layouts/application (3.2ms)
499
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
500
+
501
+
502
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:35:03 +0100 2011
503
+ Processing by UsersController#index as HTML
504
+ User Load (0.2ms) SELECT "users".* FROM "users"
505
+ Rendered users/index.html.erb within layouts/application (3.0ms)
506
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
507
+ SQL (0.5ms)  SELECT name
508
+ FROM sqlite_master
509
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
510
+ 
511
+ SQL (0.1ms) select sqlite_version(*)
512
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
513
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
514
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
515
+ SQL (0.1ms) SELECT name
516
+ FROM sqlite_master
517
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
518
+ SQL (0.1ms)  SELECT name
519
+ FROM sqlite_master
520
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
521
+ 
522
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
523
+ Migrating to CreateUsers (20110228170406)
524
+ SQL (0.3ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "active_at" datetime, "created_at" datetime, "updated_at" datetime) 
525
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
526
+
527
+
528
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
529
+ Processing by UsersController#new as HTML
530
+ Rendered users/new.html.erb within layouts/application (17.5ms)
531
+ Completed 200 OK in 24ms (Views: 23.2ms | ActiveRecord: 1.7ms)
532
+
533
+
534
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
535
+ Processing by UsersController#new as HTML
536
+ Rendered users/new.html.erb within layouts/application (8.7ms)
537
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
538
+
539
+
540
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
541
+ Processing by UsersController#new as HTML
542
+ Rendered users/new.html.erb within layouts/application (8.4ms)
543
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
544
+
545
+
546
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
547
+ Processing by UsersController#new as HTML
548
+ Parameters: {"datetime"=>"true"}
549
+ Rendered users/new.html.erb within layouts/application (124.0ms)
550
+ Completed 200 OK in 125ms (Views: 124.8ms | ActiveRecord: 0.0ms)
551
+
552
+
553
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
554
+ Processing by UsersController#new as HTML
555
+ Parameters: {"datetime"=>"true"}
556
+ Rendered users/new.html.erb within layouts/application (8.5ms)
557
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
558
+
559
+
560
+ Started GET "/users/new?date=true" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
561
+ Processing by UsersController#new as HTML
562
+ Parameters: {"date"=>"true"}
563
+ Rendered users/new.html.erb within layouts/application (5.2ms)
564
+ Completed 200 OK in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
565
+
566
+
567
+ Started GET "/users/new?date=true" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
568
+ Processing by UsersController#new as HTML
569
+ Parameters: {"date"=>"true"}
570
+ Rendered users/new.html.erb within layouts/application (5.3ms)
571
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
572
+
573
+
574
+ Started GET "/users/new?time=true" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
575
+ Processing by UsersController#new as HTML
576
+ Parameters: {"time"=>"true"}
577
+ Rendered users/new.html.erb within layouts/application (6.1ms)
578
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
579
+
580
+
581
+ Started GET "/users/new?time=true" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
582
+ Processing by UsersController#new as HTML
583
+ Parameters: {"time"=>"true"}
584
+ Rendered users/new.html.erb within layouts/application (6.9ms)
585
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
586
+ SQL (0.2ms)  SELECT name
587
+ FROM sqlite_master
588
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
589
+ 
590
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
591
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'User A', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
592
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'User B', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
593
+
594
+
595
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
596
+ Processing by UsersController#index as HTML
597
+ User Load (0.2ms) SELECT "users".* FROM "users"
598
+ Rendered users/index.html.erb within layouts/application (5.0ms)
599
+ Completed 200 OK in 9ms (Views: 7.5ms | ActiveRecord: 0.9ms)
600
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
601
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'User A', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
602
+ AREL (1.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'User B', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
603
+
604
+
605
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
606
+ Processing by UsersController#index as HTML
607
+ User Load (0.2ms) SELECT "users".* FROM "users"
608
+ Rendered users/index.html.erb within layouts/application (4.6ms)
609
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 1.6ms)
610
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
611
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'User A', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
612
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'User B', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
613
+
614
+
615
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
616
+ Processing by UsersController#index as HTML
617
+ User Load (0.2ms) SELECT "users".* FROM "users"
618
+ Rendered users/index.html.erb within layouts/application (5.4ms)
619
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.6ms)
620
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
621
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
622
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'The Super User', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
623
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
624
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'The Super User', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
625
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
626
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
627
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
628
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.422065', 'Another user', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.422065')
629
+
630
+
631
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
632
+ Processing by UsersController#new as HTML
633
+ Rendered users/new.html.erb within layouts/application (8.7ms)
634
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 1.2ms)
635
+
636
+
637
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
638
+ Processing by UsersController#new as HTML
639
+ Rendered users/new.html.erb within layouts/application (8.4ms)
640
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
641
+
642
+
643
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
644
+ Processing by UsersController#new as HTML
645
+ Rendered users/new.html.erb within layouts/application (8.5ms)
646
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
647
+
648
+
649
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
650
+ Processing by UsersController#new as HTML
651
+ Rendered users/new.html.erb within layouts/application (8.4ms)
652
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
653
+
654
+
655
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
656
+ Processing by UsersController#index as HTML
657
+ User Load (0.2ms) SELECT "users".* FROM "users"
658
+ Rendered users/index.html.erb within layouts/application (3.1ms)
659
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
660
+
661
+
662
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
663
+ Processing by UsersController#index as HTML
664
+ User Load (0.2ms) SELECT "users".* FROM "users"
665
+ Rendered users/index.html.erb within layouts/application (3.1ms)
666
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
667
+
668
+
669
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
670
+ Processing by UsersController#index as HTML
671
+ User Load (0.2ms) SELECT "users".* FROM "users"
672
+ Rendered users/index.html.erb within layouts/application (3.0ms)
673
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
674
+
675
+
676
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
677
+ Processing by UsersController#index as HTML
678
+ User Load (0.2ms) SELECT "users".* FROM "users"
679
+ Rendered users/index.html.erb within layouts/application (3.6ms)
680
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
681
+
682
+
683
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
684
+ Processing by UsersController#index as HTML
685
+ User Load (0.2ms) SELECT "users".* FROM "users"
686
+ Rendered users/index.html.erb within layouts/application (3.4ms)
687
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
688
+
689
+
690
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
691
+ Processing by UsersController#index as HTML
692
+ User Load (0.2ms) SELECT "users".* FROM "users"
693
+ Rendered users/index.html.erb within layouts/application (3.0ms)
694
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
695
+
696
+
697
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
698
+ Processing by UsersController#new as HTML
699
+ Rendered users/new.html.erb within layouts/application (10.3ms)
700
+ Completed 200 OK in 11ms (Views: 11.1ms | ActiveRecord: 0.0ms)
701
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
702
+
703
+
704
+ Started POST "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
705
+ Processing by UsersController#create as HTML
706
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"3", "active_at(3i)"=>"14", "active_at(4i)"=>"09", "active_at(5i)"=>"36"}}
707
+ AREL (0.2ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.691642', 'User', '2011-03-14 09:36:00.000000', '2011-03-14 09:36:12.691642')
708
+ Redirected to http://www.example.com/users
709
+ Completed 302 Found in 3ms
710
+
711
+
712
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
713
+ Processing by UsersController#index as HTML
714
+ User Load (0.2ms) SELECT "users".* FROM "users"
715
+ Rendered users/index.html.erb within layouts/application (4.7ms)
716
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.5ms)
717
+ SQL (0.2ms) SELECT COUNT(*) FROM "users"
718
+
719
+
720
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
721
+ Processing by UsersController#new as HTML
722
+ Rendered users/new.html.erb within layouts/application (9.7ms)
723
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.2ms)
724
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
725
+
726
+
727
+ Started POST "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
728
+ Processing by UsersController#create as HTML
729
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"3", "active_at(3i)"=>"14", "active_at(4i)"=>"09", "active_at(5i)"=>"36"}}
730
+ Redirected to http://www.example.com/users
731
+ Completed 302 Found in 3ms
732
+
733
+
734
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
735
+ Processing by UsersController#index as HTML
736
+ User Load (0.2ms) SELECT "users".* FROM "users"
737
+ Rendered users/index.html.erb within layouts/application (3.4ms)
738
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)
739
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
740
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
741
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'The Super User', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
742
+
743
+
744
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
745
+ Processing by UsersController#index as HTML
746
+ User Load (0.2ms) SELECT "users".* FROM "users"
747
+ Rendered users/index.html.erb within layouts/application (4.7ms)
748
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.6ms)
749
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
750
+
751
+
752
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
753
+ Processing by UsersController#block as HTML
754
+ Parameters: {"id"=>"1003261225"}
755
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
756
+ AREL (0.1ms) UPDATE "users" SET "updated_at" = '2011-03-14 09:36:12.762284', "active_at" = NULL WHERE "users"."id" = 1003261225
757
+ Redirected to http://www.example.com/users
758
+ Completed 302 Found in 4ms
759
+
760
+
761
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
762
+ Processing by UsersController#index as HTML
763
+ User Load (0.2ms) SELECT "users".* FROM "users"
764
+ Rendered users/index.html.erb within layouts/application (3.1ms)
765
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.6ms)
766
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
767
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
768
+ AREL (0.1ms) INSERT INTO "users" ("updated_at", "name", "active_at", "created_at") VALUES ('2011-03-14 09:36:12.000000', 'The Super User', '2011-03-03 18:11:26.000000', '2011-03-14 09:36:12.000000')
769
+
770
+
771
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
772
+ Processing by UsersController#index as HTML
773
+ User Load (0.2ms) SELECT "users".* FROM "users"
774
+ Rendered users/index.html.erb within layouts/application (3.6ms)
775
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.6ms)
776
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
777
+
778
+
779
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
780
+ Processing by UsersController#new as HTML
781
+ Rendered users/new.html.erb within layouts/application (8.0ms)
782
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.2ms)
783
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
784
+
785
+
786
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
787
+ Processing by UsersController#new as HTML
788
+ Rendered users/new.html.erb within layouts/application (8.2ms)
789
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.2ms)
790
+
791
+
792
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
793
+ Processing by UsersController#new as HTML
794
+ Rendered users/new.html.erb within layouts/application (8.0ms)
795
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
796
+
797
+
798
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
799
+ Processing by UsersController#index as HTML
800
+ User Load (0.2ms) SELECT "users".* FROM "users"
801
+ Rendered users/index.html.erb within layouts/application (3.2ms)
802
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
803
+
804
+
805
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
806
+ Processing by UsersController#index as HTML
807
+ User Load (0.2ms) SELECT "users".* FROM "users"
808
+ Rendered users/index.html.erb within layouts/application (3.2ms)
809
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
810
+
811
+
812
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
813
+ Processing by UsersController#index as HTML
814
+ User Load (0.2ms) SELECT "users".* FROM "users"
815
+ Rendered users/index.html.erb within layouts/application (3.2ms)
816
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
817
+
818
+
819
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
820
+ Processing by UsersController#index as HTML
821
+ User Load (0.2ms) SELECT "users".* FROM "users"
822
+ Rendered users/index.html.erb within layouts/application (3.1ms)
823
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
824
+
825
+
826
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:12 +0100 2011
827
+ Processing by UsersController#index as HTML
828
+ User Load (0.2ms) SELECT "users".* FROM "users"
829
+ Rendered users/index.html.erb within layouts/application (3.4ms)
830
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
831
+
832
+
833
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
834
+ Processing by UsersController#new as HTML
835
+ Rendered users/new.html.erb within layouts/application (9.1ms)
836
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
837
+
838
+
839
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
840
+ Processing by UsersController#new as HTML
841
+ Rendered users/new.html.erb within layouts/application (8.1ms)
842
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
843
+
844
+
845
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
846
+ Processing by UsersController#index as HTML
847
+ User Load (0.2ms) SELECT "users".* FROM "users"
848
+ Rendered users/index.html.erb within layouts/application (3.0ms)
849
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
850
+
851
+
852
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
853
+ Processing by UsersController#index as HTML
854
+ User Load (0.2ms) SELECT "users".* FROM "users"
855
+ Rendered users/index.html.erb within layouts/application (4.1ms)
856
+ Completed 200 OK in 6ms (Views: 4.8ms | ActiveRecord: 0.2ms)
857
+
858
+
859
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
860
+ Processing by UsersController#index as HTML
861
+ User Load (0.2ms) SELECT "users".* FROM "users"
862
+ Rendered users/index.html.erb within layouts/application (3.1ms)
863
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
864
+
865
+
866
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
867
+ Processing by UsersController#index as HTML
868
+ User Load (1.1ms) SELECT "users".* FROM "users"
869
+ Rendered users/index.html.erb within layouts/application (3.1ms)
870
+ Completed 200 OK in 6ms (Views: 3.8ms | ActiveRecord: 1.1ms)
871
+
872
+
873
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
874
+ Processing by UsersController#new as HTML
875
+ Rendered users/new.html.erb within layouts/application (8.3ms)
876
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
877
+
878
+
879
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
880
+ Processing by UsersController#new as HTML
881
+ Rendered users/new.html.erb within layouts/application (8.2ms)
882
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
883
+
884
+
885
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
886
+ Processing by UsersController#index as HTML
887
+ User Load (0.2ms) SELECT "users".* FROM "users"
888
+ Rendered users/index.html.erb within layouts/application (3.1ms)
889
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
890
+
891
+
892
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
893
+ Processing by UsersController#index as HTML
894
+ User Load (0.2ms) SELECT "users".* FROM "users"
895
+ Rendered users/index.html.erb within layouts/application (3.2ms)
896
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
897
+
898
+
899
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
900
+ Processing by UsersController#new as HTML
901
+ Rendered users/new.html.erb within layouts/application (8.5ms)
902
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
903
+
904
+
905
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
906
+ Processing by UsersController#new as HTML
907
+ Rendered users/new.html.erb within layouts/application (8.5ms)
908
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
909
+
910
+
911
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
912
+ Processing by UsersController#index as HTML
913
+ User Load (0.2ms) SELECT "users".* FROM "users"
914
+ Rendered users/index.html.erb within layouts/application (3.7ms)
915
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.2ms)
916
+
917
+
918
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
919
+ Processing by UsersController#index as HTML
920
+ User Load (0.2ms) SELECT "users".* FROM "users"
921
+ Rendered users/index.html.erb within layouts/application (3.5ms)
922
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
923
+
924
+
925
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
926
+ Processing by UsersController#new as HTML
927
+ Rendered users/new.html.erb within layouts/application (8.6ms)
928
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
929
+
930
+
931
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
932
+ Processing by UsersController#new as HTML
933
+ Rendered users/new.html.erb within layouts/application (8.9ms)
934
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
935
+
936
+
937
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
938
+ Processing by UsersController#index as HTML
939
+ User Load (0.2ms) SELECT "users".* FROM "users"
940
+ Rendered users/index.html.erb within layouts/application (3.2ms)
941
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
942
+
943
+
944
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
945
+ Processing by UsersController#index as HTML
946
+ User Load (0.2ms) SELECT "users".* FROM "users"
947
+ Rendered users/index.html.erb within layouts/application (3.2ms)
948
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
949
+
950
+
951
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
952
+ Processing by UsersController#new as HTML
953
+ Rendered users/new.html.erb within layouts/application (9.2ms)
954
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
955
+
956
+
957
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
958
+ Processing by UsersController#new as HTML
959
+ Rendered users/new.html.erb within layouts/application (9.9ms)
960
+ Completed 200 OK in 11ms (Views: 10.7ms | ActiveRecord: 0.0ms)
961
+
962
+
963
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
964
+ Processing by UsersController#index as HTML
965
+ User Load (0.2ms) SELECT "users".* FROM "users"
966
+ Rendered users/index.html.erb within layouts/application (3.1ms)
967
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
968
+
969
+
970
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
971
+ Processing by UsersController#index as HTML
972
+ User Load (0.2ms) SELECT "users".* FROM "users"
973
+ Rendered users/index.html.erb within layouts/application (3.1ms)
974
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
975
+
976
+
977
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
978
+ Processing by UsersController#new as HTML
979
+ Rendered users/new.html.erb within layouts/application (9.8ms)
980
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.0ms)
981
+
982
+
983
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
984
+ Processing by UsersController#new as HTML
985
+ Rendered users/new.html.erb within layouts/application (8.7ms)
986
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
987
+
988
+
989
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
990
+ Processing by UsersController#new as HTML
991
+ Rendered users/new.html.erb within layouts/application (8.0ms)
992
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
993
+
994
+
995
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
996
+ Processing by UsersController#new as HTML
997
+ Rendered users/new.html.erb within layouts/application (8.0ms)
998
+ Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
999
+
1000
+
1001
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
1002
+ Processing by UsersController#index as HTML
1003
+ User Load (0.2ms) SELECT "users".* FROM "users"
1004
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1005
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1006
+
1007
+
1008
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:36:13 +0100 2011
1009
+ Processing by UsersController#index as HTML
1010
+ User Load (0.2ms) SELECT "users".* FROM "users"
1011
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1012
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1013
+ SQL (0.5ms)  SELECT name
1014
+ FROM sqlite_master
1015
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1016
+ 
1017
+ SQL (0.1ms) select sqlite_version(*)
1018
+ SQL (0.3ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1019
+ SQL (0.0ms) PRAGMA index_list("schema_migrations")
1020
+ SQL (0.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1021
+ SQL (0.1ms) SELECT name
1022
+ FROM sqlite_master
1023
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1024
+ SQL (0.1ms)  SELECT name
1025
+ FROM sqlite_master
1026
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1027
+ 
1028
+ SQL (0.1ms) SELECT "schema_migrations"."version" FROM "schema_migrations"
1029
+ Migrating to CreateUsers (20110228170406)
1030
+ 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) 
1031
+ SQL (0.1ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110228170406')
1032
+
1033
+
1034
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:39 +0100 2011
1035
+ Processing by UsersController#new as HTML
1036
+ Rendered users/new.html.erb within layouts/application (18.1ms)
1037
+ Completed 200 OK in 24ms (Views: 23.8ms | ActiveRecord: 1.7ms)
1038
+
1039
+
1040
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:39 +0100 2011
1041
+ Processing by UsersController#new as HTML
1042
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1043
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1044
+
1045
+
1046
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:39 +0100 2011
1047
+ Processing by UsersController#new as HTML
1048
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1049
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1050
+
1051
+
1052
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Mon Mar 14 10:38:39 +0100 2011
1053
+ Processing by UsersController#new as HTML
1054
+ Parameters: {"datetime"=>"true"}
1055
+ Rendered users/new.html.erb within layouts/application (122.3ms)
1056
+ Completed 200 OK in 123ms (Views: 123.1ms | ActiveRecord: 0.0ms)
1057
+
1058
+
1059
+ Started GET "/users/new?datetime=true" for 127.0.0.1 at Mon Mar 14 10:38:39 +0100 2011
1060
+ Processing by UsersController#new as HTML
1061
+ Parameters: {"datetime"=>"true"}
1062
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1063
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1064
+
1065
+
1066
+ Started GET "/users/new?date=true" for 127.0.0.1 at Mon Mar 14 10:38:39 +0100 2011
1067
+ Processing by UsersController#new as HTML
1068
+ Parameters: {"date"=>"true"}
1069
+ Rendered users/new.html.erb within layouts/application (5.4ms)
1070
+ Completed 200 OK in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
1071
+
1072
+
1073
+ Started GET "/users/new?date=true" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1074
+ Processing by UsersController#new as HTML
1075
+ Parameters: {"date"=>"true"}
1076
+ Rendered users/new.html.erb within layouts/application (5.2ms)
1077
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
1078
+
1079
+
1080
+ Started GET "/users/new?time=true" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1081
+ Processing by UsersController#new as HTML
1082
+ Parameters: {"time"=>"true"}
1083
+ Rendered users/new.html.erb within layouts/application (6.2ms)
1084
+ Completed 200 OK in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
1085
+
1086
+
1087
+ Started GET "/users/new?time=true" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1088
+ Processing by UsersController#new as HTML
1089
+ Parameters: {"time"=>"true"}
1090
+ Rendered users/new.html.erb within layouts/application (6.4ms)
1091
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
1092
+ SQL (0.2ms)  SELECT name
1093
+ FROM sqlite_master
1094
+ WHERE type = 'table' AND NOT name = 'sqlite_sequence'
1095
+ 
1096
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1097
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 1, 'User A', '2011-03-03 18:11:26.000000')
1098
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 2, 'User B', '2011-03-03 18:11:26.000000')
1099
+
1100
+
1101
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1102
+ Processing by UsersController#index as HTML
1103
+ User Load (0.2ms) SELECT "users".* FROM "users"
1104
+ Rendered users/index.html.erb within layouts/application (5.4ms)
1105
+ Completed 200 OK in 9ms (Views: 7.7ms | ActiveRecord: 1.0ms)
1106
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1107
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 3, 'User A', '2011-03-03 18:11:26.000000')
1108
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 4, 'User B', '2011-03-03 18:11:26.000000')
1109
+
1110
+
1111
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1112
+ Processing by UsersController#index as HTML
1113
+ User Load (0.3ms) SELECT "users".* FROM "users"
1114
+ Rendered users/index.html.erb within layouts/application (4.6ms)
1115
+ Completed 200 OK in 6ms (Views: 5.4ms | ActiveRecord: 0.6ms)
1116
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1117
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 5, 'User A', '2011-03-03 18:11:26.000000')
1118
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 6, 'User B', '2011-03-03 18:11:26.000000')
1119
+
1120
+
1121
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1122
+ Processing by UsersController#index as HTML
1123
+ User Load (0.2ms) SELECT "users".* FROM "users"
1124
+ Rendered users/index.html.erb within layouts/application (4.5ms)
1125
+ Completed 200 OK in 7ms (Views: 6.2ms | ActiveRecord: 0.6ms)
1126
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1127
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1128
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1129
+ AREL (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 10, 'The Super User', '2011-03-03 18:11:26.000000')
1130
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1131
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 11, 'The Super User', '2011-03-03 18:11:26.000000')
1132
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1133
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1134
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1135
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.151817', '2011-03-14 09:38:40.151817', NULL, 'Another user', '2011-03-03 18:11:26.000000')
1136
+
1137
+
1138
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1139
+ Processing by UsersController#new as HTML
1140
+ Rendered users/new.html.erb within layouts/application (8.7ms)
1141
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 1.4ms)
1142
+
1143
+
1144
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1145
+ Processing by UsersController#new as HTML
1146
+ Rendered users/new.html.erb within layouts/application (8.3ms)
1147
+ Completed 200 OK in 9ms (Views: 9.0ms | ActiveRecord: 0.0ms)
1148
+
1149
+
1150
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1151
+ Processing by UsersController#new as HTML
1152
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1153
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1154
+
1155
+
1156
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1157
+ Processing by UsersController#new as HTML
1158
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1159
+ Completed 200 OK in 10ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1160
+
1161
+
1162
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1163
+ Processing by UsersController#index as HTML
1164
+ User Load (0.2ms) SELECT "users".* FROM "users"
1165
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1166
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1167
+
1168
+
1169
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1170
+ Processing by UsersController#index as HTML
1171
+ User Load (0.2ms) SELECT "users".* FROM "users"
1172
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1173
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1174
+
1175
+
1176
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1177
+ Processing by UsersController#index as HTML
1178
+ User Load (0.2ms) SELECT "users".* FROM "users"
1179
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1180
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1181
+
1182
+
1183
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1184
+ Processing by UsersController#index as HTML
1185
+ User Load (0.2ms) SELECT "users".* FROM "users"
1186
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1187
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1188
+
1189
+
1190
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1191
+ Processing by UsersController#index as HTML
1192
+ User Load (0.2ms) SELECT "users".* FROM "users"
1193
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1194
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1195
+
1196
+
1197
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1198
+ Processing by UsersController#index as HTML
1199
+ User Load (0.2ms) SELECT "users".* FROM "users"
1200
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1201
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.2ms)
1202
+
1203
+
1204
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1205
+ Processing by UsersController#new as HTML
1206
+ Rendered users/new.html.erb within layouts/application (9.5ms)
1207
+ Completed 200 OK in 11ms (Views: 10.4ms | ActiveRecord: 0.0ms)
1208
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1209
+
1210
+
1211
+ Started POST "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1212
+ Processing by UsersController#create as HTML
1213
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"User", "active_at(1i)"=>"2011", "active_at(2i)"=>"3", "active_at(3i)"=>"14", "active_at(4i)"=>"09", "active_at(5i)"=>"38"}}
1214
+ AREL (0.2ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.418536', '2011-03-14 09:38:40.418536', NULL, 'User', '2011-03-14 09:38:00.000000')
1215
+ Redirected to http://www.example.com/users
1216
+ Completed 302 Found in 4ms
1217
+
1218
+
1219
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1220
+ Processing by UsersController#index as HTML
1221
+ User Load (0.2ms) SELECT "users".* FROM "users"
1222
+ Rendered users/index.html.erb within layouts/application (3.7ms)
1223
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.5ms)
1224
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1225
+
1226
+
1227
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1228
+ Processing by UsersController#new as HTML
1229
+ Rendered users/new.html.erb within layouts/application (9.6ms)
1230
+ Completed 200 OK in 11ms (Views: 10.3ms | ActiveRecord: 0.1ms)
1231
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1232
+
1233
+
1234
+ Started POST "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1235
+ Processing by UsersController#create as HTML
1236
+ Parameters: {"utf8"=>"\342\234\223", "123"=>"value1", "user"=>{"name"=>"", "active_at(1i)"=>"2011", "active_at(2i)"=>"3", "active_at(3i)"=>"14", "active_at(4i)"=>"09", "active_at(5i)"=>"38"}}
1237
+ Redirected to http://www.example.com/users
1238
+ Completed 302 Found in 3ms
1239
+
1240
+
1241
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1242
+ Processing by UsersController#index as HTML
1243
+ User Load (0.2ms) SELECT "users".* FROM "users"
1244
+ Rendered users/index.html.erb within layouts/application (3.0ms)
1245
+ Completed 200 OK in 5ms (Views: 3.7ms | ActiveRecord: 0.3ms)
1246
+ SQL (0.1ms) SELECT COUNT(*) FROM "users"
1247
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1248
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 15, 'The Super User', '2011-03-03 18:11:26.000000')
1249
+
1250
+
1251
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1252
+ Processing by UsersController#index as HTML
1253
+ User Load (0.3ms) SELECT "users".* FROM "users"
1254
+ Rendered users/index.html.erb within layouts/application (4.0ms)
1255
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.6ms)
1256
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1257
+
1258
+
1259
+ Started GET "/users/1003261225/block" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1260
+ Processing by UsersController#block as HTML
1261
+ Parameters: {"id"=>"1003261225"}
1262
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1263
+ AREL (0.1ms) UPDATE "users" SET "updated_at" = '2011-03-14 09:38:40.488953', "active_at" = NULL WHERE "users"."id" = 1003261225
1264
+ Redirected to http://www.example.com/users
1265
+ Completed 302 Found in 4ms
1266
+
1267
+
1268
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1269
+ Processing by UsersController#index as HTML
1270
+ User Load (0.2ms) SELECT "users".* FROM "users"
1271
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1272
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.7ms)
1273
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1274
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = 1003261225 LIMIT 1
1275
+ AREL (0.1ms) INSERT INTO "users" ("created_at", "updated_at", "counter", "name", "active_at") VALUES ('2011-03-14 09:38:40.000000', '2011-03-14 09:38:40.000000', 16, 'The Super User', '2011-03-03 18:11:26.000000')
1276
+
1277
+
1278
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1279
+ Processing by UsersController#index as HTML
1280
+ User Load (0.2ms) SELECT "users".* FROM "users"
1281
+ Rendered users/index.html.erb within layouts/application (3.7ms)
1282
+ Completed 200 OK in 6ms (Views: 4.9ms | ActiveRecord: 0.6ms)
1283
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1284
+
1285
+
1286
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1287
+ Processing by UsersController#new as HTML
1288
+ Rendered users/new.html.erb within layouts/application (8.6ms)
1289
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.2ms)
1290
+ SQL (0.2ms) SELECT COUNT(*) FROM "users" WHERE "users"."active_at" IS NULL
1291
+
1292
+
1293
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1294
+ Processing by UsersController#new as HTML
1295
+ Rendered users/new.html.erb within layouts/application (8.8ms)
1296
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.2ms)
1297
+
1298
+
1299
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1300
+ Processing by UsersController#new as HTML
1301
+ Rendered users/new.html.erb within layouts/application (8.2ms)
1302
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1303
+
1304
+
1305
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1306
+ Processing by UsersController#index as HTML
1307
+ User Load (0.2ms) SELECT "users".* FROM "users"
1308
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1309
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1310
+
1311
+
1312
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1313
+ Processing by UsersController#index as HTML
1314
+ User Load (0.2ms) SELECT "users".* FROM "users"
1315
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1316
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1317
+
1318
+
1319
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1320
+ Processing by UsersController#index as HTML
1321
+ User Load (0.2ms) SELECT "users".* FROM "users"
1322
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1323
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1324
+
1325
+
1326
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1327
+ Processing by UsersController#index as HTML
1328
+ User Load (0.2ms) SELECT "users".* FROM "users"
1329
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1330
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1331
+
1332
+
1333
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1334
+ Processing by UsersController#index as HTML
1335
+ User Load (0.2ms) SELECT "users".* FROM "users"
1336
+ Rendered users/index.html.erb within layouts/application (3.3ms)
1337
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.2ms)
1338
+
1339
+
1340
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1341
+ Processing by UsersController#new as HTML
1342
+ Rendered users/new.html.erb within layouts/application (10.2ms)
1343
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1344
+
1345
+
1346
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1347
+ Processing by UsersController#new as HTML
1348
+ Rendered users/new.html.erb within layouts/application (8.2ms)
1349
+ Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
1350
+
1351
+
1352
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1353
+ Processing by UsersController#index as HTML
1354
+ User Load (0.8ms) SELECT "users".* FROM "users"
1355
+ Rendered users/index.html.erb within layouts/application (3.3ms)
1356
+ Completed 200 OK in 6ms (Views: 4.2ms | ActiveRecord: 0.8ms)
1357
+
1358
+
1359
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1360
+ Processing by UsersController#index as HTML
1361
+ User Load (0.2ms) SELECT "users".* FROM "users"
1362
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1363
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1364
+
1365
+
1366
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1367
+ Processing by UsersController#index as HTML
1368
+ User Load (0.2ms) SELECT "users".* FROM "users"
1369
+ Rendered users/index.html.erb within layouts/application (4.0ms)
1370
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
1371
+
1372
+
1373
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1374
+ Processing by UsersController#index as HTML
1375
+ User Load (0.2ms) SELECT "users".* FROM "users"
1376
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1377
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1378
+
1379
+
1380
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1381
+ Processing by UsersController#new as HTML
1382
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1383
+ Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
1384
+
1385
+
1386
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1387
+ Processing by UsersController#new as HTML
1388
+ Rendered users/new.html.erb within layouts/application (8.4ms)
1389
+ Completed 200 OK in 9ms (Views: 9.2ms | ActiveRecord: 0.0ms)
1390
+
1391
+
1392
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:40 +0100 2011
1393
+ Processing by UsersController#index as HTML
1394
+ User Load (0.2ms) SELECT "users".* FROM "users"
1395
+ Rendered users/index.html.erb within layouts/application (122.1ms)
1396
+ Completed 200 OK in 124ms (Views: 123.2ms | ActiveRecord: 0.2ms)
1397
+
1398
+
1399
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1400
+ Processing by UsersController#index as HTML
1401
+ User Load (0.2ms) SELECT "users".* FROM "users"
1402
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1403
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1404
+
1405
+
1406
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1407
+ Processing by UsersController#new as HTML
1408
+ Rendered users/new.html.erb within layouts/application (8.5ms)
1409
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1410
+
1411
+
1412
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1413
+ Processing by UsersController#new as HTML
1414
+ Rendered users/new.html.erb within layouts/application (8.7ms)
1415
+ Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
1416
+
1417
+
1418
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1419
+ Processing by UsersController#index as HTML
1420
+ User Load (0.2ms) SELECT "users".* FROM "users"
1421
+ Rendered users/index.html.erb within layouts/application (3.5ms)
1422
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.2ms)
1423
+
1424
+
1425
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1426
+ Processing by UsersController#index as HTML
1427
+ User Load (0.2ms) SELECT "users".* FROM "users"
1428
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1429
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1430
+
1431
+
1432
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1433
+ Processing by UsersController#new as HTML
1434
+ Rendered users/new.html.erb within layouts/application (8.6ms)
1435
+ Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
1436
+
1437
+
1438
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1439
+ Processing by UsersController#new as HTML
1440
+ Rendered users/new.html.erb within layouts/application (9.0ms)
1441
+ Completed 200 OK in 10ms (Views: 9.8ms | ActiveRecord: 0.0ms)
1442
+
1443
+
1444
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1445
+ Processing by UsersController#index as HTML
1446
+ User Load (0.2ms) SELECT "users".* FROM "users"
1447
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1448
+ Completed 200 OK in 5ms (Views: 4.0ms | ActiveRecord: 0.2ms)
1449
+
1450
+
1451
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1452
+ Processing by UsersController#index as HTML
1453
+ User Load (0.2ms) SELECT "users".* FROM "users"
1454
+ Rendered users/index.html.erb within layouts/application (3.2ms)
1455
+ Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.2ms)
1456
+
1457
+
1458
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1459
+ Processing by UsersController#new as HTML
1460
+ Rendered users/new.html.erb within layouts/application (8.1ms)
1461
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1462
+
1463
+
1464
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1465
+ Processing by UsersController#new as HTML
1466
+ Rendered users/new.html.erb within layouts/application (10.3ms)
1467
+ Completed 200 OK in 11ms (Views: 11.0ms | ActiveRecord: 0.0ms)
1468
+
1469
+
1470
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1471
+ Processing by UsersController#index as HTML
1472
+ User Load (0.2ms) SELECT "users".* FROM "users"
1473
+ Rendered users/index.html.erb within layouts/application (3.1ms)
1474
+ Completed 200 OK in 5ms (Views: 3.8ms | ActiveRecord: 0.2ms)
1475
+
1476
+
1477
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1478
+ Processing by UsersController#index as HTML
1479
+ User Load (0.2ms) SELECT "users".* FROM "users"
1480
+ Rendered users/index.html.erb within layouts/application (4.0ms)
1481
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.2ms)
1482
+
1483
+
1484
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1485
+ Processing by UsersController#new as HTML
1486
+ Rendered users/new.html.erb within layouts/application (9.1ms)
1487
+ Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
1488
+
1489
+
1490
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1491
+ Processing by UsersController#new as HTML
1492
+ Rendered users/new.html.erb within layouts/application (9.2ms)
1493
+ Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
1494
+
1495
+
1496
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1497
+ Processing by UsersController#new as HTML
1498
+ Rendered users/new.html.erb within layouts/application (8.7ms)
1499
+ Completed 200 OK in 10ms (Views: 9.4ms | ActiveRecord: 0.0ms)
1500
+
1501
+
1502
+ Started GET "/users/new" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1503
+ Processing by UsersController#new as HTML
1504
+ Rendered users/new.html.erb within layouts/application (8.0ms)
1505
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.0ms)
1506
+
1507
+
1508
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1509
+ Processing by UsersController#index as HTML
1510
+ User Load (0.2ms) SELECT "users".* FROM "users"
1511
+ Rendered users/index.html.erb within layouts/application (3.6ms)
1512
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.2ms)
1513
+
1514
+
1515
+ Started GET "/users" for 127.0.0.1 at Mon Mar 14 10:38:41 +0100 2011
1516
+ Processing by UsersController#index as HTML
1517
+ User Load (0.2ms) SELECT "users".* FROM "users"
1518
+ Rendered users/index.html.erb within layouts/application (126.1ms)
1519
+ Completed 200 OK in 128ms (Views: 126.9ms | ActiveRecord: 0.2ms)