serializer 0.0.3 → 0.0.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (56) hide show
  1. data/Rakefile +23 -0
  2. data/lib/serializer.rb +4 -4
  3. data/lib/serializer/version.rb +1 -1
  4. data/test/dummy/Rakefile +7 -0
  5. data/test/dummy/app/assets/javascripts/application.js +3 -0
  6. data/test/dummy/app/assets/javascripts/main.js +0 -0
  7. data/test/dummy/app/assets/javascripts/users.js +0 -0
  8. data/test/dummy/app/assets/stylesheets/application.css +16 -0
  9. data/test/dummy/app/assets/stylesheets/main.css +4 -0
  10. data/test/dummy/app/assets/stylesheets/scaffold.css +56 -0
  11. data/test/dummy/app/assets/stylesheets/users.css +4 -0
  12. data/test/dummy/app/controllers/application_controller.rb +3 -0
  13. data/test/dummy/app/controllers/main_controller.rb +10 -0
  14. data/test/dummy/app/controllers/users_controller.rb +57 -0
  15. data/test/dummy/app/helpers/application_helper.rb +2 -0
  16. data/test/dummy/app/helpers/main_helper.rb +2 -0
  17. data/test/dummy/app/helpers/users_helper.rb +2 -0
  18. data/test/dummy/app/models/user.rb +8 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  20. data/test/dummy/app/views/main/index.html.erb +5 -0
  21. data/test/dummy/app/views/users/_form.html.erb +36 -0
  22. data/test/dummy/app/views/users/edit.html.erb +6 -0
  23. data/test/dummy/app/views/users/index.html.erb +25 -0
  24. data/test/dummy/app/views/users/new.html.erb +5 -0
  25. data/test/dummy/app/views/users/show.html.erb +24 -0
  26. data/test/dummy/config.ru +4 -0
  27. data/test/dummy/config/application.rb +45 -0
  28. data/test/dummy/config/boot.rb +10 -0
  29. data/test/dummy/config/database.yml +17 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +30 -0
  32. data/test/dummy/config/environments/production.rb +60 -0
  33. data/test/dummy/config/environments/test.rb +39 -0
  34. data/test/dummy/config/initializers/other.rb +2 -0
  35. data/test/dummy/config/locales/en.yml +1 -0
  36. data/test/dummy/config/routes.rb +7 -0
  37. data/test/dummy/db/development.sqlite3 +0 -0
  38. data/test/dummy/db/migrate/20110927222742_create_users.rb +11 -0
  39. data/test/dummy/db/schema.rb +24 -0
  40. data/test/dummy/db/test.sqlite3 +0 -0
  41. data/test/dummy/log/development.log +24 -0
  42. data/test/dummy/log/test.log +825 -0
  43. data/test/dummy/public/favicon.ico +0 -0
  44. data/test/dummy/script/rails +6 -0
  45. data/test/dummy/test/fixtures/users.yml +11 -0
  46. data/test/dummy/test/functional/main_controller_test.rb +10 -0
  47. data/test/dummy/test/functional/users_controller_test.rb +52 -0
  48. data/test/dummy/test/integration/user_create_test.rb +17 -0
  49. data/test/dummy/test/integration/user_update_test.rb +17 -0
  50. data/test/dummy/test/unit/helpers/main_helper_test.rb +4 -0
  51. data/test/dummy/test/unit/helpers/users_helper_test.rb +4 -0
  52. data/test/dummy/test/unit/user_test.rb +55 -0
  53. data/test/serializer_test.rb +7 -0
  54. data/test/test_helper.rb +8 -0
  55. metadata +135 -6
  56. data/Gemfile +0 -3
@@ -0,0 +1,10 @@
1
+ require 'rubygems'
2
+ gemfile = File.expand_path('../../../../Gemfile', __FILE__)
3
+
4
+ if File.exist?(gemfile)
5
+ ENV['BUNDLE_GEMFILE'] = gemfile
6
+ require 'bundler'
7
+ Bundler.setup
8
+ end
9
+
10
+ $:.unshift File.expand_path('../../../../lib', __FILE__)
@@ -0,0 +1,17 @@
1
+ development:
2
+ adapter: sqlite3
3
+ database: db/development.sqlite3
4
+ pool: 5
5
+ timeout: 5000
6
+
7
+ test:
8
+ adapter: sqlite3
9
+ database: db/test.sqlite3
10
+ pool: 5
11
+ timeout: 5000
12
+
13
+ production:
14
+ adapter: sqlite3
15
+ database: db/production.sqlite3
16
+ pool: 5
17
+ timeout: 5000
@@ -0,0 +1,5 @@
1
+ # Load the rails application
2
+ require File.expand_path('../application', __FILE__)
3
+
4
+ # Initialize the rails application
5
+ Dummy::Application.initialize!
@@ -0,0 +1,30 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # In the development environment your application's code is reloaded on
5
+ # every request. This slows down response time but is perfect for development
6
+ # since you don't have to restart the web server when you make code changes.
7
+ config.cache_classes = false
8
+
9
+ # Log error messages when you accidentally call methods on nil.
10
+ config.whiny_nils = true
11
+
12
+ # Show full error reports and disable caching
13
+ config.consider_all_requests_local = true
14
+ config.action_controller.perform_caching = false
15
+
16
+ # Don't care if the mailer can't send
17
+ config.action_mailer.raise_delivery_errors = false
18
+
19
+ # Print deprecation notices to the Rails logger
20
+ config.active_support.deprecation = :log
21
+
22
+ # Only use best-standards-support built into browsers
23
+ config.action_dispatch.best_standards_support = :builtin
24
+
25
+ # Do not compress assets
26
+ config.assets.compress = false
27
+
28
+ # Expands the lines which load the assets
29
+ config.assets.debug = true
30
+ end
@@ -0,0 +1,60 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # Code is not reloaded between requests
5
+ config.cache_classes = true
6
+
7
+ # Full error reports are disabled and caching is turned on
8
+ config.consider_all_requests_local = false
9
+ config.action_controller.perform_caching = true
10
+
11
+ # Disable Rails's static asset server (Apache or nginx will already do this)
12
+ config.serve_static_assets = false
13
+
14
+ # Compress JavaScripts and CSS
15
+ config.assets.compress = true
16
+
17
+ # Don't fallback to assets pipeline if a precompiled asset is missed
18
+ config.assets.compile = false
19
+
20
+ # Generate digests for assets URLs
21
+ config.assets.digest = true
22
+
23
+ # Defaults to Rails.root.join("public/assets")
24
+ # config.assets.manifest = YOUR_PATH
25
+
26
+ # Specifies the header that your server uses for sending files
27
+ # config.action_dispatch.x_sendfile_header = "X-Sendfile" # for apache
28
+ # config.action_dispatch.x_sendfile_header = 'X-Accel-Redirect' # for nginx
29
+
30
+ # Force all access to the app over SSL, use Strict-Transport-Security, and use secure cookies.
31
+ # config.force_ssl = true
32
+
33
+ # See everything in the log (default is :info)
34
+ # config.log_level = :debug
35
+
36
+ # Use a different logger for distributed setups
37
+ # config.logger = SyslogLogger.new
38
+
39
+ # Use a different cache store in production
40
+ # config.cache_store = :mem_cache_store
41
+
42
+ # Enable serving of images, stylesheets, and JavaScripts from an asset server
43
+ # config.action_controller.asset_host = "http://assets.example.com"
44
+
45
+ # Precompile additional assets (application.js, application.css, and all non-JS/CSS are already added)
46
+ # config.assets.precompile += %w( search.js )
47
+
48
+ # Disable delivery errors, bad email addresses will be ignored
49
+ # config.action_mailer.raise_delivery_errors = false
50
+
51
+ # Enable threaded mode
52
+ # config.threadsafe!
53
+
54
+ # Enable locale fallbacks for I18n (makes lookups for any locale fall back to
55
+ # the I18n.default_locale when a translation can not be found)
56
+ config.i18n.fallbacks = true
57
+
58
+ # Send deprecation notices to registered listeners
59
+ config.active_support.deprecation = :notify
60
+ end
@@ -0,0 +1,39 @@
1
+ Dummy::Application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Configure static asset server for tests with Cache-Control for performance
11
+ config.serve_static_assets = true
12
+ config.static_cache_control = "public, max-age=3600"
13
+
14
+ # Log error messages when you accidentally call methods on nil
15
+ config.whiny_nils = true
16
+
17
+ # Show full error reports and disable caching
18
+ config.consider_all_requests_local = true
19
+ config.action_controller.perform_caching = false
20
+
21
+ # Raise exceptions instead of rendering exception templates
22
+ config.action_dispatch.show_exceptions = false
23
+
24
+ # Disable request forgery protection in test environment
25
+ config.action_controller.allow_forgery_protection = false
26
+
27
+ # Tell Action Mailer not to deliver emails to the real world.
28
+ # The :test delivery method accumulates sent emails in the
29
+ # ActionMailer::Base.deliveries array.
30
+ config.action_mailer.delivery_method = :test
31
+
32
+ # Use SQL instead of Active Record's schema dumper when creating the test database.
33
+ # This is necessary if your schema can't be completely dumped by the schema dumper,
34
+ # like if you have constraints or database-specific column types
35
+ # config.active_record.schema_format = :sql
36
+
37
+ # Print deprecation notices to the stderr
38
+ config.active_support.deprecation = :stderr
39
+ end
@@ -0,0 +1,2 @@
1
+ Dummy::Application.config.session_store :cookie_store, :key => '_serializer_session'
2
+ Dummy::Application.config.secret_token = '3814b0073a5f8c77876d5baef38b180ac12c9c50f4d5fe9c82e9bb3c4105dc612f13a9b012e33c0329d55718eafb7ab1b4fefbe36117eb8f67c4427f26634c2c'
@@ -0,0 +1 @@
1
+ en: {}
@@ -0,0 +1,7 @@
1
+ Dummy::Application.routes.draw do
2
+
3
+ root :to => "main#index"
4
+
5
+ resources :users
6
+
7
+ end
Binary file
@@ -0,0 +1,11 @@
1
+ class CreateUsers < ActiveRecord::Migration
2
+ def change
3
+ create_table :users do |t|
4
+ t.string :name
5
+ t.string :email
6
+ t.text :settings
7
+
8
+ t.timestamps
9
+ end
10
+ end
11
+ end
@@ -0,0 +1,24 @@
1
+ # encoding: UTF-8
2
+ # This file is auto-generated from the current state of the database. Instead
3
+ # of editing this file, please use the migrations feature of Active Record to
4
+ # incrementally modify your database, and then regenerate this schema definition.
5
+ #
6
+ # Note that this schema.rb definition is the authoritative source for your
7
+ # database schema. If you need to create the application database on another
8
+ # system, you should be using db:schema:load, not running all the migrations
9
+ # from scratch. The latter is a flawed and unsustainable approach (the more migrations
10
+ # you'll amass, the slower it'll run and the greater likelihood for issues).
11
+ #
12
+ # It's strongly recommended to check this file into your version control system.
13
+
14
+ ActiveRecord::Schema.define(:version => 20110927222742) do
15
+
16
+ create_table "users", :force => true do |t|
17
+ t.string "name"
18
+ t.string "email"
19
+ t.text "settings"
20
+ t.datetime "created_at"
21
+ t.datetime "updated_at"
22
+ end
23
+
24
+ end
Binary file
@@ -0,0 +1,24 @@
1
+  (1.0ms) select sqlite_version(*)
2
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
3
+  (0.0ms) PRAGMA index_list("schema_migrations")
4
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
6
+ Migrating to CreateUsers (20110927222742)
7
+  (1.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "settings" text, "created_at" datetime, "updated_at" datetime)
8
+  (1.0ms) INSERT INTO "schema_migrations" ("version") VALUES ('20110927222742')
9
+  (1.0ms) select sqlite_version(*)
10
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
11
+  (1.0ms) PRAGMA index_list("users")
12
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
13
+ Migrating to CreateUsers (20110927222742)
14
+  (1.0ms) select sqlite_version(*)
15
+  (1.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
16
+  (1.0ms) PRAGMA index_list("users")
17
+  (0.0ms) SELECT "schema_migrations"."version" FROM "schema_migrations" 
18
+  (1.0ms) select sqlite_version(*)
19
+  (5.0ms) CREATE TABLE "users" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "name" varchar(255), "email" varchar(255), "settings" text, "created_at" datetime, "updated_at" datetime) 
20
+  (7.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL)
21
+  (1.0ms) PRAGMA index_list("schema_migrations")
22
+  (2.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
23
+  (2.0ms) SELECT version FROM "schema_migrations"
24
+  (2.0ms) INSERT INTO "schema_migrations" (version) VALUES ('20110927222742')
@@ -0,0 +1,825 @@
1
+ Processing by MainController#index as HTML
2
+ Rendered main/index.html.erb within layouts/application (11.5ms)
3
+ Completed 200 OK in 46ms (Views: 45.5ms | ActiveRecord: 0.0ms)
4
+ Fixture Delete (0.3ms) DELETE FROM "users"
5
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "email", "settings", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '---
6
+ :fb_share: true
7
+ :tw_share: true
8
+ ', '2011-10-22 23:41:03', '2011-10-22 23:41:03', 593363170)
9
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "email", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '2011-10-22 23:41:03', '2011-10-22 23:41:03', 815823836)
10
+
11
+
12
+ Started GET "/users/new" for 127.0.0.1 at 2011-10-22 16:41:03 -0700
13
+ Processing by UsersController#new as HTML
14
+ Rendered users/_form.html.erb (9.5ms)
15
+ Completed 200 OK in 23ms (Views: 22.3ms | ActiveRecord: 0.0ms)
16
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
17
+
18
+
19
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 16:41:03 -0700
20
+ Processing by UsersController#create as HTML
21
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
22
+  (0.1ms) SAVEPOINT active_record_1
23
+ SQL (3.2ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00]]
24
+  (0.1ms) RELEASE SAVEPOINT active_record_1
25
+ Redirected to http://www.example.com/users/815823837
26
+ Completed 302 Found in 67ms
27
+
28
+
29
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 16:41:03 -0700
30
+ Processing by UsersController#show as HTML
31
+ Parameters: {"id"=>"815823837"}
32
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
33
+ Completed 200 OK in 5ms (Views: 3.2ms | ActiveRecord: 0.1ms)
34
+  (0.0ms) SAVEPOINT active_record_1
35
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "--- {}\n"], ["updated_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00]]
36
+  (0.0ms) RELEASE SAVEPOINT active_record_1
37
+  (0.0ms) SAVEPOINT active_record_1
38
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: false\n:tw_share: false\n"], ["updated_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00]]
39
+  (0.0ms) RELEASE SAVEPOINT active_record_1
40
+  (0.0ms) SAVEPOINT active_record_1
41
+  (0.4ms) UPDATE "users" SET "updated_at" = '2011-10-22 23:41:03.782224', "settings" = '---
42
+ :fb_share: true
43
+ :tw_share: true
44
+ ' WHERE "users"."id" = 815823837
45
+  (0.0ms) RELEASE SAVEPOINT active_record_1
46
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 815823836]]
47
+  (0.0ms) SAVEPOINT active_record_1
48
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n"], ["updated_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00]]
49
+  (0.1ms) RELEASE SAVEPOINT active_record_1
50
+  (0.0ms) SAVEPOINT active_record_1
51
+  (0.3ms) UPDATE "users" SET "updated_at" = '2011-10-22 23:41:03.787827', "settings" = '---
52
+ :fb_share: false
53
+ :tw_share: false
54
+ ' WHERE "users"."id" = 815823837
55
+  (0.0ms) RELEASE SAVEPOINT active_record_1
56
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
57
+
58
+
59
+ Started GET "/users/593363170/edit" for 127.0.0.1 at 2011-10-22 16:41:03 -0700
60
+ Processing by UsersController#edit as HTML
61
+ Parameters: {"id"=>"593363170"}
62
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
63
+ Rendered users/_form.html.erb (3.0ms)
64
+ Completed 200 OK in 8ms (Views: 6.6ms | ActiveRecord: 0.1ms)
65
+
66
+
67
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 16:41:03 -0700
68
+ Processing by UsersController#create as HTML
69
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
70
+  (0.1ms) SAVEPOINT active_record_1
71
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00]]
72
+  (0.0ms) RELEASE SAVEPOINT active_record_1
73
+ Redirected to http://www.example.com/users/815823837
74
+ Completed 302 Found in 4ms
75
+
76
+
77
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 16:41:03 -0700
78
+ Processing by UsersController#show as HTML
79
+ Parameters: {"id"=>"815823837"}
80
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
81
+ Completed 200 OK in 4ms (Views: 2.1ms | ActiveRecord: 0.1ms)
82
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
83
+  (0.1ms) SELECT COUNT(*) FROM "users"
84
+ Processing by UsersController#create as HTML
85
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-22 23:41:03 UTC", "updated_at"=>"2011-10-22 23:41:03 UTC"}}
86
+ WARNING: Can't mass-assign protected attributes: id
87
+  (0.1ms) SAVEPOINT active_record_1
88
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00], ["email", "kevin@gmail.com"], ["name", "Kevin"], ["settings", "---\nfb_share: true\ntw_share: true\n"], ["updated_at", Sat, 22 Oct 2011 23:41:03 UTC +00:00]]
89
+  (0.0ms) RELEASE SAVEPOINT active_record_1
90
+ Redirected to http://test.host/users/815823837
91
+ Completed 302 Found in 9ms
92
+  (0.1ms) SELECT COUNT(*) FROM "users"
93
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
94
+  (0.1ms) SELECT COUNT(*) FROM "users"
95
+ Processing by UsersController#destroy as HTML
96
+ Parameters: {"id"=>"593363170"}
97
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
98
+  (0.0ms) SAVEPOINT active_record_1
99
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593363170]]
100
+  (0.0ms) RELEASE SAVEPOINT active_record_1
101
+ Redirected to http://test.host/users
102
+ Completed 302 Found in 4ms
103
+  (0.1ms) SELECT COUNT(*) FROM "users" 
104
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
105
+ Processing by UsersController#edit as HTML
106
+ Parameters: {"id"=>"593363170"}
107
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
108
+ Rendered users/_form.html.erb (2.7ms)
109
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.0ms)
110
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
111
+ Processing by UsersController#index as HTML
112
+ User Load (0.1ms) SELECT "users".* FROM "users" 
113
+ Completed 200 OK in 7ms (Views: 6.1ms | ActiveRecord: 0.1ms)
114
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
115
+ Processing by UsersController#new as HTML
116
+ Rendered users/_form.html.erb (3.1ms)
117
+ Completed 200 OK in 5ms (Views: 4.8ms | ActiveRecord: 0.0ms)
118
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
119
+ Processing by UsersController#show as HTML
120
+ Parameters: {"id"=>"593363170"}
121
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
122
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
123
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
124
+ Processing by UsersController#update as HTML
125
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-22 23:41:03 UTC", "updated_at"=>"2011-10-22 23:41:03 UTC"}, "id"=>"593363170"}
126
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
127
+ WARNING: Can't mass-assign protected attributes: id
128
+  (0.1ms) SAVEPOINT active_record_1
129
+  (0.3ms) UPDATE "users" SET "settings" = '---
130
+ fb_share: true
131
+ tw_share: true
132
+ ', "updated_at" = '2011-10-22 23:41:03.884001' WHERE "users"."id" = 593363170
133
+  (0.0ms) RELEASE SAVEPOINT active_record_1
134
+ Redirected to http://test.host/users/593363170
135
+ Completed 302 Found in 6ms
136
+ Processing by MainController#index as HTML
137
+ Rendered main/index.html.erb within layouts/application (10.3ms)
138
+ Completed 200 OK in 47ms (Views: 46.0ms | ActiveRecord: 0.0ms)
139
+ Fixture Delete (0.3ms) DELETE FROM "users"
140
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "email", "settings", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '---
141
+ :fb_share: true
142
+ :tw_share: true
143
+ ', '2011-10-22 23:44:21', '2011-10-22 23:44:21', 593363170)
144
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "email", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '2011-10-22 23:44:21', '2011-10-22 23:44:21', 815823836)
145
+
146
+
147
+ Started GET "/users/new" for 127.0.0.1 at 2011-10-22 16:44:21 -0700
148
+ Processing by UsersController#new as HTML
149
+ Rendered users/_form.html.erb (8.7ms)
150
+ Completed 200 OK in 23ms (Views: 22.5ms | ActiveRecord: 0.0ms)
151
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
152
+
153
+
154
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 16:44:21 -0700
155
+ Processing by UsersController#create as HTML
156
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
157
+  (0.0ms) SAVEPOINT active_record_1
158
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00]]
159
+  (0.0ms) RELEASE SAVEPOINT active_record_1
160
+ Redirected to http://www.example.com/users/815823837
161
+ Completed 302 Found in 61ms
162
+
163
+
164
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 16:44:21 -0700
165
+ Processing by UsersController#show as HTML
166
+ Parameters: {"id"=>"815823837"}
167
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
168
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
169
+  (0.0ms) SAVEPOINT active_record_1
170
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "--- {}\n"], ["updated_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00]]
171
+  (0.0ms) RELEASE SAVEPOINT active_record_1
172
+  (0.0ms) SAVEPOINT active_record_1
173
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: false\n:tw_share: false\n"], ["updated_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00]]
174
+  (0.0ms) RELEASE SAVEPOINT active_record_1
175
+  (0.0ms) SAVEPOINT active_record_1
176
+  (0.3ms) UPDATE "users" SET "updated_at" = '2011-10-22 23:44:21.857090', "settings" = '---
177
+ :fb_share: true
178
+ :tw_share: true
179
+ ' WHERE "users"."id" = 815823837
180
+  (0.0ms) RELEASE SAVEPOINT active_record_1
181
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 815823836]]
182
+  (0.0ms) SAVEPOINT active_record_1
183
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n"], ["updated_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00]]
184
+  (0.0ms) RELEASE SAVEPOINT active_record_1
185
+  (0.0ms) SAVEPOINT active_record_1
186
+  (0.4ms) UPDATE "users" SET "updated_at" = '2011-10-22 23:44:21.861784', "settings" = '---
187
+ :fb_share: false
188
+ :tw_share: false
189
+ ' WHERE "users"."id" = 815823837
190
+  (0.0ms) RELEASE SAVEPOINT active_record_1
191
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
192
+
193
+
194
+ Started GET "/users/593363170/edit" for 127.0.0.1 at 2011-10-22 16:44:21 -0700
195
+ Processing by UsersController#edit as HTML
196
+ Parameters: {"id"=>"593363170"}
197
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
198
+ Rendered users/_form.html.erb (2.7ms)
199
+ Completed 200 OK in 7ms (Views: 5.6ms | ActiveRecord: 0.1ms)
200
+
201
+
202
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 16:44:21 -0700
203
+ Processing by UsersController#create as HTML
204
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
205
+  (0.1ms) SAVEPOINT active_record_1
206
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00]]
207
+  (0.0ms) RELEASE SAVEPOINT active_record_1
208
+ Redirected to http://www.example.com/users/815823837
209
+ Completed 302 Found in 4ms
210
+
211
+
212
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 16:44:21 -0700
213
+ Processing by UsersController#show as HTML
214
+ Parameters: {"id"=>"815823837"}
215
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
216
+ Completed 200 OK in 3ms (Views: 1.5ms | ActiveRecord: 0.1ms)
217
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
218
+  (0.1ms) SELECT COUNT(*) FROM "users"
219
+ Processing by UsersController#create as HTML
220
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-22 23:44:21 UTC", "updated_at"=>"2011-10-22 23:44:21 UTC"}}
221
+ WARNING: Can't mass-assign protected attributes: id
222
+  (0.1ms) SAVEPOINT active_record_1
223
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00], ["email", "kevin@gmail.com"], ["name", "Kevin"], ["settings", "---\nfb_share: true\ntw_share: true\n"], ["updated_at", Sat, 22 Oct 2011 23:44:21 UTC +00:00]]
224
+  (0.0ms) RELEASE SAVEPOINT active_record_1
225
+ Redirected to http://test.host/users/815823837
226
+ Completed 302 Found in 6ms
227
+  (0.1ms) SELECT COUNT(*) FROM "users"
228
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
229
+  (0.1ms) SELECT COUNT(*) FROM "users"
230
+ Processing by UsersController#destroy as HTML
231
+ Parameters: {"id"=>"593363170"}
232
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
233
+  (0.1ms) SAVEPOINT active_record_1
234
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593363170]]
235
+  (0.0ms) RELEASE SAVEPOINT active_record_1
236
+ Redirected to http://test.host/users
237
+ Completed 302 Found in 6ms
238
+  (0.2ms) SELECT COUNT(*) FROM "users" 
239
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
240
+ Processing by UsersController#edit as HTML
241
+ Parameters: {"id"=>"593363170"}
242
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
243
+ Rendered users/_form.html.erb (2.4ms)
244
+ Completed 200 OK in 6ms (Views: 4.7ms | ActiveRecord: 0.1ms)
245
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
246
+ Processing by UsersController#index as HTML
247
+ User Load (0.2ms) SELECT "users".* FROM "users" 
248
+ Completed 200 OK in 9ms (Views: 7.2ms | ActiveRecord: 0.2ms)
249
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
250
+ Processing by UsersController#new as HTML
251
+ Rendered users/_form.html.erb (2.7ms)
252
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.0ms)
253
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
254
+ Processing by UsersController#show as HTML
255
+ Parameters: {"id"=>"593363170"}
256
+ User Load (0.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
257
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
258
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
259
+ Processing by UsersController#update as HTML
260
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-22 23:44:21 UTC", "updated_at"=>"2011-10-22 23:44:21 UTC"}, "id"=>"593363170"}
261
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
262
+ WARNING: Can't mass-assign protected attributes: id
263
+  (0.1ms) SAVEPOINT active_record_1
264
+  (0.3ms) UPDATE "users" SET "settings" = '---
265
+ fb_share: true
266
+ tw_share: true
267
+ ', "updated_at" = '2011-10-22 23:44:21.956913' WHERE "users"."id" = 593363170
268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
269
+ Redirected to http://test.host/users/593363170
270
+ Completed 302 Found in 6ms
271
+ Processing by MainController#index as HTML
272
+ Rendered main/index.html.erb within layouts/application (16.9ms)
273
+ Completed 200 OK in 121ms (Views: 120.8ms | ActiveRecord: 0.0ms)
274
+ Fixture Delete (0.8ms) DELETE FROM "users"
275
+ Fixture Insert (0.4ms) INSERT INTO "users" ("name", "email", "settings", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '---
276
+ :fb_share: true
277
+ :tw_share: true
278
+ ', '2011-10-23 00:02:36', '2011-10-23 00:02:36', 593363170)
279
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "email", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '2011-10-23 00:02:36', '2011-10-23 00:02:36', 815823836)
280
+
281
+
282
+ Started GET "/users/new" for 127.0.0.1 at 2011-10-22 17:02:36 -0700
283
+ Processing by UsersController#new as HTML
284
+ Rendered users/_form.html.erb (18.6ms)
285
+ Completed 200 OK in 57ms (Views: 51.2ms | ActiveRecord: 0.0ms)
286
+ User Load (0.6ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
287
+
288
+
289
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:02:36 -0700
290
+ Processing by UsersController#create as HTML
291
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
292
+  (0.1ms) SAVEPOINT active_record_1
293
+ SQL (7.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00]]
294
+  (0.1ms) RELEASE SAVEPOINT active_record_1
295
+ Redirected to http://www.example.com/users/815823837
296
+ Completed 302 Found in 79ms
297
+
298
+
299
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:02:36 -0700
300
+ Processing by UsersController#show as HTML
301
+ Parameters: {"id"=>"815823837"}
302
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
303
+ Completed 200 OK in 11ms (Views: 5.9ms | ActiveRecord: 0.2ms)
304
+  (0.1ms) SAVEPOINT active_record_1
305
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00]]
306
+  (0.1ms) RELEASE SAVEPOINT active_record_1
307
+  (0.1ms) SAVEPOINT active_record_1
308
+ SQL (12.8ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: false\n:tw_share: false\n"], ["updated_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00]]
309
+  (0.1ms) RELEASE SAVEPOINT active_record_1
310
+  (0.1ms) SAVEPOINT active_record_1
311
+  (9.1ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:02:36.853266', "settings" = '---
312
+ :fb_share: true
313
+ :tw_share: true
314
+ ' WHERE "users"."id" = 815823837
315
+  (0.1ms) RELEASE SAVEPOINT active_record_1
316
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 815823836]]
317
+  (0.1ms) SAVEPOINT active_record_1
318
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00]]
319
+  (0.1ms) RELEASE SAVEPOINT active_record_1
320
+  (0.0ms) SAVEPOINT active_record_1
321
+  (0.6ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:02:36.873446', "settings" = '---
322
+ :fb_share: false
323
+ :tw_share: false
324
+ ' WHERE "users"."id" = 815823837
325
+  (0.0ms) RELEASE SAVEPOINT active_record_1
326
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
327
+
328
+
329
+ Started GET "/users/593363170/edit" for 127.0.0.1 at 2011-10-22 17:02:36 -0700
330
+ Processing by UsersController#edit as HTML
331
+ Parameters: {"id"=>"593363170"}
332
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
333
+ Rendered users/_form.html.erb (6.0ms)
334
+ Completed 200 OK in 16ms (Views: 12.1ms | ActiveRecord: 0.1ms)
335
+
336
+
337
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:02:36 -0700
338
+ Processing by UsersController#create as HTML
339
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
340
+  (0.2ms) SAVEPOINT active_record_1
341
+ SQL (2.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00]]
342
+  (0.1ms) RELEASE SAVEPOINT active_record_1
343
+ Redirected to http://www.example.com/users/815823837
344
+ Completed 302 Found in 19ms
345
+
346
+
347
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:02:36 -0700
348
+ Processing by UsersController#show as HTML
349
+ Parameters: {"id"=>"815823837"}
350
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
351
+ Completed 200 OK in 12ms (Views: 6.0ms | ActiveRecord: 0.2ms)
352
+ User Load (2.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
353
+  (0.1ms) SELECT COUNT(*) FROM "users"
354
+ Processing by UsersController#create as HTML
355
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:02:36 UTC", "updated_at"=>"2011-10-23 00:02:36 UTC"}}
356
+ WARNING: Can't mass-assign protected attributes: id
357
+  (0.1ms) SAVEPOINT active_record_1
358
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00], ["email", "kevin@gmail.com"], ["name", "Kevin"], ["settings", "---\nfb_share: true\ntw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:02:36 UTC +00:00]]
359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
360
+ Redirected to http://test.host/users/815823837
361
+ Completed 302 Found in 22ms
362
+  (0.2ms) SELECT COUNT(*) FROM "users"
363
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
364
+  (0.2ms) SELECT COUNT(*) FROM "users"
365
+ Processing by UsersController#destroy as HTML
366
+ Parameters: {"id"=>"593363170"}
367
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
368
+  (0.1ms) SAVEPOINT active_record_1
369
+ SQL (0.7ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593363170]]
370
+  (0.1ms) RELEASE SAVEPOINT active_record_1
371
+ Redirected to http://test.host/users
372
+ Completed 302 Found in 11ms
373
+  (0.2ms) SELECT COUNT(*) FROM "users" 
374
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
375
+ Processing by UsersController#edit as HTML
376
+ Parameters: {"id"=>"593363170"}
377
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
378
+ Rendered users/_form.html.erb (5.6ms)
379
+ Completed 200 OK in 129ms (Views: 126.6ms | ActiveRecord: 0.1ms)
380
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
381
+ Processing by UsersController#index as HTML
382
+ User Load (0.2ms) SELECT "users".* FROM "users" 
383
+ Completed 200 OK in 14ms (Views: 11.7ms | ActiveRecord: 0.2ms)
384
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
385
+ Processing by UsersController#new as HTML
386
+ Rendered users/_form.html.erb (4.6ms)
387
+ Completed 200 OK in 8ms (Views: 7.7ms | ActiveRecord: 0.0ms)
388
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
389
+ Processing by UsersController#show as HTML
390
+ Parameters: {"id"=>"593363170"}
391
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
392
+ Completed 200 OK in 8ms (Views: 4.8ms | ActiveRecord: 0.1ms)
393
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
394
+ Processing by UsersController#update as HTML
395
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:02:36 UTC", "updated_at"=>"2011-10-23 00:02:36 UTC"}, "id"=>"593363170"}
396
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
397
+ WARNING: Can't mass-assign protected attributes: id
398
+  (0.1ms) SAVEPOINT active_record_1
399
+  (0.5ms) UPDATE "users" SET "settings" = '---
400
+ fb_share: true
401
+ tw_share: true
402
+ ', "updated_at" = '2011-10-23 00:02:37.235434' WHERE "users"."id" = 593363170
403
+  (0.1ms) RELEASE SAVEPOINT active_record_1
404
+ Redirected to http://test.host/users/593363170
405
+ Completed 302 Found in 23ms
406
+ Processing by MainController#index as HTML
407
+ Rendered main/index.html.erb within layouts/application (23.1ms)
408
+ Completed 200 OK in 92ms (Views: 90.5ms | ActiveRecord: 0.0ms)
409
+ Fixture Delete (0.9ms) DELETE FROM "users"
410
+ Fixture Insert (0.4ms) INSERT INTO "users" ("name", "email", "settings", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '---
411
+ :fb_share: true
412
+ :tw_share: true
413
+ ', '2011-10-23 00:10:38', '2011-10-23 00:10:38', 593363170)
414
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "email", "created_at", "updated_at", "id") VALUES ('Kevin', 'kevin@gmail.com', '2011-10-23 00:10:38', '2011-10-23 00:10:38', 815823836)
415
+
416
+
417
+ Started GET "/users/new" for 127.0.0.1 at 2011-10-22 17:10:38 -0700
418
+ Processing by UsersController#new as HTML
419
+ Rendered users/_form.html.erb (22.5ms)
420
+ Completed 200 OK in 58ms (Views: 56.1ms | ActiveRecord: 0.0ms)
421
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
422
+
423
+
424
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:10:38 -0700
425
+ Processing by UsersController#create as HTML
426
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
427
+  (0.1ms) SAVEPOINT active_record_1
428
+ SQL (7.1ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:10:38 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:10:38 UTC +00:00]]
429
+  (0.2ms) RELEASE SAVEPOINT active_record_1
430
+ Redirected to http://www.example.com/users/815823837
431
+ Completed 302 Found in 172ms
432
+
433
+
434
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:10:38 -0700
435
+ Processing by UsersController#show as HTML
436
+ Parameters: {"id"=>"815823837"}
437
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
438
+ Completed 200 OK in 21ms (Views: 16.7ms | ActiveRecord: 0.2ms)
439
+  (0.1ms) SAVEPOINT active_record_1
440
+ SQL (1.0ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:10:38 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:10:38 UTC +00:00]]
441
+  (0.2ms) RELEASE SAVEPOINT active_record_1
442
+  (0.1ms) SAVEPOINT active_record_1
443
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:10:39 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: false\n:tw_share: false\n"], ["updated_at", Sun, 23 Oct 2011 00:10:39 UTC +00:00]]
444
+  (0.1ms) RELEASE SAVEPOINT active_record_1
445
+  (0.1ms) SAVEPOINT active_record_1
446
+  (0.9ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:10:39.029256', "settings" = '---
447
+ :fb_share: true
448
+ :tw_share: true
449
+ ' WHERE "users"."id" = 815823837
450
+  (0.1ms) RELEASE SAVEPOINT active_record_1
451
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 815823836]]
452
+  (0.1ms) SAVEPOINT active_record_1
453
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:10:39 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:10:39 UTC +00:00]]
454
+  (0.1ms) RELEASE SAVEPOINT active_record_1
455
+  (0.1ms) SAVEPOINT active_record_1
456
+  (0.8ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:10:39.064732', "settings" = '---
457
+ :fb_share: false
458
+ :tw_share: false
459
+ ' WHERE "users"."id" = 815823837
460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
461
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
462
+
463
+
464
+ Started GET "/users/593363170/edit" for 127.0.0.1 at 2011-10-22 17:10:39 -0700
465
+ Processing by UsersController#edit as HTML
466
+ Parameters: {"id"=>"593363170"}
467
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
468
+ Rendered users/_form.html.erb (10.8ms)
469
+ Completed 200 OK in 35ms (Views: 30.3ms | ActiveRecord: 0.2ms)
470
+
471
+
472
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:10:39 -0700
473
+ Processing by UsersController#create as HTML
474
+ Parameters: {"name"=>"Kevin", "email"=>"kevin@gmail.com", "fb_share"=>"0", "tw_share"=>"0"}
475
+  (0.2ms) SAVEPOINT active_record_1
476
+ SQL (1.8ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:10:39 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:10:39 UTC +00:00]]
477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
478
+ Redirected to http://www.example.com/users/815823837
479
+ Completed 302 Found in 10ms
480
+
481
+
482
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:10:39 -0700
483
+ Processing by UsersController#show as HTML
484
+ Parameters: {"id"=>"815823837"}
485
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
486
+ Completed 200 OK in 28ms (Views: 22.6ms | ActiveRecord: 0.1ms)
487
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
488
+  (0.2ms) SELECT COUNT(*) FROM "users"
489
+ Processing by UsersController#create as HTML
490
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:10:38 UTC", "updated_at"=>"2011-10-23 00:10:38 UTC"}}
491
+ WARNING: Can't mass-assign protected attributes: id
492
+  (0.1ms) SAVEPOINT active_record_1
493
+ SQL (0.7ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:10:38 UTC +00:00], ["email", "kevin@gmail.com"], ["name", "Kevin"], ["settings", "---\nfb_share: true\ntw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:10:38 UTC +00:00]]
494
+  (0.1ms) RELEASE SAVEPOINT active_record_1
495
+ Redirected to http://test.host/users/815823837
496
+ Completed 302 Found in 13ms
497
+  (0.1ms) SELECT COUNT(*) FROM "users"
498
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
499
+  (0.2ms) SELECT COUNT(*) FROM "users"
500
+ Processing by UsersController#destroy as HTML
501
+ Parameters: {"id"=>"593363170"}
502
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
503
+  (0.1ms) SAVEPOINT active_record_1
504
+ SQL (0.6ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593363170]]
505
+  (0.1ms) RELEASE SAVEPOINT active_record_1
506
+ Redirected to http://test.host/users
507
+ Completed 302 Found in 8ms
508
+  (0.2ms) SELECT COUNT(*) FROM "users" 
509
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
510
+ Processing by UsersController#edit as HTML
511
+ Parameters: {"id"=>"593363170"}
512
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
513
+ Rendered users/_form.html.erb (8.5ms)
514
+ Completed 200 OK in 18ms (Views: 15.0ms | ActiveRecord: 0.1ms)
515
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
516
+ Processing by UsersController#index as HTML
517
+ User Load (0.2ms) SELECT "users".* FROM "users" 
518
+ Completed 200 OK in 16ms (Views: 12.5ms | ActiveRecord: 0.2ms)
519
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
520
+ Processing by UsersController#new as HTML
521
+ Rendered users/_form.html.erb (5.5ms)
522
+ Completed 200 OK in 11ms (Views: 10.8ms | ActiveRecord: 0.0ms)
523
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
524
+ Processing by UsersController#show as HTML
525
+ Parameters: {"id"=>"593363170"}
526
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
527
+ Completed 200 OK in 16ms (Views: 11.4ms | ActiveRecord: 0.1ms)
528
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
529
+ Processing by UsersController#update as HTML
530
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"kevin@gmail.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:10:38 UTC", "updated_at"=>"2011-10-23 00:10:38 UTC"}, "id"=>"593363170"}
531
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
532
+ WARNING: Can't mass-assign protected attributes: id
533
+  (0.1ms) SAVEPOINT active_record_1
534
+  (0.4ms) UPDATE "users" SET "settings" = '---
535
+ fb_share: true
536
+ tw_share: true
537
+ ', "updated_at" = '2011-10-23 00:10:39.538525' WHERE "users"."id" = 593363170
538
+  (0.1ms) RELEASE SAVEPOINT active_record_1
539
+ Redirected to http://test.host/users/593363170
540
+ Completed 302 Found in 12ms
541
+ Processing by MainController#index as HTML
542
+ Rendered main/index.html.erb within layouts/application (11.1ms)
543
+ Completed 200 OK in 52ms (Views: 51.0ms | ActiveRecord: 0.0ms)
544
+ Fixture Delete (0.4ms) DELETE FROM "users"
545
+ Fixture Insert (0.3ms) INSERT INTO "users" ("name", "email", "settings", "created_at", "updated_at", "id") VALUES ('Kevin', 'info@example.com', '---
546
+ :fb_share: true
547
+ :tw_share: true
548
+ ', '2011-10-23 00:18:51', '2011-10-23 00:18:51', 593363170)
549
+ Fixture Insert (0.1ms) INSERT INTO "users" ("name", "email", "created_at", "updated_at", "id") VALUES ('Kevin', 'info@example.com', '2011-10-23 00:18:51', '2011-10-23 00:18:51', 815823836)
550
+
551
+
552
+ Started GET "/users/new" for 127.0.0.1 at 2011-10-22 17:18:51 -0700
553
+ Processing by UsersController#new as HTML
554
+ Rendered users/_form.html.erb (10.9ms)
555
+ Completed 200 OK in 29ms (Views: 27.7ms | ActiveRecord: 0.0ms)
556
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
557
+
558
+
559
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:18:51 -0700
560
+ Processing by UsersController#create as HTML
561
+ Parameters: {"name"=>"Kevin", "email"=>"info@example.com", "fb_share"=>"0", "tw_share"=>"0"}
562
+  (0.1ms) SAVEPOINT active_record_1
563
+ SQL (2.9ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00]]
564
+  (0.1ms) RELEASE SAVEPOINT active_record_1
565
+ Redirected to http://www.example.com/users/815823837
566
+ Completed 302 Found in 86ms
567
+
568
+
569
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:18:51 -0700
570
+ Processing by UsersController#show as HTML
571
+ Parameters: {"id"=>"815823837"}
572
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
573
+ Completed 200 OK in 19ms (Views: 16.5ms | ActiveRecord: 0.1ms)
574
+  (0.0ms) SAVEPOINT active_record_1
575
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00]]
576
+  (0.0ms) RELEASE SAVEPOINT active_record_1
577
+  (0.0ms) SAVEPOINT active_record_1
578
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: false\n:tw_share: false\n"], ["updated_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00]]
579
+  (0.0ms) RELEASE SAVEPOINT active_record_1
580
+  (0.0ms) SAVEPOINT active_record_1
581
+  (0.5ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:18:51.835716', "settings" = '---
582
+ :fb_share: true
583
+ :tw_share: true
584
+ ' WHERE "users"."id" = 815823837
585
+  (0.1ms) RELEASE SAVEPOINT active_record_1
586
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 815823836]]
587
+  (0.0ms) SAVEPOINT active_record_1
588
+ SQL (0.5ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00]]
589
+  (0.0ms) RELEASE SAVEPOINT active_record_1
590
+  (0.0ms) SAVEPOINT active_record_1
591
+  (0.3ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:18:51.842600', "settings" = '---
592
+ :fb_share: false
593
+ :tw_share: false
594
+ ' WHERE "users"."id" = 815823837
595
+  (0.0ms) RELEASE SAVEPOINT active_record_1
596
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
597
+
598
+
599
+ Started GET "/users/593363170/edit" for 127.0.0.1 at 2011-10-22 17:18:51 -0700
600
+ Processing by UsersController#edit as HTML
601
+ Parameters: {"id"=>"593363170"}
602
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
603
+ Rendered users/_form.html.erb (3.9ms)
604
+ Completed 200 OK in 10ms (Views: 7.6ms | ActiveRecord: 0.1ms)
605
+
606
+
607
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:18:51 -0700
608
+ Processing by UsersController#create as HTML
609
+ Parameters: {"name"=>"Kevin", "email"=>"info@example.com", "fb_share"=>"0", "tw_share"=>"0"}
610
+  (0.1ms) SAVEPOINT active_record_1
611
+ SQL (1.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00]]
612
+  (0.1ms) RELEASE SAVEPOINT active_record_1
613
+ Redirected to http://www.example.com/users/815823837
614
+ Completed 302 Found in 6ms
615
+
616
+
617
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:18:51 -0700
618
+ Processing by UsersController#show as HTML
619
+ Parameters: {"id"=>"815823837"}
620
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
621
+ Completed 200 OK in 6ms (Views: 3.5ms | ActiveRecord: 0.1ms)
622
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
623
+  (0.1ms) SELECT COUNT(*) FROM "users"
624
+ Processing by UsersController#create as HTML
625
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"info@example.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:18:51 UTC", "updated_at"=>"2011-10-23 00:18:51 UTC"}}
626
+ WARNING: Can't mass-assign protected attributes: id
627
+  (0.1ms) SAVEPOINT active_record_1
628
+ SQL (0.6ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00], ["email", "info@example.com"], ["name", "Kevin"], ["settings", "---\nfb_share: true\ntw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:18:51 UTC +00:00]]
629
+  (0.1ms) RELEASE SAVEPOINT active_record_1
630
+ Redirected to http://test.host/users/815823837
631
+ Completed 302 Found in 10ms
632
+  (0.1ms) SELECT COUNT(*) FROM "users"
633
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
634
+  (0.1ms) SELECT COUNT(*) FROM "users"
635
+ Processing by UsersController#destroy as HTML
636
+ Parameters: {"id"=>"593363170"}
637
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
638
+  (0.1ms) SAVEPOINT active_record_1
639
+ SQL (0.3ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593363170]]
640
+  (0.0ms) RELEASE SAVEPOINT active_record_1
641
+ Redirected to http://test.host/users
642
+ Completed 302 Found in 4ms
643
+  (0.1ms) SELECT COUNT(*) FROM "users" 
644
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
645
+ Processing by UsersController#edit as HTML
646
+ Parameters: {"id"=>"593363170"}
647
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
648
+ Rendered users/_form.html.erb (5.1ms)
649
+ Completed 200 OK in 11ms (Views: 8.9ms | ActiveRecord: 0.1ms)
650
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
651
+ Processing by UsersController#index as HTML
652
+ User Load (0.2ms) SELECT "users".* FROM "users" 
653
+ Completed 200 OK in 15ms (Views: 9.2ms | ActiveRecord: 0.2ms)
654
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
655
+ Processing by UsersController#new as HTML
656
+ Rendered users/_form.html.erb (3.3ms)
657
+ Completed 200 OK in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
658
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
659
+ Processing by UsersController#show as HTML
660
+ Parameters: {"id"=>"593363170"}
661
+ User Load (1.0ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
662
+ Completed 200 OK in 9ms (Views: 6.3ms | ActiveRecord: 1.0ms)
663
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
664
+ Processing by UsersController#update as HTML
665
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"info@example.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:18:51 UTC", "updated_at"=>"2011-10-23 00:18:51 UTC"}, "id"=>"593363170"}
666
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
667
+ WARNING: Can't mass-assign protected attributes: id
668
+  (0.1ms) SAVEPOINT active_record_1
669
+  (0.3ms) UPDATE "users" SET "settings" = '---
670
+ fb_share: true
671
+ tw_share: true
672
+ ', "updated_at" = '2011-10-23 00:18:51.990129' WHERE "users"."id" = 593363170
673
+  (0.0ms) RELEASE SAVEPOINT active_record_1
674
+ Redirected to http://test.host/users/593363170
675
+ Completed 302 Found in 10ms
676
+ Processing by MainController#index as HTML
677
+ Rendered main/index.html.erb within layouts/application (26.0ms)
678
+ Completed 200 OK in 128ms (Views: 116.0ms | ActiveRecord: 0.0ms)
679
+ Processing by MainController#index as HTML
680
+ Rendered main/index.html.erb within layouts/application (14.0ms)
681
+ Completed 200 OK in 106ms (Views: 96.0ms | ActiveRecord: 0.0ms)
682
+ Processing by MainController#index as HTML
683
+ Rendered main/index.html.erb within layouts/application (18.0ms)
684
+ Completed 200 OK in 103ms (Views: 90.0ms | ActiveRecord: 0.0ms)
685
+ Processing by MainController#index as HTML
686
+ Rendered main/index.html.erb within layouts/application (12.0ms)
687
+ Completed 200 OK in 100ms (Views: 77.0ms | ActiveRecord: 0.0ms)
688
+ Processing by MainController#index as HTML
689
+ Rendered main/index.html.erb within layouts/application (23.4ms)
690
+ Completed 200 OK in 165ms (Views: 164.3ms | ActiveRecord: 0.0ms)
691
+ Fixture Delete (0.5ms) DELETE FROM "users"
692
+ Fixture Insert (0.3ms) INSERT INTO "users" ("name", "email", "settings", "created_at", "updated_at", "id") VALUES ('Kevin', 'info@example.com', '---
693
+ :fb_share: true
694
+ :tw_share: true
695
+ ', '2011-10-23 00:56:34', '2011-10-23 00:56:34', 593363170)
696
+ Fixture Insert (0.2ms) INSERT INTO "users" ("name", "email", "created_at", "updated_at", "id") VALUES ('Kevin', 'info@example.com', '2011-10-23 00:56:34', '2011-10-23 00:56:34', 815823836)
697
+
698
+
699
+ Started GET "/users/new" for 127.0.0.1 at 2011-10-22 17:56:34 -0700
700
+ Processing by UsersController#new as HTML
701
+ Rendered users/_form.html.erb (21.0ms)
702
+ Completed 200 OK in 84ms (Views: 79.8ms | ActiveRecord: 0.0ms)
703
+ User Load (0.5ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
704
+
705
+
706
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:56:34 -0700
707
+ Processing by UsersController#create as HTML
708
+ Parameters: {"name"=>"Kevin", "email"=>"info@example.com", "fb_share"=>"0", "tw_share"=>"0"}
709
+  (0.1ms) SAVEPOINT active_record_1
710
+ SQL (12.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:56:34 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:56:34 UTC +00:00]]
711
+  (0.2ms) RELEASE SAVEPOINT active_record_1
712
+ Redirected to http://www.example.com/users/815823837
713
+ Completed 302 Found in 105ms
714
+
715
+
716
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:56:35 -0700
717
+ Processing by UsersController#show as HTML
718
+ Parameters: {"id"=>"815823837"}
719
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
720
+ Completed 200 OK in 16ms (Views: 12.7ms | ActiveRecord: 0.1ms)
721
+  (0.1ms) SAVEPOINT active_record_1
722
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00]]
723
+  (0.1ms) RELEASE SAVEPOINT active_record_1
724
+  (0.1ms) SAVEPOINT active_record_1
725
+ SQL (4.4ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: false\n:tw_share: false\n"], ["updated_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00]]
726
+  (0.1ms) RELEASE SAVEPOINT active_record_1
727
+  (0.1ms) SAVEPOINT active_record_1
728
+  (0.6ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:56:35.064703', "settings" = '---
729
+ :fb_share: true
730
+ :tw_share: true
731
+ ' WHERE "users"."id" = 815823837
732
+  (0.0ms) RELEASE SAVEPOINT active_record_1
733
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 815823836]]
734
+  (0.1ms) SAVEPOINT active_record_1
735
+ SQL (0.8ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00], ["email", "kevin@ksylvest.com"], ["name", "Kevin"], ["settings", "---\n:fb_share: true\n:tw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00]]
736
+  (0.1ms) RELEASE SAVEPOINT active_record_1
737
+  (0.1ms) SAVEPOINT active_record_1
738
+  (2.4ms) UPDATE "users" SET "updated_at" = '2011-10-23 00:56:35.082141', "settings" = '---
739
+ :fb_share: false
740
+ :tw_share: false
741
+ ' WHERE "users"."id" = 815823837
742
+  (0.1ms) RELEASE SAVEPOINT active_record_1
743
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
744
+
745
+
746
+ Started GET "/users/593363170/edit" for 127.0.0.1 at 2011-10-22 17:56:35 -0700
747
+ Processing by UsersController#edit as HTML
748
+ Parameters: {"id"=>"593363170"}
749
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
750
+ Rendered users/_form.html.erb (8.3ms)
751
+ Completed 200 OK in 24ms (Views: 18.5ms | ActiveRecord: 0.1ms)
752
+
753
+
754
+ Started POST "/users" for 127.0.0.1 at 2011-10-22 17:56:35 -0700
755
+ Processing by UsersController#create as HTML
756
+ Parameters: {"name"=>"Kevin", "email"=>"info@example.com", "fb_share"=>"0", "tw_share"=>"0"}
757
+  (0.1ms) SAVEPOINT active_record_1
758
+ SQL (1.1ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00], ["email", nil], ["name", nil], ["settings", "--- {}\n"], ["updated_at", Sun, 23 Oct 2011 00:56:35 UTC +00:00]]
759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
760
+ Redirected to http://www.example.com/users/815823837
761
+ Completed 302 Found in 8ms
762
+
763
+
764
+ Started GET "/users/815823837" for 127.0.0.1 at 2011-10-22 17:56:35 -0700
765
+ Processing by UsersController#show as HTML
766
+ Parameters: {"id"=>"815823837"}
767
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "815823837"]]
768
+ Completed 200 OK in 6ms (Views: 3.9ms | ActiveRecord: 0.1ms)
769
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
770
+  (1.4ms) SELECT COUNT(*) FROM "users"
771
+ Processing by UsersController#create as HTML
772
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"info@example.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:56:34 UTC", "updated_at"=>"2011-10-23 00:56:34 UTC"}}
773
+ WARNING: Can't mass-assign protected attributes: id
774
+  (0.1ms) SAVEPOINT active_record_1
775
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "email", "name", "settings", "updated_at") VALUES (?, ?, ?, ?, ?) [["created_at", Sun, 23 Oct 2011 00:56:34 UTC +00:00], ["email", "info@example.com"], ["name", "Kevin"], ["settings", "---\nfb_share: true\ntw_share: true\n"], ["updated_at", Sun, 23 Oct 2011 00:56:34 UTC +00:00]]
776
+  (0.1ms) RELEASE SAVEPOINT active_record_1
777
+ Redirected to http://test.host/users/815823837
778
+ Completed 302 Found in 24ms
779
+  (0.2ms) SELECT COUNT(*) FROM "users"
780
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
781
+  (0.2ms) SELECT COUNT(*) FROM "users"
782
+ Processing by UsersController#destroy as HTML
783
+ Parameters: {"id"=>"593363170"}
784
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
785
+  (0.1ms) SAVEPOINT active_record_1
786
+ SQL (1.0ms) DELETE FROM "users" WHERE "users"."id" = ? [["id", 593363170]]
787
+  (0.1ms) RELEASE SAVEPOINT active_record_1
788
+ Redirected to http://test.host/users
789
+ Completed 302 Found in 130ms
790
+  (0.2ms) SELECT COUNT(*) FROM "users" 
791
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
792
+ Processing by UsersController#edit as HTML
793
+ Parameters: {"id"=>"593363170"}
794
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
795
+ Rendered users/_form.html.erb (5.5ms)
796
+ Completed 200 OK in 15ms (Views: 11.5ms | ActiveRecord: 0.1ms)
797
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
798
+ Processing by UsersController#index as HTML
799
+ User Load (0.2ms) SELECT "users".* FROM "users" 
800
+ Completed 200 OK in 23ms (Views: 20.0ms | ActiveRecord: 0.2ms)
801
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
802
+ Processing by UsersController#new as HTML
803
+ Rendered users/_form.html.erb (7.1ms)
804
+ Completed 200 OK in 13ms (Views: 12.1ms | ActiveRecord: 0.0ms)
805
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
806
+ Processing by UsersController#show as HTML
807
+ Parameters: {"id"=>"593363170"}
808
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
809
+ Completed 200 OK in 12ms (Views: 8.3ms | ActiveRecord: 0.1ms)
810
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", 593363170]]
811
+ Processing by UsersController#update as HTML
812
+ Parameters: {"user"=>{"id"=>"593363170", "name"=>"Kevin", "email"=>"info@example.com", "settings"=>{"fb_share"=>true, "tw_share"=>true}, "created_at"=>"2011-10-23 00:56:34 UTC", "updated_at"=>"2011-10-23 00:56:34 UTC"}, "id"=>"593363170"}
813
+ User Load (0.1ms) SELECT "users".* FROM "users" WHERE "users"."id" = ? LIMIT 1 [["id", "593363170"]]
814
+ WARNING: Can't mass-assign protected attributes: id
815
+  (0.1ms) SAVEPOINT active_record_1
816
+  (0.4ms) UPDATE "users" SET "settings" = '---
817
+ fb_share: true
818
+ tw_share: true
819
+ ', "updated_at" = '2011-10-23 00:56:35.463520' WHERE "users"."id" = 593363170
820
+  (0.0ms) RELEASE SAVEPOINT active_record_1
821
+ Redirected to http://test.host/users/593363170
822
+ Completed 302 Found in 10ms
823
+ Processing by MainController#index as HTML
824
+ Rendered main/index.html.erb within layouts/application (17.0ms)
825
+ Completed 200 OK in 114ms (Views: 99.0ms | ActiveRecord: 0.0ms)